2024-09-07T08:05:17.846 INFO:root:teuthology version: 1.2.2.dev2+g3752d38 2024-09-07T08:05:17.863 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-07T08:05:17.953 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/gabrioux-2024-09-07_07:25:09-orch:cephadm-wip-guits-reef-2024-09-06-1902-distro-default-smithi/7893493 branch: wip-guits-reef-2024-09-06-1902 description: orch:cephadm/workunits/{0-distro/centos_9.stream agent/off mon_election/classic task/test_host_drain} email: gabrioux@ibm.com first_in_suite: false job_id: '7893493' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: gabrioux-2024-09-07_07:25:09-orch:cephadm-wip-guits-reef-2024-09-06-1902-distro-default-smithi no_nested_subset: false os_type: centos os_version: 9.stream overrides: admin_socket: branch: wip-guits-reef-2024-09-06-1902 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: 03cef208dc8a39e0b8a1806b4763767a2ff62439 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 03cef208dc8a39e0b8a1806b4763767a2ff62439 selinux: whitelist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: wip-guits-reef-2024-09-06-1902 sha1: f368955f75d280ab61cfdc8a737fe7204b5a0c20 owner: scheduled_gabrioux@teuthology priority: 70 repo: https://git.ceph.com/ceph-ci.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: 7999 sha1: 03cef208dc8a39e0b8a1806b4763767a2ff62439 sleep_before_teardown: 0 subset: 1/8 suite: orch:cephadm suite_branch: wip-guits-reef-2024-09-06-1902 suite_path: /home/teuthworker/src/github.com_ceph_ceph-c_f368955f75d280ab61cfdc8a737fe7204b5a0c20/qa suite_relpath: qa suite_repo: https://github.com/ceph/ceph-ci suite_sha1: f368955f75d280ab61cfdc8a737fe7204b5a0c20 targets: smithi018.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBG9bp5jnTIoD1ShDgGtgSdmE3OkkbwabmX4Qv3//BoExL8FsIZ9H+T7M8GB2E3a7KmctGU3tkI3Xu+VzV9Aqc6I= smithi090.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBOIb/ru/F3Bhp4Z79BKHS7lHTmBcQTJAJeDxIZ4Q1tZeikFcE9Pt10AGkD0WYTdio9J/otUBd83YtOVK8QN4iBc= smithi191.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBPhKWCmzNdUs3JhxykW+PEcGj9K53Hupk7U6tt4DNlfTts1wl4o5TVMDIo7OI68fXx4uwPqgoO6cAeBWuGIFPGA= 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-07_07:25:09 tube: smithi user: gabrioux verbose: true worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.3401856 2024-09-07T08:05:17.953 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/github.com_ceph_ceph-c_f368955f75d280ab61cfdc8a737fe7204b5a0c20/qa; will attempt to use it 2024-09-07T08:05:17.954 INFO:teuthology.run:Found tasks at /home/teuthworker/src/github.com_ceph_ceph-c_f368955f75d280ab61cfdc8a737fe7204b5a0c20/qa/tasks 2024-09-07T08:05:17.954 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-09-07T08:05:17.956 INFO:teuthology.task.internal:Checking packages... 2024-09-07T08:05:17.977 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash '03cef208dc8a39e0b8a1806b4763767a2ff62439' 2024-09-07T08:05:17.977 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-09-07T08:05:17.977 INFO:teuthology.packaging:ref: None 2024-09-07T08:05:17.977 INFO:teuthology.packaging:tag: None 2024-09-07T08:05:17.977 INFO:teuthology.packaging:branch: wip-guits-reef-2024-09-06-1902 2024-09-07T08:05:17.977 INFO:teuthology.packaging:sha1: 03cef208dc8a39e0b8a1806b4763767a2ff62439 2024-09-07T08:05:17.977 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=wip-guits-reef-2024-09-06-1902 2024-09-07T08:05:18.133 INFO:teuthology.task.internal:Found packages for ceph version 18.2.4-812.g03cef208 2024-09-07T08:05:18.135 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-09-07T08:05:18.142 INFO:teuthology.task.internal:no buildpackages task found 2024-09-07T08:05:18.142 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-09-07T08:05:18.182 INFO:teuthology.task.internal:Saving configuration 2024-09-07T08:05:18.195 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-09-07T08:05:18.207 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-09-07T08:05:18.241 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi018.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/gabrioux-2024-09-07_07:25:09-orch:cephadm-wip-guits-reef-2024-09-06-1902-distro-default-smithi/7893493', '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-07 07:59:39.940276', 'locked_by': 'scheduled_gabrioux@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBG9bp5jnTIoD1ShDgGtgSdmE3OkkbwabmX4Qv3//BoExL8FsIZ9H+T7M8GB2E3a7KmctGU3tkI3Xu+VzV9Aqc6I='} 2024-09-07T08:05:18.268 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi090.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/gabrioux-2024-09-07_07:25:09-orch:cephadm-wip-guits-reef-2024-09-06-1902-distro-default-smithi/7893493', '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-07 07:59:39.941938', 'locked_by': 'scheduled_gabrioux@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBOIb/ru/F3Bhp4Z79BKHS7lHTmBcQTJAJeDxIZ4Q1tZeikFcE9Pt10AGkD0WYTdio9J/otUBd83YtOVK8QN4iBc='} 2024-09-07T08:05:18.298 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi191.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/gabrioux-2024-09-07_07:25:09-orch:cephadm-wip-guits-reef-2024-09-06-1902-distro-default-smithi/7893493', '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-07 07:59:39.941187', 'locked_by': 'scheduled_gabrioux@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBPhKWCmzNdUs3JhxykW+PEcGj9K53Hupk7U6tt4DNlfTts1wl4o5TVMDIo7OI68fXx4uwPqgoO6cAeBWuGIFPGA='} 2024-09-07T08:05:18.298 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-09-07T08:05:18.305 INFO:teuthology.task.internal:roles: ubuntu@smithi018.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-09-07T08:05:18.305 INFO:teuthology.task.internal:roles: ubuntu@smithi090.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-09-07T08:05:18.305 INFO:teuthology.task.internal:roles: ubuntu@smithi191.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-09-07T08:05:18.305 INFO:teuthology.run_tasks:Running task console_log... 2024-09-07T08:05:18.423 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7fb6f02a3be0>, signals=[15]) 2024-09-07T08:05:18.423 INFO:teuthology.run_tasks:Running task internal.connect... 2024-09-07T08:05:18.429 INFO:teuthology.task.internal:Opening connections... 2024-09-07T08:05:18.430 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi018.front.sepia.ceph.com 2024-09-07T08:05:18.431 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi018.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-07T08:05:18.518 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi090.front.sepia.ceph.com 2024-09-07T08:05:18.519 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi090.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-07T08:05:18.609 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi191.front.sepia.ceph.com 2024-09-07T08:05:18.610 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi191.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-07T08:05:18.696 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-09-07T08:05:18.702 DEBUG:teuthology.orchestra.run.smithi018:> uname -m 2024-09-07T08:05:18.720 INFO:teuthology.orchestra.run.smithi018.stdout:x86_64 2024-09-07T08:05:18.720 DEBUG:teuthology.orchestra.run.smithi018:> cat /etc/os-release 2024-09-07T08:05:18.777 INFO:teuthology.orchestra.run.smithi018.stdout:NAME="CentOS Stream" 2024-09-07T08:05:18.777 INFO:teuthology.orchestra.run.smithi018.stdout:VERSION="9" 2024-09-07T08:05:18.778 INFO:teuthology.orchestra.run.smithi018.stdout:ID="centos" 2024-09-07T08:05:18.778 INFO:teuthology.orchestra.run.smithi018.stdout:ID_LIKE="rhel fedora" 2024-09-07T08:05:18.778 INFO:teuthology.orchestra.run.smithi018.stdout:VERSION_ID="9" 2024-09-07T08:05:18.778 INFO:teuthology.orchestra.run.smithi018.stdout:PLATFORM_ID="platform:el9" 2024-09-07T08:05:18.778 INFO:teuthology.orchestra.run.smithi018.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-07T08:05:18.778 INFO:teuthology.orchestra.run.smithi018.stdout:ANSI_COLOR="0;31" 2024-09-07T08:05:18.778 INFO:teuthology.orchestra.run.smithi018.stdout:LOGO="fedora-logo-icon" 2024-09-07T08:05:18.778 INFO:teuthology.orchestra.run.smithi018.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-07T08:05:18.778 INFO:teuthology.orchestra.run.smithi018.stdout:HOME_URL="https://centos.org/" 2024-09-07T08:05:18.778 INFO:teuthology.orchestra.run.smithi018.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-07T08:05:18.778 INFO:teuthology.orchestra.run.smithi018.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-07T08:05:18.778 INFO:teuthology.orchestra.run.smithi018.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-07T08:05:18.779 INFO:teuthology.lock.ops:Updating smithi018.front.sepia.ceph.com on lock server 2024-09-07T08:05:18.805 DEBUG:teuthology.orchestra.run.smithi090:> uname -m 2024-09-07T08:05:18.823 INFO:teuthology.orchestra.run.smithi090.stdout:x86_64 2024-09-07T08:05:18.823 DEBUG:teuthology.orchestra.run.smithi090:> cat /etc/os-release 2024-09-07T08:05:18.881 INFO:teuthology.orchestra.run.smithi090.stdout:NAME="CentOS Stream" 2024-09-07T08:05:18.882 INFO:teuthology.orchestra.run.smithi090.stdout:VERSION="9" 2024-09-07T08:05:18.882 INFO:teuthology.orchestra.run.smithi090.stdout:ID="centos" 2024-09-07T08:05:18.882 INFO:teuthology.orchestra.run.smithi090.stdout:ID_LIKE="rhel fedora" 2024-09-07T08:05:18.882 INFO:teuthology.orchestra.run.smithi090.stdout:VERSION_ID="9" 2024-09-07T08:05:18.882 INFO:teuthology.orchestra.run.smithi090.stdout:PLATFORM_ID="platform:el9" 2024-09-07T08:05:18.882 INFO:teuthology.orchestra.run.smithi090.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-07T08:05:18.882 INFO:teuthology.orchestra.run.smithi090.stdout:ANSI_COLOR="0;31" 2024-09-07T08:05:18.882 INFO:teuthology.orchestra.run.smithi090.stdout:LOGO="fedora-logo-icon" 2024-09-07T08:05:18.882 INFO:teuthology.orchestra.run.smithi090.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-07T08:05:18.882 INFO:teuthology.orchestra.run.smithi090.stdout:HOME_URL="https://centos.org/" 2024-09-07T08:05:18.882 INFO:teuthology.orchestra.run.smithi090.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-07T08:05:18.882 INFO:teuthology.orchestra.run.smithi090.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-07T08:05:18.882 INFO:teuthology.orchestra.run.smithi090.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-07T08:05:18.883 INFO:teuthology.lock.ops:Updating smithi090.front.sepia.ceph.com on lock server 2024-09-07T08:05:18.913 DEBUG:teuthology.orchestra.run.smithi191:> uname -m 2024-09-07T08:05:18.931 INFO:teuthology.orchestra.run.smithi191.stdout:x86_64 2024-09-07T08:05:18.932 DEBUG:teuthology.orchestra.run.smithi191:> cat /etc/os-release 2024-09-07T08:05:18.989 INFO:teuthology.orchestra.run.smithi191.stdout:NAME="CentOS Stream" 2024-09-07T08:05:18.990 INFO:teuthology.orchestra.run.smithi191.stdout:VERSION="9" 2024-09-07T08:05:18.990 INFO:teuthology.orchestra.run.smithi191.stdout:ID="centos" 2024-09-07T08:05:18.990 INFO:teuthology.orchestra.run.smithi191.stdout:ID_LIKE="rhel fedora" 2024-09-07T08:05:18.990 INFO:teuthology.orchestra.run.smithi191.stdout:VERSION_ID="9" 2024-09-07T08:05:18.990 INFO:teuthology.orchestra.run.smithi191.stdout:PLATFORM_ID="platform:el9" 2024-09-07T08:05:18.990 INFO:teuthology.orchestra.run.smithi191.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-07T08:05:18.990 INFO:teuthology.orchestra.run.smithi191.stdout:ANSI_COLOR="0;31" 2024-09-07T08:05:18.990 INFO:teuthology.orchestra.run.smithi191.stdout:LOGO="fedora-logo-icon" 2024-09-07T08:05:18.990 INFO:teuthology.orchestra.run.smithi191.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-07T08:05:18.990 INFO:teuthology.orchestra.run.smithi191.stdout:HOME_URL="https://centos.org/" 2024-09-07T08:05:18.990 INFO:teuthology.orchestra.run.smithi191.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-07T08:05:18.990 INFO:teuthology.orchestra.run.smithi191.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-07T08:05:18.991 INFO:teuthology.orchestra.run.smithi191.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-07T08:05:18.991 INFO:teuthology.lock.ops:Updating smithi191.front.sepia.ceph.com on lock server 2024-09-07T08:05:19.021 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-09-07T08:05:19.031 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-09-07T08:05:19.057 INFO:teuthology.task.internal:Checking for old test directory... 2024-09-07T08:05:19.057 DEBUG:teuthology.orchestra.run.smithi018:> test '!' -e /home/ubuntu/cephtest 2024-09-07T08:05:19.060 DEBUG:teuthology.orchestra.run.smithi090:> test '!' -e /home/ubuntu/cephtest 2024-09-07T08:05:19.062 DEBUG:teuthology.orchestra.run.smithi191:> test '!' -e /home/ubuntu/cephtest 2024-09-07T08:05:19.079 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-09-07T08:05:19.088 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-09-07T08:05:19.088 DEBUG:teuthology.orchestra.run.smithi018:> test -z $(ls -A /var/lib/ceph) 2024-09-07T08:05:19.117 DEBUG:teuthology.orchestra.run.smithi090:> test -z $(ls -A /var/lib/ceph) 2024-09-07T08:05:19.120 DEBUG:teuthology.orchestra.run.smithi191:> test -z $(ls -A /var/lib/ceph) 2024-09-07T08:05:19.156 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-09-07T08:05:19.245 INFO:teuthology.run_tasks:Running task kernel... 2024-09-07T08:05:19.260 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-09-07T08:05:19.260 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-07T08:05:19.260 DEBUG:teuthology.orchestra.run.smithi018:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-07T08:05:19.261 DEBUG:teuthology.orchestra.run.smithi090:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-07T08:05:19.261 DEBUG:teuthology.orchestra.run.smithi191:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-07T08:05:19.279 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-07T08:05:19.279 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-07T08:05:19.279 DEBUG:teuthology.orchestra.run.smithi191:> uname -r 2024-09-07T08:05:19.280 DEBUG:teuthology.orchestra.run.smithi018:> uname -r 2024-09-07T08:05:19.280 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-07T08:05:19.281 DEBUG:teuthology.orchestra.run.smithi090:> uname -r 2024-09-07T08:05:19.337 INFO:teuthology.orchestra.run.smithi018.stdout:5.14.0-503.el9.x86_64 2024-09-07T08:05:19.337 INFO:teuthology.task.kernel:Running kernel on smithi018: 5.14.0-503.el9.x86_64 2024-09-07T08:05:19.337 DEBUG:teuthology.orchestra.run.smithi018:> sudo yum install -y kernel 2024-09-07T08:05:19.339 INFO:teuthology.orchestra.run.smithi090.stdout:5.14.0-503.el9.x86_64 2024-09-07T08:05:19.339 INFO:teuthology.orchestra.run.smithi191.stdout:5.14.0-503.el9.x86_64 2024-09-07T08:05:19.339 INFO:teuthology.task.kernel:Running kernel on smithi090: 5.14.0-503.el9.x86_64 2024-09-07T08:05:19.339 DEBUG:teuthology.orchestra.run.smithi090:> sudo yum install -y kernel 2024-09-07T08:05:19.340 INFO:teuthology.task.kernel:Running kernel on smithi191: 5.14.0-503.el9.x86_64 2024-09-07T08:05:19.340 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum install -y kernel 2024-09-07T08:05:22.152 INFO:teuthology.orchestra.run.smithi090.stdout:CentOS Stream 9 - BaseOS 13 MB/s | 8.2 MB 00:00 2024-09-07T08:05:22.812 INFO:teuthology.orchestra.run.smithi191.stdout:CentOS Stream 9 - BaseOS 5.2 MB/s | 8.2 MB 00:01 2024-09-07T08:05:23.052 INFO:teuthology.orchestra.run.smithi018.stdout:CentOS Stream 9 - BaseOS 4.1 MB/s | 8.2 MB 00:01 2024-09-07T08:05:24.062 INFO:teuthology.orchestra.run.smithi090.stdout:CentOS Stream 9 - AppStream 26 MB/s | 20 MB 00:00 2024-09-07T08:05:24.764 INFO:teuthology.orchestra.run.smithi191.stdout:CentOS Stream 9 - AppStream 24 MB/s | 20 MB 00:00 2024-09-07T08:05:24.904 INFO:teuthology.orchestra.run.smithi018.stdout:CentOS Stream 9 - AppStream 29 MB/s | 20 MB 00:00 2024-09-07T08:05:29.148 INFO:teuthology.orchestra.run.smithi191.stdout:CentOS Stream 9 - CRB 11 MB/s | 6.5 MB 00:00 2024-09-07T08:05:29.346 INFO:teuthology.orchestra.run.smithi090.stdout:CentOS Stream 9 - CRB 4.3 MB/s | 6.5 MB 00:01 2024-09-07T08:05:29.479 INFO:teuthology.orchestra.run.smithi018.stdout:CentOS Stream 9 - CRB 9.7 MB/s | 6.5 MB 00:00 2024-09-07T08:05:30.799 INFO:teuthology.orchestra.run.smithi191.stdout:CentOS Stream 9 - Extras packages 42 kB/s | 19 kB 00:00 2024-09-07T08:05:30.972 INFO:teuthology.orchestra.run.smithi090.stdout:CentOS Stream 9 - Extras packages 46 kB/s | 19 kB 00:00 2024-09-07T08:05:31.713 INFO:teuthology.orchestra.run.smithi018.stdout:CentOS Stream 9 - Extras packages 19 kB/s | 19 kB 00:00 2024-09-07T08:05:31.896 INFO:teuthology.orchestra.run.smithi191.stdout:Extra Packages for Enterprise Linux 23 MB/s | 23 MB 00:00 2024-09-07T08:05:32.168 INFO:teuthology.orchestra.run.smithi090.stdout:Extra Packages for Enterprise Linux 21 MB/s | 23 MB 00:01 2024-09-07T08:05:32.592 INFO:teuthology.orchestra.run.smithi018.stdout:Extra Packages for Enterprise Linux 30 MB/s | 23 MB 00:00 2024-09-07T08:05:37.252 INFO:teuthology.orchestra.run.smithi191.stdout:lab-extras 36 kB/s | 1.7 kB 00:00 2024-09-07T08:05:37.652 INFO:teuthology.orchestra.run.smithi090.stdout:lab-extras 30 kB/s | 1.7 kB 00:00 2024-09-07T08:05:38.489 INFO:teuthology.orchestra.run.smithi018.stdout:lab-extras 35 kB/s | 1.7 kB 00:00 2024-09-07T08:05:39.258 INFO:teuthology.orchestra.run.smithi191.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-07T08:05:39.258 INFO:teuthology.orchestra.run.smithi191.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-07T08:05:39.345 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-07T08:05:39.346 INFO:teuthology.orchestra.run.smithi191.stdout:Nothing to do. 2024-09-07T08:05:39.346 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-07T08:05:39.459 DEBUG:teuthology.orchestra.run.smithi191:> echo no | sudo yum reinstall kernel || true 2024-09-07T08:05:39.666 INFO:teuthology.orchestra.run.smithi090.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-07T08:05:39.666 INFO:teuthology.orchestra.run.smithi090.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-07T08:05:39.762 INFO:teuthology.orchestra.run.smithi090.stdout:Dependencies resolved. 2024-09-07T08:05:39.762 INFO:teuthology.orchestra.run.smithi090.stdout:Nothing to do. 2024-09-07T08:05:39.763 INFO:teuthology.orchestra.run.smithi090.stdout:Complete! 2024-09-07T08:05:39.888 DEBUG:teuthology.orchestra.run.smithi090:> echo no | sudo yum reinstall kernel || true 2024-09-07T08:05:39.998 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:00:02 ago on Sat 07 Sep 2024 08:05:37 AM UTC. 2024-09-07T08:05:40.143 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-07T08:05:40.156 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:05:40.156 INFO:teuthology.orchestra.run.smithi191.stdout: Package Architecture Version Repository Size 2024-09-07T08:05:40.157 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:05:40.157 INFO:teuthology.orchestra.run.smithi191.stdout:Reinstalling: 2024-09-07T08:05:40.157 INFO:teuthology.orchestra.run.smithi191.stdout: kernel x86_64 5.14.0-503.el9 baseos 1.9 M 2024-09-07T08:05:40.157 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:05:40.157 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-07T08:05:40.157 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:05:40.158 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:05:40.158 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 1.9 M 2024-09-07T08:05:40.158 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 0 2024-09-07T08:05:40.158 INFO:teuthology.orchestra.run.smithi191.stderr:Operation aborted. 2024-09-07T08:05:40.215 INFO:teuthology.orchestra.run.smithi191.stdout:Is this ok [y/N]: 2024-09-07T08:05:40.216 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum reinstall -y kernel || true 2024-09-07T08:05:40.472 INFO:teuthology.orchestra.run.smithi090.stdout:Last metadata expiration check: 0:00:03 ago on Sat 07 Sep 2024 08:05:37 AM UTC. 2024-09-07T08:05:40.571 INFO:teuthology.orchestra.run.smithi018.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-07T08:05:40.571 INFO:teuthology.orchestra.run.smithi018.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-07T08:05:40.623 INFO:teuthology.orchestra.run.smithi090.stdout:Dependencies resolved. 2024-09-07T08:05:40.637 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:05:40.637 INFO:teuthology.orchestra.run.smithi090.stdout: Package Architecture Version Repository Size 2024-09-07T08:05:40.637 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:05:40.637 INFO:teuthology.orchestra.run.smithi090.stdout:Reinstalling: 2024-09-07T08:05:40.637 INFO:teuthology.orchestra.run.smithi090.stdout: kernel x86_64 5.14.0-503.el9 baseos 1.9 M 2024-09-07T08:05:40.637 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:05:40.637 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction Summary 2024-09-07T08:05:40.637 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:05:40.637 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:05:40.638 INFO:teuthology.orchestra.run.smithi090.stdout:Total download size: 1.9 M 2024-09-07T08:05:40.638 INFO:teuthology.orchestra.run.smithi090.stdout:Installed size: 0 2024-09-07T08:05:40.638 INFO:teuthology.orchestra.run.smithi090.stderr:Operation aborted. 2024-09-07T08:05:40.645 INFO:teuthology.orchestra.run.smithi018.stdout:Dependencies resolved. 2024-09-07T08:05:40.646 INFO:teuthology.orchestra.run.smithi018.stdout:Nothing to do. 2024-09-07T08:05:40.646 INFO:teuthology.orchestra.run.smithi018.stdout:Complete! 2024-09-07T08:05:40.713 INFO:teuthology.orchestra.run.smithi090.stdout:Is this ok [y/N]: 2024-09-07T08:05:40.714 DEBUG:teuthology.orchestra.run.smithi090:> sudo yum reinstall -y kernel || true 2024-09-07T08:05:40.751 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:00:03 ago on Sat 07 Sep 2024 08:05:37 AM UTC. 2024-09-07T08:05:40.757 DEBUG:teuthology.orchestra.run.smithi018:> echo no | sudo yum reinstall kernel || true 2024-09-07T08:05:40.877 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-07T08:05:40.878 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:05:40.878 INFO:teuthology.orchestra.run.smithi191.stdout: Package Architecture Version Repository Size 2024-09-07T08:05:40.878 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:05:40.878 INFO:teuthology.orchestra.run.smithi191.stdout:Reinstalling: 2024-09-07T08:05:40.878 INFO:teuthology.orchestra.run.smithi191.stdout: kernel x86_64 5.14.0-503.el9 baseos 1.9 M 2024-09-07T08:05:40.878 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:05:40.878 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-07T08:05:40.878 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:05:40.879 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:05:40.879 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 1.9 M 2024-09-07T08:05:40.879 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 0 2024-09-07T08:05:40.879 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-07T08:05:41.247 INFO:teuthology.orchestra.run.smithi090.stdout:Last metadata expiration check: 0:00:04 ago on Sat 07 Sep 2024 08:05:37 AM UTC. 2024-09-07T08:05:41.308 INFO:teuthology.orchestra.run.smithi018.stdout:Last metadata expiration check: 0:00:03 ago on Sat 07 Sep 2024 08:05:38 AM UTC. 2024-09-07T08:05:41.373 INFO:teuthology.orchestra.run.smithi090.stdout:Dependencies resolved. 2024-09-07T08:05:41.374 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:05:41.374 INFO:teuthology.orchestra.run.smithi090.stdout: Package Architecture Version Repository Size 2024-09-07T08:05:41.374 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:05:41.374 INFO:teuthology.orchestra.run.smithi090.stdout:Reinstalling: 2024-09-07T08:05:41.374 INFO:teuthology.orchestra.run.smithi090.stdout: kernel x86_64 5.14.0-503.el9 baseos 1.9 M 2024-09-07T08:05:41.374 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:05:41.374 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction Summary 2024-09-07T08:05:41.374 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:05:41.374 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:05:41.374 INFO:teuthology.orchestra.run.smithi090.stdout:Total download size: 1.9 M 2024-09-07T08:05:41.374 INFO:teuthology.orchestra.run.smithi090.stdout:Installed size: 0 2024-09-07T08:05:41.375 INFO:teuthology.orchestra.run.smithi090.stdout:Downloading Packages: 2024-09-07T08:05:41.455 INFO:teuthology.orchestra.run.smithi018.stdout:Dependencies resolved. 2024-09-07T08:05:41.460 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:05:41.460 INFO:teuthology.orchestra.run.smithi018.stdout: Package Architecture Version Repository Size 2024-09-07T08:05:41.460 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:05:41.460 INFO:teuthology.orchestra.run.smithi018.stdout:Reinstalling: 2024-09-07T08:05:41.461 INFO:teuthology.orchestra.run.smithi018.stdout: kernel x86_64 5.14.0-503.el9 baseos 1.9 M 2024-09-07T08:05:41.461 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:05:41.461 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction Summary 2024-09-07T08:05:41.461 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:05:41.461 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:05:41.461 INFO:teuthology.orchestra.run.smithi018.stdout:Total download size: 1.9 M 2024-09-07T08:05:41.461 INFO:teuthology.orchestra.run.smithi018.stdout:Installed size: 0 2024-09-07T08:05:41.461 INFO:teuthology.orchestra.run.smithi018.stderr:Operation aborted. 2024-09-07T08:05:41.513 INFO:teuthology.orchestra.run.smithi018.stdout:Is this ok [y/N]: 2024-09-07T08:05:41.513 DEBUG:teuthology.orchestra.run.smithi018:> sudo yum reinstall -y kernel || true 2024-09-07T08:05:41.563 INFO:teuthology.orchestra.run.smithi191.stdout:kernel-5.14.0-503.el9.x86_64.rpm 4.4 MB/s | 1.9 MB 00:00 2024-09-07T08:05:41.563 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:05:41.563 INFO:teuthology.orchestra.run.smithi191.stdout:Total 2.7 MB/s | 1.9 MB 00:00 2024-09-07T08:05:41.601 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-07T08:05:41.842 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-07T08:05:41.842 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-07T08:05:41.872 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-07T08:05:41.873 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-07T08:05:42.038 INFO:teuthology.orchestra.run.smithi090.stdout:kernel-5.14.0-503.el9.x86_64.rpm 3.7 MB/s | 1.9 MB 00:00 2024-09-07T08:05:42.038 INFO:teuthology.orchestra.run.smithi090.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:05:42.038 INFO:teuthology.orchestra.run.smithi090.stdout:Total 2.8 MB/s | 1.9 MB 00:00 2024-09-07T08:05:42.063 INFO:teuthology.orchestra.run.smithi018.stdout:Last metadata expiration check: 0:00:04 ago on Sat 07 Sep 2024 08:05:38 AM UTC. 2024-09-07T08:05:42.067 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-07T08:05:42.073 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction check 2024-09-07T08:05:42.157 INFO:teuthology.orchestra.run.smithi191.stdout: Reinstalling : kernel-5.14.0-503.el9.x86_64 1/2 2024-09-07T08:05:42.157 INFO:teuthology.orchestra.run.smithi191.stdout: Cleanup : kernel-5.14.0-503.el9.x86_64 2/2 2024-09-07T08:05:42.195 INFO:teuthology.orchestra.run.smithi018.stdout:Dependencies resolved. 2024-09-07T08:05:42.196 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:05:42.196 INFO:teuthology.orchestra.run.smithi018.stdout: Package Architecture Version Repository Size 2024-09-07T08:05:42.196 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:05:42.196 INFO:teuthology.orchestra.run.smithi018.stdout:Reinstalling: 2024-09-07T08:05:42.197 INFO:teuthology.orchestra.run.smithi018.stdout: kernel x86_64 5.14.0-503.el9 baseos 1.9 M 2024-09-07T08:05:42.197 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:05:42.197 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction Summary 2024-09-07T08:05:42.197 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:05:42.197 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:05:42.197 INFO:teuthology.orchestra.run.smithi018.stdout:Total download size: 1.9 M 2024-09-07T08:05:42.197 INFO:teuthology.orchestra.run.smithi018.stdout:Installed size: 0 2024-09-07T08:05:42.197 INFO:teuthology.orchestra.run.smithi018.stdout:Downloading Packages: 2024-09-07T08:05:42.329 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction check succeeded. 2024-09-07T08:05:42.329 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction test 2024-09-07T08:05:42.359 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction test succeeded. 2024-09-07T08:05:42.360 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction 2024-09-07T08:05:42.536 INFO:teuthology.orchestra.run.smithi090.stdout: Preparing : 1/1 2024-09-07T08:05:42.732 INFO:teuthology.orchestra.run.smithi090.stdout: Reinstalling : kernel-5.14.0-503.el9.x86_64 1/2 2024-09-07T08:05:42.732 INFO:teuthology.orchestra.run.smithi090.stdout: Cleanup : kernel-5.14.0-503.el9.x86_64 2/2 2024-09-07T08:05:42.858 INFO:teuthology.orchestra.run.smithi018.stdout:kernel-5.14.0-503.el9.x86_64.rpm 3.1 MB/s | 1.9 MB 00:00 2024-09-07T08:05:42.858 INFO:teuthology.orchestra.run.smithi018.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:05:42.858 INFO:teuthology.orchestra.run.smithi018.stdout:Total 2.8 MB/s | 1.9 MB 00:00 2024-09-07T08:05:42.888 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction check 2024-09-07T08:05:42.978 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: kernel-5.14.0-503.el9.x86_64 2/2 2024-09-07T08:05:42.978 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : kernel-5.14.0-503.el9.x86_64 1/2 2024-09-07T08:05:43.132 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction check succeeded. 2024-09-07T08:05:43.132 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction test 2024-09-07T08:05:43.164 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction test succeeded. 2024-09-07T08:05:43.164 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction 2024-09-07T08:05:43.335 INFO:teuthology.orchestra.run.smithi018.stdout: Preparing : 1/1 2024-09-07T08:05:43.443 INFO:teuthology.orchestra.run.smithi018.stdout: Reinstalling : kernel-5.14.0-503.el9.x86_64 1/2 2024-09-07T08:05:43.443 INFO:teuthology.orchestra.run.smithi018.stdout: Cleanup : kernel-5.14.0-503.el9.x86_64 2/2 2024-09-07T08:05:43.563 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: kernel-5.14.0-503.el9.x86_64 2/2 2024-09-07T08:05:43.563 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : kernel-5.14.0-503.el9.x86_64 1/2 2024-09-07T08:05:43.704 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : kernel-5.14.0-503.el9.x86_64 2/2 2024-09-07T08:05:43.704 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:05:43.704 INFO:teuthology.orchestra.run.smithi191.stdout:Reinstalled: 2024-09-07T08:05:43.704 INFO:teuthology.orchestra.run.smithi191.stdout: kernel-5.14.0-503.el9.x86_64 2024-09-07T08:05:43.704 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:05:43.704 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-07T08:05:43.894 DEBUG:teuthology.orchestra.run.smithi191:> rpm -q kernel | sort -rV | head -n 1 2024-09-07T08:05:43.952 INFO:teuthology.orchestra.run.smithi191.stdout:kernel-5.14.0-503.el9.x86_64 2024-09-07T08:05:43.953 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-503.el9.x86_64 2024-09-07T08:05:43.953 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2024-09-07T08:05:43.953 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-09-07T08:05:43.953 DEBUG:teuthology.orchestra.run.smithi191:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-07T08:05:43.982 INFO:teuthology.orchestra.run.smithi191.stdout:ttyS1 2024-09-07T08:05:44.005 DEBUG:teuthology.parallel:result is None 2024-09-07T08:05:44.146 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: kernel-5.14.0-503.el9.x86_64 2/2 2024-09-07T08:05:44.146 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : kernel-5.14.0-503.el9.x86_64 1/2 2024-09-07T08:05:44.292 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : kernel-5.14.0-503.el9.x86_64 2/2 2024-09-07T08:05:44.293 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:05:44.293 INFO:teuthology.orchestra.run.smithi090.stdout:Reinstalled: 2024-09-07T08:05:44.293 INFO:teuthology.orchestra.run.smithi090.stdout: kernel-5.14.0-503.el9.x86_64 2024-09-07T08:05:44.293 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:05:44.293 INFO:teuthology.orchestra.run.smithi090.stdout:Complete! 2024-09-07T08:05:44.534 DEBUG:teuthology.orchestra.run.smithi090:> rpm -q kernel | sort -rV | head -n 1 2024-09-07T08:05:44.593 INFO:teuthology.orchestra.run.smithi090.stdout:kernel-5.14.0-503.el9.x86_64 2024-09-07T08:05:44.593 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-503.el9.x86_64 2024-09-07T08:05:44.594 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2024-09-07T08:05:44.594 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-09-07T08:05:44.594 DEBUG:teuthology.orchestra.run.smithi090:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-07T08:05:44.621 INFO:teuthology.orchestra.run.smithi090.stdout:ttyS1 2024-09-07T08:05:44.643 DEBUG:teuthology.parallel:result is None 2024-09-07T08:05:44.853 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : kernel-5.14.0-503.el9.x86_64 2/2 2024-09-07T08:05:44.854 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:05:44.854 INFO:teuthology.orchestra.run.smithi018.stdout:Reinstalled: 2024-09-07T08:05:44.854 INFO:teuthology.orchestra.run.smithi018.stdout: kernel-5.14.0-503.el9.x86_64 2024-09-07T08:05:44.854 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:05:44.854 INFO:teuthology.orchestra.run.smithi018.stdout:Complete! 2024-09-07T08:05:45.046 DEBUG:teuthology.orchestra.run.smithi018:> rpm -q kernel | sort -rV | head -n 1 2024-09-07T08:05:45.104 INFO:teuthology.orchestra.run.smithi018.stdout:kernel-5.14.0-503.el9.x86_64 2024-09-07T08:05:45.104 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-503.el9.x86_64 2024-09-07T08:05:45.104 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2024-09-07T08:05:45.105 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-09-07T08:05:45.105 DEBUG:teuthology.orchestra.run.smithi018:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-07T08:05:45.138 INFO:teuthology.orchestra.run.smithi018.stdout:ttyS1 2024-09-07T08:05:45.162 DEBUG:teuthology.parallel:result is None 2024-09-07T08:05:45.163 INFO:teuthology.run_tasks:Running task internal.base... 2024-09-07T08:05:45.170 INFO:teuthology.task.internal:Creating test directory... 2024-09-07T08:05:45.170 DEBUG:teuthology.orchestra.run.smithi018:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-07T08:05:45.205 DEBUG:teuthology.orchestra.run.smithi090:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-07T08:05:45.207 DEBUG:teuthology.orchestra.run.smithi191:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-07T08:05:45.225 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-09-07T08:05:45.232 INFO:teuthology.run_tasks:Running task internal.archive... 2024-09-07T08:05:45.262 INFO:teuthology.task.internal:Creating archive directory... 2024-09-07T08:05:45.262 DEBUG:teuthology.orchestra.run.smithi018:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-07T08:05:45.264 DEBUG:teuthology.orchestra.run.smithi090:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-07T08:05:45.267 DEBUG:teuthology.orchestra.run.smithi191:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-07T08:05:45.299 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-09-07T08:05:45.311 INFO:teuthology.task.internal:Enabling coredump saving... 2024-09-07T08:05:45.312 DEBUG:teuthology.orchestra.run.smithi018:> 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-07T08:05:45.324 DEBUG:teuthology.orchestra.run.smithi090:> 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-07T08:05:45.336 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-07T08:05:45.351 INFO:teuthology.orchestra.run.smithi018.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-07T08:05:45.361 INFO:teuthology.orchestra.run.smithi018.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-07T08:05:45.361 INFO:teuthology.orchestra.run.smithi090.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-07T08:05:45.370 INFO:teuthology.orchestra.run.smithi191.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-07T08:05:45.372 INFO:teuthology.orchestra.run.smithi090.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-07T08:05:45.381 INFO:teuthology.orchestra.run.smithi191.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-07T08:05:45.383 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-09-07T08:05:45.390 INFO:teuthology.task.internal:Configuring sudo... 2024-09-07T08:05:45.390 DEBUG:teuthology.orchestra.run.smithi018:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-07T08:05:45.406 DEBUG:teuthology.orchestra.run.smithi090:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-07T08:05:45.416 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-07T08:05:45.450 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-09-07T08:05:45.459 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-09-07T08:05:45.459 DEBUG:teuthology.orchestra.run.smithi018:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-07T08:05:45.471 DEBUG:teuthology.orchestra.run.smithi090:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-07T08:05:45.481 DEBUG:teuthology.orchestra.run.smithi191:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-07T08:05:45.507 DEBUG:teuthology.orchestra.run.smithi018:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-07T08:05:45.568 DEBUG:teuthology.orchestra.run.smithi018:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-07T08:05:45.623 DEBUG:teuthology.orchestra.run.smithi018:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-07T08:05:45.711 DEBUG:teuthology.orchestra.run.smithi018:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-07T08:05:45.744 DEBUG:teuthology.orchestra.run.smithi018:> set -ex 2024-09-07T08:05:45.744 DEBUG:teuthology.orchestra.run.smithi018:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-07T08:05:45.808 DEBUG:teuthology.orchestra.run.smithi090:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-07T08:05:45.855 DEBUG:teuthology.orchestra.run.smithi090:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-07T08:05:45.899 DEBUG:teuthology.orchestra.run.smithi090:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-07T08:05:45.989 DEBUG:teuthology.orchestra.run.smithi090:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-07T08:05:46.021 DEBUG:teuthology.orchestra.run.smithi090:> set -ex 2024-09-07T08:05:46.022 DEBUG:teuthology.orchestra.run.smithi090:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-07T08:05:46.086 DEBUG:teuthology.orchestra.run.smithi191:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-07T08:05:46.138 DEBUG:teuthology.orchestra.run.smithi191:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-07T08:05:46.184 DEBUG:teuthology.orchestra.run.smithi191:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-07T08:05:46.275 DEBUG:teuthology.orchestra.run.smithi191:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-07T08:05:46.311 DEBUG:teuthology.orchestra.run.smithi191:> set -ex 2024-09-07T08:05:46.311 DEBUG:teuthology.orchestra.run.smithi191:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-07T08:05:46.378 DEBUG:teuthology.orchestra.run.smithi018:> sudo service rsyslog restart 2024-09-07T08:05:46.381 DEBUG:teuthology.orchestra.run.smithi090:> sudo service rsyslog restart 2024-09-07T08:05:46.384 DEBUG:teuthology.orchestra.run.smithi191:> sudo service rsyslog restart 2024-09-07T08:05:46.415 INFO:teuthology.orchestra.run.smithi018.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-07T08:05:46.417 INFO:teuthology.orchestra.run.smithi090.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-07T08:05:46.461 INFO:teuthology.orchestra.run.smithi191.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-07T08:05:46.928 INFO:teuthology.run_tasks:Running task internal.timer... 2024-09-07T08:05:46.936 INFO:teuthology.task.internal:Starting timer... 2024-09-07T08:05:46.936 INFO:teuthology.run_tasks:Running task pcp... 2024-09-07T08:05:46.983 INFO:teuthology.run_tasks:Running task selinux... 2024-09-07T08:05:47.032 DEBUG:teuthology.task:Applying overrides for task selinux: {'whitelist': ['scontext=system_u:system_r:logrotate_t:s0']} 2024-09-07T08:05:47.032 DEBUG:teuthology.orchestra.run.smithi018:> sudo service auditd rotate 2024-09-07T08:05:47.077 INFO:teuthology.orchestra.run.smithi018.stdout:Rotating logs: 2024-09-07T08:05:47.079 DEBUG:teuthology.orchestra.run.smithi090:> sudo service auditd rotate 2024-09-07T08:05:47.130 INFO:teuthology.orchestra.run.smithi090.stdout:Rotating logs: 2024-09-07T08:05:47.132 DEBUG:teuthology.orchestra.run.smithi191:> sudo service auditd rotate 2024-09-07T08:05:47.187 INFO:teuthology.orchestra.run.smithi191.stdout:Rotating logs: 2024-09-07T08:05:47.189 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-09-07T08:05:47.189 DEBUG:teuthology.orchestra.run.smithi018:> /usr/sbin/getenforce 2024-09-07T08:05:47.207 INFO:teuthology.orchestra.run.smithi018.stdout:Permissive 2024-09-07T08:05:47.207 DEBUG:teuthology.orchestra.run.smithi090:> /usr/sbin/getenforce 2024-09-07T08:05:47.232 INFO:teuthology.orchestra.run.smithi090.stdout:Permissive 2024-09-07T08:05:47.233 DEBUG:teuthology.orchestra.run.smithi191:> /usr/sbin/getenforce 2024-09-07T08:05:47.255 INFO:teuthology.orchestra.run.smithi191.stdout:Permissive 2024-09-07T08:05:47.255 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi018.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi090.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi191.front.sepia.ceph.com': 'permissive'} 2024-09-07T08:05:47.255 DEBUG:teuthology.orchestra.run.smithi018:> 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 2024-09-07T08:05:47.280 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-07T08:05:47.281 DEBUG:teuthology.orchestra.run.smithi090:> 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 2024-09-07T08:05:47.305 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-07T08:05:47.306 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 2024-09-07T08:05:47.331 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-07T08:05:47.332 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-09-07T08:05:47.332 DEBUG:teuthology.orchestra.run.smithi018:> sudo /usr/sbin/setenforce permissive 2024-09-07T08:05:47.372 DEBUG:teuthology.orchestra.run.smithi090:> sudo /usr/sbin/setenforce permissive 2024-09-07T08:05:47.404 DEBUG:teuthology.orchestra.run.smithi191:> sudo /usr/sbin/setenforce permissive 2024-09-07T08:05:47.433 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-09-07T08:05:47.443 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2024-09-07T08:05:47.446 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2024-09-07T08:05:47.587 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-09-07T08:05:47.598 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-07T08:05:47.599 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi018.front.sepia.ceph.com,smithi090.front.sepia.ceph.com,smithi191.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-09-07T08:09:29.410 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi018.front.sepia.ceph.com'), Remote(name='ubuntu@smithi090.front.sepia.ceph.com'), Remote(name='ubuntu@smithi191.front.sepia.ceph.com')] 2024-09-07T08:09:29.411 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi018.front.sepia.ceph.com' 2024-09-07T08:09:29.412 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi018.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-07T08:09:29.500 DEBUG:teuthology.orchestra.run.smithi018:> true 2024-09-07T08:09:29.588 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi018.front.sepia.ceph.com' 2024-09-07T08:09:29.588 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi090.front.sepia.ceph.com' 2024-09-07T08:09:29.589 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi090.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-07T08:09:29.687 DEBUG:teuthology.orchestra.run.smithi090:> true 2024-09-07T08:09:29.769 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi090.front.sepia.ceph.com' 2024-09-07T08:09:29.769 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi191.front.sepia.ceph.com' 2024-09-07T08:09:29.770 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi191.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-07T08:09:29.856 DEBUG:teuthology.orchestra.run.smithi191:> true 2024-09-07T08:09:29.941 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi191.front.sepia.ceph.com' 2024-09-07T08:09:29.943 INFO:teuthology.run_tasks:Running task clock... 2024-09-07T08:09:29.954 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-09-07T08:09:29.954 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-07T08:09:29.955 DEBUG:teuthology.orchestra.run.smithi018:> 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-07T08:09:29.957 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-07T08:09:29.958 DEBUG:teuthology.orchestra.run.smithi090:> 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-07T08:09:29.960 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-07T08:09:29.960 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-07T08:09:29.987 INFO:teuthology.orchestra.run.smithi018.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-07T08:09:29.989 INFO:teuthology.orchestra.run.smithi090.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-07T08:09:30.002 INFO:teuthology.orchestra.run.smithi018.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-07T08:09:30.004 INFO:teuthology.orchestra.run.smithi090.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-07T08:09:30.012 INFO:teuthology.orchestra.run.smithi191.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-07T08:09:30.027 INFO:teuthology.orchestra.run.smithi191.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-07T08:09:30.028 INFO:teuthology.orchestra.run.smithi018.stderr:sudo: ntpd: command not found 2024-09-07T08:09:30.029 INFO:teuthology.orchestra.run.smithi090.stderr:sudo: ntpd: command not found 2024-09-07T08:09:30.039 INFO:teuthology.orchestra.run.smithi018.stdout:506 Cannot talk to daemon 2024-09-07T08:09:30.040 INFO:teuthology.orchestra.run.smithi090.stdout:506 Cannot talk to daemon 2024-09-07T08:09:30.052 INFO:teuthology.orchestra.run.smithi191.stderr:sudo: ntpd: command not found 2024-09-07T08:09:30.054 INFO:teuthology.orchestra.run.smithi018.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-07T08:09:30.055 INFO:teuthology.orchestra.run.smithi090.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-07T08:09:30.063 INFO:teuthology.orchestra.run.smithi191.stdout:506 Cannot talk to daemon 2024-09-07T08:09:30.068 INFO:teuthology.orchestra.run.smithi018.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-07T08:09:30.069 INFO:teuthology.orchestra.run.smithi090.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-07T08:09:30.077 INFO:teuthology.orchestra.run.smithi191.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-07T08:09:30.091 INFO:teuthology.orchestra.run.smithi191.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-07T08:09:30.128 INFO:teuthology.orchestra.run.smithi090.stderr:bash: line 1: ntpq: command not found 2024-09-07T08:09:30.131 INFO:teuthology.orchestra.run.smithi090.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-07T08:09:30.131 INFO:teuthology.orchestra.run.smithi090.stdout:=============================================================================== 2024-09-07T08:09:30.131 INFO:teuthology.orchestra.run.smithi090.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-07T08:09:30.131 INFO:teuthology.orchestra.run.smithi090.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-07T08:09:30.131 INFO:teuthology.orchestra.run.smithi090.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-07T08:09:30.131 INFO:teuthology.orchestra.run.smithi090.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-07T08:09:30.140 INFO:teuthology.orchestra.run.smithi018.stderr:bash: line 1: ntpq: command not found 2024-09-07T08:09:30.144 INFO:teuthology.orchestra.run.smithi018.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-07T08:09:30.144 INFO:teuthology.orchestra.run.smithi018.stdout:=============================================================================== 2024-09-07T08:09:30.144 INFO:teuthology.orchestra.run.smithi018.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-07T08:09:30.144 INFO:teuthology.orchestra.run.smithi018.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-07T08:09:30.144 INFO:teuthology.orchestra.run.smithi018.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-07T08:09:30.144 INFO:teuthology.orchestra.run.smithi018.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-07T08:09:30.146 INFO:teuthology.orchestra.run.smithi191.stderr:bash: line 1: ntpq: command not found 2024-09-07T08:09:30.149 INFO:teuthology.orchestra.run.smithi191.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-07T08:09:30.149 INFO:teuthology.orchestra.run.smithi191.stdout:=============================================================================== 2024-09-07T08:09:30.150 INFO:teuthology.orchestra.run.smithi191.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-07T08:09:30.150 INFO:teuthology.orchestra.run.smithi191.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-07T08:09:30.150 INFO:teuthology.orchestra.run.smithi191.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-07T08:09:30.150 INFO:teuthology.orchestra.run.smithi191.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-07T08:09:30.152 INFO:teuthology.run_tasks:Running task pexec... 2024-09-07T08:09:30.162 INFO:teuthology.task.pexec:Executing custom commands... 2024-09-07T08:09:30.163 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi018.front.sepia.ceph.com 2024-09-07T08:09:30.163 DEBUG:teuthology.orchestra.run.smithi018:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-09-07T08:09:30.163 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi090.front.sepia.ceph.com 2024-09-07T08:09:30.164 DEBUG:teuthology.orchestra.run.smithi090:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-09-07T08:09:30.164 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi191.front.sepia.ceph.com 2024-09-07T08:09:30.164 DEBUG:teuthology.orchestra.run.smithi191:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-09-07T08:09:30.507 INFO:teuthology.orchestra.run.smithi090.stdout:Dependencies resolved. 2024-09-07T08:09:30.508 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:09:30.508 INFO:teuthology.orchestra.run.smithi090.stdout: Package Architecture Version Repository Size 2024-09-07T08:09:30.508 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:09:30.508 INFO:teuthology.orchestra.run.smithi090.stdout:Removing: 2024-09-07T08:09:30.508 INFO:teuthology.orchestra.run.smithi090.stdout: nvme-cli x86_64 2.9.1-6.el9 @baseos 5.3 M 2024-09-07T08:09:30.508 INFO:teuthology.orchestra.run.smithi090.stdout:Removing unused dependencies: 2024-09-07T08:09:30.508 INFO:teuthology.orchestra.run.smithi090.stdout: libnvme x86_64 1.9-3.el9 @baseos 273 k 2024-09-07T08:09:30.508 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:09:30.508 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction Summary 2024-09-07T08:09:30.509 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:09:30.509 INFO:teuthology.orchestra.run.smithi090.stdout:Remove 2 Packages 2024-09-07T08:09:30.509 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:09:30.509 INFO:teuthology.orchestra.run.smithi090.stdout:Freed space: 5.5 M 2024-09-07T08:09:30.509 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction check 2024-09-07T08:09:30.512 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction check succeeded. 2024-09-07T08:09:30.512 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction test 2024-09-07T08:09:30.531 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-07T08:09:30.532 INFO:teuthology.orchestra.run.smithi018.stdout:Dependencies resolved. 2024-09-07T08:09:30.533 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:09:30.533 INFO:teuthology.orchestra.run.smithi191.stdout: Package Architecture Version Repository Size 2024-09-07T08:09:30.533 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:09:30.533 INFO:teuthology.orchestra.run.smithi191.stdout:Removing: 2024-09-07T08:09:30.533 INFO:teuthology.orchestra.run.smithi191.stdout: nvme-cli x86_64 2.9.1-6.el9 @baseos 5.3 M 2024-09-07T08:09:30.533 INFO:teuthology.orchestra.run.smithi191.stdout:Removing unused dependencies: 2024-09-07T08:09:30.533 INFO:teuthology.orchestra.run.smithi191.stdout: libnvme x86_64 1.9-3.el9 @baseos 273 k 2024-09-07T08:09:30.533 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:09:30.533 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-07T08:09:30.533 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:09:30.533 INFO:teuthology.orchestra.run.smithi191.stdout:Remove 2 Packages 2024-09-07T08:09:30.533 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:09:30.534 INFO:teuthology.orchestra.run.smithi191.stdout:Freed space: 5.5 M 2024-09-07T08:09:30.534 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-07T08:09:30.534 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:09:30.534 INFO:teuthology.orchestra.run.smithi018.stdout: Package Architecture Version Repository Size 2024-09-07T08:09:30.534 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:09:30.534 INFO:teuthology.orchestra.run.smithi018.stdout:Removing: 2024-09-07T08:09:30.534 INFO:teuthology.orchestra.run.smithi018.stdout: nvme-cli x86_64 2.9.1-6.el9 @baseos 5.3 M 2024-09-07T08:09:30.535 INFO:teuthology.orchestra.run.smithi018.stdout:Removing unused dependencies: 2024-09-07T08:09:30.535 INFO:teuthology.orchestra.run.smithi018.stdout: libnvme x86_64 1.9-3.el9 @baseos 273 k 2024-09-07T08:09:30.535 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:09:30.535 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction Summary 2024-09-07T08:09:30.535 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:09:30.535 INFO:teuthology.orchestra.run.smithi018.stdout:Remove 2 Packages 2024-09-07T08:09:30.535 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:09:30.535 INFO:teuthology.orchestra.run.smithi018.stdout:Freed space: 5.5 M 2024-09-07T08:09:30.535 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction check 2024-09-07T08:09:30.537 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-07T08:09:30.537 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-07T08:09:30.538 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction check succeeded. 2024-09-07T08:09:30.538 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction test 2024-09-07T08:09:30.550 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction test succeeded. 2024-09-07T08:09:30.550 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction 2024-09-07T08:09:30.575 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction test succeeded. 2024-09-07T08:09:30.576 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction 2024-09-07T08:09:30.580 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-07T08:09:30.580 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-07T08:09:30.685 INFO:teuthology.orchestra.run.smithi090.stdout: Preparing : 1/1 2024-09-07T08:09:30.697 INFO:teuthology.orchestra.run.smithi018.stdout: Preparing : 1/1 2024-09-07T08:09:30.703 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-07T08:09:30.788 INFO:teuthology.orchestra.run.smithi018.stdout: Erasing : nvme-cli-2.9.1-6.el9.x86_64 1/2 2024-09-07T08:09:30.789 INFO:teuthology.orchestra.run.smithi090.stdout: Erasing : nvme-cli-2.9.1-6.el9.x86_64 1/2 2024-09-07T08:09:30.791 INFO:teuthology.orchestra.run.smithi191.stdout: Erasing : nvme-cli-2.9.1-6.el9.x86_64 1/2 2024-09-07T08:09:30.845 INFO:teuthology.orchestra.run.smithi090.stdout: Erasing : libnvme-1.9-3.el9.x86_64 2/2 2024-09-07T08:09:30.848 INFO:teuthology.orchestra.run.smithi018.stdout: Erasing : libnvme-1.9-3.el9.x86_64 2/2 2024-09-07T08:09:30.851 INFO:teuthology.orchestra.run.smithi191.stdout: Erasing : libnvme-1.9-3.el9.x86_64 2/2 2024-09-07T08:09:31.322 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: libnvme-1.9-3.el9.x86_64 2/2 2024-09-07T08:09:31.322 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/2 2024-09-07T08:09:31.361 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: libnvme-1.9-3.el9.x86_64 2/2 2024-09-07T08:09:31.362 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/2 2024-09-07T08:09:31.432 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: libnvme-1.9-3.el9.x86_64 2/2 2024-09-07T08:09:31.432 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/2 2024-09-07T08:09:31.526 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/2 2024-09-07T08:09:31.526 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:09:31.526 INFO:teuthology.orchestra.run.smithi018.stdout:Removed: 2024-09-07T08:09:31.526 INFO:teuthology.orchestra.run.smithi018.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-07T08:09:31.526 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:09:31.527 INFO:teuthology.orchestra.run.smithi018.stdout:Complete! 2024-09-07T08:09:31.610 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/2 2024-09-07T08:09:31.610 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:09:31.611 INFO:teuthology.orchestra.run.smithi191.stdout:Removed: 2024-09-07T08:09:31.611 INFO:teuthology.orchestra.run.smithi191.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-07T08:09:31.611 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:09:31.611 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-07T08:09:31.719 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/2 2024-09-07T08:09:31.719 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:09:31.719 INFO:teuthology.orchestra.run.smithi090.stdout:Removed: 2024-09-07T08:09:31.719 INFO:teuthology.orchestra.run.smithi090.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-07T08:09:31.719 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:09:31.719 INFO:teuthology.orchestra.run.smithi090.stdout:Complete! 2024-09-07T08:09:32.344 INFO:teuthology.orchestra.run.smithi018.stdout:Last metadata expiration check: 0:00:48 ago on Sat 07 Sep 2024 08:08:44 AM UTC. 2024-09-07T08:09:32.411 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:00:50 ago on Sat 07 Sep 2024 08:08:42 AM UTC. 2024-09-07T08:09:32.489 INFO:teuthology.orchestra.run.smithi018.stdout:Dependencies resolved. 2024-09-07T08:09:32.489 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:09:32.489 INFO:teuthology.orchestra.run.smithi018.stdout: Package Architecture Version Repository Size 2024-09-07T08:09:32.490 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:09:32.490 INFO:teuthology.orchestra.run.smithi018.stdout:Installing: 2024-09-07T08:09:32.490 INFO:teuthology.orchestra.run.smithi018.stdout: nvme-cli x86_64 2.9.1-6.el9 baseos 906 k 2024-09-07T08:09:32.490 INFO:teuthology.orchestra.run.smithi018.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-09-07T08:09:32.490 INFO:teuthology.orchestra.run.smithi018.stdout:Installing dependencies: 2024-09-07T08:09:32.490 INFO:teuthology.orchestra.run.smithi018.stdout: libnvme x86_64 1.9-3.el9 baseos 106 k 2024-09-07T08:09:32.490 INFO:teuthology.orchestra.run.smithi018.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-09-07T08:09:32.490 INFO:teuthology.orchestra.run.smithi018.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-09-07T08:09:32.490 INFO:teuthology.orchestra.run.smithi018.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-09-07T08:09:32.490 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:09:32.490 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction Summary 2024-09-07T08:09:32.490 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:09:32.490 INFO:teuthology.orchestra.run.smithi018.stdout:Install 6 Packages 2024-09-07T08:09:32.490 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:09:32.491 INFO:teuthology.orchestra.run.smithi018.stdout:Total download size: 2.0 M 2024-09-07T08:09:32.491 INFO:teuthology.orchestra.run.smithi018.stdout:Installed size: 9.2 M 2024-09-07T08:09:32.491 INFO:teuthology.orchestra.run.smithi018.stdout:Downloading Packages: 2024-09-07T08:09:32.542 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-07T08:09:32.542 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:09:32.543 INFO:teuthology.orchestra.run.smithi191.stdout: Package Architecture Version Repository Size 2024-09-07T08:09:32.543 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:09:32.543 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-07T08:09:32.543 INFO:teuthology.orchestra.run.smithi191.stdout: nvme-cli x86_64 2.9.1-6.el9 baseos 906 k 2024-09-07T08:09:32.543 INFO:teuthology.orchestra.run.smithi191.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-09-07T08:09:32.543 INFO:teuthology.orchestra.run.smithi191.stdout:Installing dependencies: 2024-09-07T08:09:32.543 INFO:teuthology.orchestra.run.smithi191.stdout: libnvme x86_64 1.9-3.el9 baseos 106 k 2024-09-07T08:09:32.543 INFO:teuthology.orchestra.run.smithi191.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-09-07T08:09:32.543 INFO:teuthology.orchestra.run.smithi191.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-09-07T08:09:32.543 INFO:teuthology.orchestra.run.smithi191.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-09-07T08:09:32.543 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:09:32.543 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-07T08:09:32.543 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:09:32.544 INFO:teuthology.orchestra.run.smithi191.stdout:Install 6 Packages 2024-09-07T08:09:32.544 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:09:32.544 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 2.0 M 2024-09-07T08:09:32.544 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 9.2 M 2024-09-07T08:09:32.544 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-07T08:09:32.589 INFO:teuthology.orchestra.run.smithi090.stdout:Last metadata expiration check: 0:00:50 ago on Sat 07 Sep 2024 08:08:42 AM UTC. 2024-09-07T08:09:32.620 INFO:teuthology.orchestra.run.smithi018.stdout:(1/6): nvmetcli-0.7-3.el9.noarch.rpm 426 kB/s | 44 kB 00:00 2024-09-07T08:09:32.645 INFO:teuthology.orchestra.run.smithi018.stdout:(2/6): libnvme-1.9-3.el9.x86_64.rpm 819 kB/s | 106 kB 00:00 2024-09-07T08:09:32.679 INFO:teuthology.orchestra.run.smithi018.stdout:(3/6): python3-configshell-1.1.30-1.el9.noarch. 1.2 MB/s | 72 kB 00:00 2024-09-07T08:09:32.713 INFO:teuthology.orchestra.run.smithi018.stdout:(4/6): python3-kmod-0.9-32.el9.x86_64.rpm 1.2 MB/s | 84 kB 00:00 2024-09-07T08:09:32.729 INFO:teuthology.orchestra.run.smithi090.stdout:Dependencies resolved. 2024-09-07T08:09:32.729 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:09:32.729 INFO:teuthology.orchestra.run.smithi090.stdout: Package Architecture Version Repository Size 2024-09-07T08:09:32.730 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:09:32.730 INFO:teuthology.orchestra.run.smithi090.stdout:Installing: 2024-09-07T08:09:32.730 INFO:teuthology.orchestra.run.smithi090.stdout: nvme-cli x86_64 2.9.1-6.el9 baseos 906 k 2024-09-07T08:09:32.730 INFO:teuthology.orchestra.run.smithi090.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-09-07T08:09:32.730 INFO:teuthology.orchestra.run.smithi090.stdout:Installing dependencies: 2024-09-07T08:09:32.730 INFO:teuthology.orchestra.run.smithi090.stdout: libnvme x86_64 1.9-3.el9 baseos 106 k 2024-09-07T08:09:32.730 INFO:teuthology.orchestra.run.smithi090.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-09-07T08:09:32.730 INFO:teuthology.orchestra.run.smithi090.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-09-07T08:09:32.730 INFO:teuthology.orchestra.run.smithi090.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-09-07T08:09:32.730 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:09:32.730 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction Summary 2024-09-07T08:09:32.730 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:09:32.730 INFO:teuthology.orchestra.run.smithi090.stdout:Install 6 Packages 2024-09-07T08:09:32.730 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:09:32.731 INFO:teuthology.orchestra.run.smithi090.stdout:Total download size: 2.0 M 2024-09-07T08:09:32.731 INFO:teuthology.orchestra.run.smithi090.stdout:Installed size: 9.2 M 2024-09-07T08:09:32.731 INFO:teuthology.orchestra.run.smithi090.stdout:Downloading Packages: 2024-09-07T08:09:32.738 INFO:teuthology.orchestra.run.smithi018.stdout:(5/6): nvme-cli-2.9.1-6.el9.x86_64.rpm 4.0 MB/s | 906 kB 00:00 2024-09-07T08:09:32.780 INFO:teuthology.orchestra.run.smithi018.stdout:(6/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 8.1 MB/s | 837 kB 00:00 2024-09-07T08:09:32.781 INFO:teuthology.orchestra.run.smithi018.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:09:32.781 INFO:teuthology.orchestra.run.smithi018.stdout:Total 6.9 MB/s | 2.0 MB 00:00 2024-09-07T08:09:32.832 INFO:teuthology.orchestra.run.smithi090.stdout:(1/6): nvmetcli-0.7-3.el9.noarch.rpm 572 kB/s | 44 kB 00:00 2024-09-07T08:09:32.854 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction check 2024-09-07T08:09:32.869 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction check succeeded. 2024-09-07T08:09:32.869 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction test 2024-09-07T08:09:32.874 INFO:teuthology.orchestra.run.smithi090.stdout:(2/6): libnvme-1.9-3.el9.x86_64.rpm 885 kB/s | 106 kB 00:00 2024-09-07T08:09:32.899 INFO:teuthology.orchestra.run.smithi090.stdout:(3/6): python3-configshell-1.1.30-1.el9.noarch. 1.0 MB/s | 72 kB 00:00 2024-09-07T08:09:32.924 INFO:teuthology.orchestra.run.smithi191.stdout:(1/6): nvmetcli-0.7-3.el9.noarch.rpm 196 kB/s | 44 kB 00:00 2024-09-07T08:09:32.941 INFO:teuthology.orchestra.run.smithi090.stdout:(4/6): nvme-cli-2.9.1-6.el9.x86_64.rpm 4.7 MB/s | 906 kB 00:00 2024-09-07T08:09:32.949 INFO:teuthology.orchestra.run.smithi191.stdout:(2/6): libnvme-1.9-3.el9.x86_64.rpm 420 kB/s | 106 kB 00:00 2024-09-07T08:09:32.966 INFO:teuthology.orchestra.run.smithi090.stdout:(5/6): python3-kmod-0.9-32.el9.x86_64.rpm 913 kB/s | 84 kB 00:00 2024-09-07T08:09:32.973 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction test succeeded. 2024-09-07T08:09:32.973 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction 2024-09-07T08:09:33.016 INFO:teuthology.orchestra.run.smithi191.stdout:(3/6): python3-configshell-1.1.30-1.el9.noarch. 782 kB/s | 72 kB 00:00 2024-09-07T08:09:33.018 INFO:teuthology.orchestra.run.smithi090.stdout:(6/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 6.9 MB/s | 837 kB 00:00 2024-09-07T08:09:33.018 INFO:teuthology.orchestra.run.smithi090.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:09:33.018 INFO:teuthology.orchestra.run.smithi090.stdout:Total 7.0 MB/s | 2.0 MB 00:00 2024-09-07T08:09:33.050 INFO:teuthology.orchestra.run.smithi191.stdout:(4/6): python3-kmod-0.9-32.el9.x86_64.rpm 840 kB/s | 84 kB 00:00 2024-09-07T08:09:33.092 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction check 2024-09-07T08:09:33.106 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction check succeeded. 2024-09-07T08:09:33.106 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction test 2024-09-07T08:09:33.204 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction test succeeded. 2024-09-07T08:09:33.204 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction 2024-09-07T08:09:33.334 INFO:teuthology.orchestra.run.smithi191.stdout:(5/6): nvme-cli-2.9.1-6.el9.x86_64.rpm 1.4 MB/s | 906 kB 00:00 2024-09-07T08:09:33.359 INFO:teuthology.orchestra.run.smithi191.stdout:(6/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 2.4 MB/s | 837 kB 00:00 2024-09-07T08:09:33.359 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:09:33.359 INFO:teuthology.orchestra.run.smithi191.stdout:Total 2.5 MB/s | 2.0 MB 00:00 2024-09-07T08:09:33.399 INFO:teuthology.orchestra.run.smithi018.stdout: Preparing : 1/1 2024-09-07T08:09:33.432 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-07T08:09:33.446 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-07T08:09:33.446 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-07T08:09:33.500 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2024-09-07T08:09:33.533 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 2/6 2024-09-07T08:09:33.544 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-07T08:09:33.544 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-07T08:09:33.563 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 3/6 2024-09-07T08:09:33.620 INFO:teuthology.orchestra.run.smithi090.stdout: Preparing : 1/1 2024-09-07T08:09:33.721 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2024-09-07T08:09:33.763 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 2/6 2024-09-07T08:09:33.791 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : libnvme-1.9-3.el9.x86_64 4/6 2024-09-07T08:09:33.801 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 3/6 2024-09-07T08:09:33.819 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-07T08:09:33.958 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-07T08:09:34.005 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : libnvme-1.9-3.el9.x86_64 4/6 2024-09-07T08:09:34.041 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-07T08:09:34.061 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2024-09-07T08:09:34.095 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 2/6 2024-09-07T08:09:34.125 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 3/6 2024-09-07T08:09:34.266 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-07T08:09:34.306 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : nvmetcli-0.7-3.el9.noarch 6/6 2024-09-07T08:09:34.341 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : libnvme-1.9-3.el9.x86_64 4/6 2024-09-07T08:09:34.381 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-07T08:09:34.488 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-07T08:09:34.512 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : nvmetcli-0.7-3.el9.noarch 6/6 2024-09-07T08:09:34.807 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-07T08:09:34.842 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : nvmetcli-0.7-3.el9.noarch 6/6 2024-09-07T08:09:35.287 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 6/6 2024-09-07T08:09:35.287 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/6 2024-09-07T08:09:35.287 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/6 2024-09-07T08:09:35.287 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 3/6 2024-09-07T08:09:35.288 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 4/6 2024-09-07T08:09:35.288 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 5/6 2024-09-07T08:09:35.512 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 6/6 2024-09-07T08:09:35.512 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/6 2024-09-07T08:09:35.512 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/6 2024-09-07T08:09:35.512 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 3/6 2024-09-07T08:09:35.512 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 4/6 2024-09-07T08:09:35.512 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 5/6 2024-09-07T08:09:35.618 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2024-09-07T08:09:35.618 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:09:35.618 INFO:teuthology.orchestra.run.smithi018.stdout:Installed: 2024-09-07T08:09:35.618 INFO:teuthology.orchestra.run.smithi018.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-07T08:09:35.618 INFO:teuthology.orchestra.run.smithi018.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-09-07T08:09:35.618 INFO:teuthology.orchestra.run.smithi018.stdout: python3-kmod-0.9-32.el9.x86_64 python3-urwid-2.1.2-4.el9.x86_64 2024-09-07T08:09:35.619 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:09:35.619 INFO:teuthology.orchestra.run.smithi018.stdout:Complete! 2024-09-07T08:09:35.837 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 6/6 2024-09-07T08:09:35.837 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/6 2024-09-07T08:09:35.837 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/6 2024-09-07T08:09:35.837 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 3/6 2024-09-07T08:09:35.837 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 4/6 2024-09-07T08:09:35.838 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 5/6 2024-09-07T08:09:35.868 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2024-09-07T08:09:35.868 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:09:35.868 INFO:teuthology.orchestra.run.smithi090.stdout:Installed: 2024-09-07T08:09:35.868 INFO:teuthology.orchestra.run.smithi090.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-07T08:09:35.868 INFO:teuthology.orchestra.run.smithi090.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-09-07T08:09:35.868 INFO:teuthology.orchestra.run.smithi090.stdout: python3-kmod-0.9-32.el9.x86_64 python3-urwid-2.1.2-4.el9.x86_64 2024-09-07T08:09:35.868 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:09:35.868 INFO:teuthology.orchestra.run.smithi090.stdout:Complete! 2024-09-07T08:09:35.883 DEBUG:teuthology.parallel:result is None 2024-09-07T08:09:36.153 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2024-09-07T08:09:36.153 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:09:36.153 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-07T08:09:36.153 INFO:teuthology.orchestra.run.smithi191.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-07T08:09:36.153 INFO:teuthology.orchestra.run.smithi191.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-09-07T08:09:36.153 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-07T08:09:36.153 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:09:36.154 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-07T08:09:36.228 DEBUG:teuthology.parallel:result is None 2024-09-07T08:09:36.452 DEBUG:teuthology.parallel:result is None 2024-09-07T08:09:36.453 INFO:teuthology.run_tasks:Running task install... 2024-09-07T08:09:36.461 DEBUG:teuthology.task.install:project ceph 2024-09-07T08:09:36.461 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': '03cef208dc8a39e0b8a1806b4763767a2ff62439'}} 2024-09-07T08:09:36.461 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': '03cef208dc8a39e0b8a1806b4763767a2ff62439'} 2024-09-07T08:09:36.461 INFO:teuthology.task.install:Using flavor: default 2024-09-07T08:09:36.467 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-07T08:09:36.467 INFO:teuthology.task.install:extra packages: [] 2024-09-07T08:09:36.467 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': '03cef208dc8a39e0b8a1806b4763767a2ff62439', 'tag': None, 'wait_for_package': False} 2024-09-07T08:09:36.468 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=03cef208dc8a39e0b8a1806b4763767a2ff62439 2024-09-07T08:09:36.470 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': '03cef208dc8a39e0b8a1806b4763767a2ff62439', 'tag': None, 'wait_for_package': False} 2024-09-07T08:09:36.470 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=03cef208dc8a39e0b8a1806b4763767a2ff62439 2024-09-07T08:09:36.471 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': '03cef208dc8a39e0b8a1806b4763767a2ff62439', 'tag': None, 'wait_for_package': False} 2024-09-07T08:09:36.471 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=03cef208dc8a39e0b8a1806b4763767a2ff62439 2024-09-07T08:09:36.627 INFO:teuthology.task.install.rpm:Pulling from https://1.chacra.ceph.com/r/ceph/wip-guits-reef-2024-09-06-1902/03cef208dc8a39e0b8a1806b4763767a2ff62439/centos/9/flavors/default/ 2024-09-07T08:09:36.627 INFO:teuthology.task.install.rpm:Package version is 18.2.4-812.g03cef208 2024-09-07T08:09:36.640 INFO:teuthology.task.install.rpm:Pulling from https://1.chacra.ceph.com/r/ceph/wip-guits-reef-2024-09-06-1902/03cef208dc8a39e0b8a1806b4763767a2ff62439/centos/9/flavors/default/ 2024-09-07T08:09:36.640 INFO:teuthology.task.install.rpm:Package version is 18.2.4-812.g03cef208 2024-09-07T08:09:36.651 INFO:teuthology.task.install.rpm:Pulling from https://1.chacra.ceph.com/r/ceph/wip-guits-reef-2024-09-06-1902/03cef208dc8a39e0b8a1806b4763767a2ff62439/centos/9/flavors/default/ 2024-09-07T08:09:36.651 INFO:teuthology.task.install.rpm:Package version is 18.2.4-812.g03cef208 2024-09-07T08:09:36.758 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://1.chacra.ceph.com/r/ceph/wip-guits-reef-2024-09-06-1902/03cef208dc8a39e0b8a1806b4763767a2ff62439/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://1.chacra.ceph.com/r/ceph/wip-guits-reef-2024-09-06-1902/03cef208dc8a39e0b8a1806b4763767a2ff62439/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://1.chacra.ceph.com/r/ceph/wip-guits-reef-2024-09-06-1902/03cef208dc8a39e0b8a1806b4763767a2ff62439/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-09-07T08:09:36.758 DEBUG:teuthology.orchestra.run.smithi018:> set -ex 2024-09-07T08:09:36.758 DEBUG:teuthology.orchestra.run.smithi018:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-09-07T08:09:36.761 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://1.chacra.ceph.com/r/ceph/wip-guits-reef-2024-09-06-1902/03cef208dc8a39e0b8a1806b4763767a2ff62439/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://1.chacra.ceph.com/r/ceph/wip-guits-reef-2024-09-06-1902/03cef208dc8a39e0b8a1806b4763767a2ff62439/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://1.chacra.ceph.com/r/ceph/wip-guits-reef-2024-09-06-1902/03cef208dc8a39e0b8a1806b4763767a2ff62439/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-09-07T08:09:36.762 DEBUG:teuthology.orchestra.run.smithi090:> set -ex 2024-09-07T08:09:36.762 DEBUG:teuthology.orchestra.run.smithi090:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-09-07T08:09:36.776 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://1.chacra.ceph.com/r/ceph/wip-guits-reef-2024-09-06-1902/03cef208dc8a39e0b8a1806b4763767a2ff62439/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://1.chacra.ceph.com/r/ceph/wip-guits-reef-2024-09-06-1902/03cef208dc8a39e0b8a1806b4763767a2ff62439/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://1.chacra.ceph.com/r/ceph/wip-guits-reef-2024-09-06-1902/03cef208dc8a39e0b8a1806b4763767a2ff62439/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-09-07T08:09:36.776 DEBUG:teuthology.orchestra.run.smithi191:> set -ex 2024-09-07T08:09:36.777 DEBUG:teuthology.orchestra.run.smithi191:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-09-07T08:09:36.792 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-07T08:09:36.792 DEBUG:teuthology.orchestra.run.smithi018:> 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/03cef208dc8a39e0b8a1806b4763767a2ff62439/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-09-07T08:09:36.795 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-07T08:09:36.795 DEBUG:teuthology.orchestra.run.smithi090:> 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/03cef208dc8a39e0b8a1806b4763767a2ff62439/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-09-07T08:09:36.805 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-07T08:09:36.805 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/03cef208dc8a39e0b8a1806b4763767a2ff62439/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-09-07T08:09:36.863 DEBUG:teuthology.orchestra.run.smithi018:> 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-07T08:09:36.864 DEBUG:teuthology.orchestra.run.smithi090:> 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-07T08:09:36.870 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-07T08:09:36.942 DEBUG:teuthology.orchestra.run.smithi090:> 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-07T08:09:36.944 DEBUG:teuthology.orchestra.run.smithi018:> 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-07T08:09:36.946 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-07T08:09:37.007 INFO:teuthology.orchestra.run.smithi090.stdout:check_obsoletes = 1 2024-09-07T08:09:37.009 DEBUG:teuthology.orchestra.run.smithi090:> sudo yum clean all 2024-09-07T08:09:37.010 INFO:teuthology.orchestra.run.smithi191.stdout:check_obsoletes = 1 2024-09-07T08:09:37.012 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum clean all 2024-09-07T08:09:37.012 INFO:teuthology.orchestra.run.smithi018.stdout:check_obsoletes = 1 2024-09-07T08:09:37.014 DEBUG:teuthology.orchestra.run.smithi018:> sudo yum clean all 2024-09-07T08:09:37.236 INFO:teuthology.orchestra.run.smithi090.stdout:45 files removed 2024-09-07T08:09:37.242 INFO:teuthology.orchestra.run.smithi191.stdout:45 files removed 2024-09-07T08:09:37.250 INFO:teuthology.orchestra.run.smithi018.stdout:45 files removed 2024-09-07T08:09:37.263 DEBUG:teuthology.orchestra.run.smithi090:> sudo yum -y install ceph-radosgw 2024-09-07T08:09:37.270 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph-radosgw 2024-09-07T08:09:37.277 DEBUG:teuthology.orchestra.run.smithi018:> sudo yum -y install ceph-radosgw 2024-09-07T08:09:37.864 INFO:teuthology.orchestra.run.smithi018.stdout:ceph packages for x86_64 254 kB/s | 77 kB 00:00 2024-09-07T08:09:37.874 INFO:teuthology.orchestra.run.smithi191.stdout:ceph packages for x86_64 236 kB/s | 77 kB 00:00 2024-09-07T08:09:37.908 INFO:teuthology.orchestra.run.smithi090.stdout:ceph packages for x86_64 208 kB/s | 77 kB 00:00 2024-09-07T08:09:38.175 INFO:teuthology.orchestra.run.smithi191.stdout:ceph noarch packages 45 kB/s | 11 kB 00:00 2024-09-07T08:09:38.181 INFO:teuthology.orchestra.run.smithi018.stdout:ceph noarch packages 42 kB/s | 11 kB 00:00 2024-09-07T08:09:38.200 INFO:teuthology.orchestra.run.smithi090.stdout:ceph noarch packages 46 kB/s | 11 kB 00:00 2024-09-07T08:09:38.451 INFO:teuthology.orchestra.run.smithi191.stdout:ceph source packages 7.8 kB/s | 1.9 kB 00:00 2024-09-07T08:09:38.456 INFO:teuthology.orchestra.run.smithi018.stdout:ceph source packages 7.9 kB/s | 1.9 kB 00:00 2024-09-07T08:09:38.476 INFO:teuthology.orchestra.run.smithi090.stdout:ceph source packages 7.8 kB/s | 1.9 kB 00:00 2024-09-07T08:09:39.065 INFO:teuthology.orchestra.run.smithi018.stdout:CentOS Stream 9 - BaseOS 14 MB/s | 8.2 MB 00:00 2024-09-07T08:09:39.083 INFO:teuthology.orchestra.run.smithi191.stdout:CentOS Stream 9 - BaseOS 14 MB/s | 8.2 MB 00:00 2024-09-07T08:09:40.826 INFO:teuthology.orchestra.run.smithi191.stdout:CentOS Stream 9 - AppStream 31 MB/s | 20 MB 00:00 2024-09-07T08:09:41.951 INFO:teuthology.orchestra.run.smithi090.stdout:CentOS Stream 9 - BaseOS 2.4 MB/s | 8.2 MB 00:03 2024-09-07T08:09:42.266 INFO:teuthology.orchestra.run.smithi018.stdout:CentOS Stream 9 - AppStream 9.9 MB/s | 20 MB 00:02 2024-09-07T08:09:45.002 INFO:teuthology.orchestra.run.smithi191.stdout:CentOS Stream 9 - CRB 17 MB/s | 6.5 MB 00:00 2024-09-07T08:09:46.361 INFO:teuthology.orchestra.run.smithi191.stdout:CentOS Stream 9 - Extras packages 121 kB/s | 19 kB 00:00 2024-09-07T08:09:47.133 INFO:teuthology.orchestra.run.smithi191.stdout:Extra Packages for Enterprise Linux 35 MB/s | 23 MB 00:00 2024-09-07T08:09:47.783 INFO:teuthology.orchestra.run.smithi018.stdout:CentOS Stream 9 - CRB 4.3 MB/s | 6.5 MB 00:01 2024-09-07T08:09:48.553 INFO:teuthology.orchestra.run.smithi090.stdout:CentOS Stream 9 - AppStream 3.7 MB/s | 20 MB 00:05 2024-09-07T08:09:50.426 INFO:teuthology.orchestra.run.smithi018.stdout:CentOS Stream 9 - Extras packages 13 kB/s | 19 kB 00:01 2024-09-07T08:09:51.205 INFO:teuthology.orchestra.run.smithi018.stdout:Extra Packages for Enterprise Linux 35 MB/s | 23 MB 00:00 2024-09-07T08:09:52.638 INFO:teuthology.orchestra.run.smithi191.stdout:lab-extras 17 kB/s | 1.7 kB 00:00 2024-09-07T08:09:52.847 INFO:teuthology.orchestra.run.smithi090.stdout:CentOS Stream 9 - CRB 14 MB/s | 6.5 MB 00:00 2024-09-07T08:09:54.381 INFO:teuthology.orchestra.run.smithi090.stdout:CentOS Stream 9 - Extras packages 56 kB/s | 19 kB 00:00 2024-09-07T08:09:54.941 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-07T08:09:54.943 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:09:54.943 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repository Size 2024-09-07T08:09:54.943 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:09:54.943 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-07T08:09:54.943 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-radosgw x86_64 2:18.2.4-812.g03cef208.el9 ceph 7.7 M 2024-09-07T08:09:54.944 INFO:teuthology.orchestra.run.smithi191.stdout:Upgrading: 2024-09-07T08:09:54.944 INFO:teuthology.orchestra.run.smithi191.stdout: librados2 x86_64 2:18.2.4-812.g03cef208.el9 ceph 3.3 M 2024-09-07T08:09:54.944 INFO:teuthology.orchestra.run.smithi191.stdout: librbd1 x86_64 2:18.2.4-812.g03cef208.el9 ceph 3.0 M 2024-09-07T08:09:54.944 INFO:teuthology.orchestra.run.smithi191.stdout:Installing dependencies: 2024-09-07T08:09:54.944 INFO:teuthology.orchestra.run.smithi191.stdout: boost-program-options x86_64 1.75.0-8.el9 appstream 107 k 2024-09-07T08:09:54.944 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-base x86_64 2:18.2.4-812.g03cef208.el9 ceph 5.1 M 2024-09-07T08:09:54.944 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-common x86_64 2:18.2.4-812.g03cef208.el9 ceph 18 M 2024-09-07T08:09:54.944 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-selinux x86_64 2:18.2.4-812.g03cef208.el9 ceph 25 k 2024-09-07T08:09:54.944 INFO:teuthology.orchestra.run.smithi191.stdout: fmt x86_64 8.1.1-5.el9 epel 111 k 2024-09-07T08:09:54.944 INFO:teuthology.orchestra.run.smithi191.stdout: gperftools-libs x86_64 2.9.1-2.el9 epel 309 k 2024-09-07T08:09:54.944 INFO:teuthology.orchestra.run.smithi191.stdout: libarrow x86_64 9.0.0-11.el9 epel 4.4 M 2024-09-07T08:09:54.944 INFO:teuthology.orchestra.run.smithi191.stdout: libarrow-doc noarch 9.0.0-11.el9 epel 26 k 2024-09-07T08:09:54.945 INFO:teuthology.orchestra.run.smithi191.stdout: libcephfs2 x86_64 2:18.2.4-812.g03cef208.el9 ceph 711 k 2024-09-07T08:09:54.945 INFO:teuthology.orchestra.run.smithi191.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-09-07T08:09:54.945 INFO:teuthology.orchestra.run.smithi191.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-09-07T08:09:54.945 INFO:teuthology.orchestra.run.smithi191.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-09-07T08:09:54.945 INFO:teuthology.orchestra.run.smithi191.stdout: libradosstriper1 x86_64 2:18.2.4-812.g03cef208.el9 ceph 477 k 2024-09-07T08:09:54.945 INFO:teuthology.orchestra.run.smithi191.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-09-07T08:09:54.945 INFO:teuthology.orchestra.run.smithi191.stdout: librgw2 x86_64 2:18.2.4-812.g03cef208.el9 ceph 4.5 M 2024-09-07T08:09:54.945 INFO:teuthology.orchestra.run.smithi191.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-09-07T08:09:54.945 INFO:teuthology.orchestra.run.smithi191.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-09-07T08:09:54.945 INFO:teuthology.orchestra.run.smithi191.stdout: parquet-libs x86_64 9.0.0-11.el9 epel 839 k 2024-09-07T08:09:54.945 INFO:teuthology.orchestra.run.smithi191.stdout: python3-ceph-argparse x86_64 2:18.2.4-812.g03cef208.el9 ceph 45 k 2024-09-07T08:09:54.945 INFO:teuthology.orchestra.run.smithi191.stdout: python3-ceph-common x86_64 2:18.2.4-812.g03cef208.el9 ceph 129 k 2024-09-07T08:09:54.945 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cephfs x86_64 2:18.2.4-812.g03cef208.el9 ceph 162 k 2024-09-07T08:09:54.946 INFO:teuthology.orchestra.run.smithi191.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-09-07T08:09:54.946 INFO:teuthology.orchestra.run.smithi191.stdout: python3-rados x86_64 2:18.2.4-812.g03cef208.el9 ceph 320 k 2024-09-07T08:09:54.946 INFO:teuthology.orchestra.run.smithi191.stdout: python3-rbd x86_64 2:18.2.4-812.g03cef208.el9 ceph 300 k 2024-09-07T08:09:54.946 INFO:teuthology.orchestra.run.smithi191.stdout: python3-rgw x86_64 2:18.2.4-812.g03cef208.el9 ceph 99 k 2024-09-07T08:09:54.946 INFO:teuthology.orchestra.run.smithi191.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2024-09-07T08:09:54.946 INFO:teuthology.orchestra.run.smithi191.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-09-07T08:09:54.946 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:09:54.946 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-07T08:09:54.946 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:09:54.946 INFO:teuthology.orchestra.run.smithi191.stdout:Install 28 Packages 2024-09-07T08:09:54.946 INFO:teuthology.orchestra.run.smithi191.stdout:Upgrade 2 Packages 2024-09-07T08:09:54.946 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:09:54.947 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 53 M 2024-09-07T08:09:54.947 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-07T08:09:55.445 INFO:teuthology.orchestra.run.smithi090.stdout:Extra Packages for Enterprise Linux 24 MB/s | 23 MB 00:00 2024-09-07T08:09:55.797 INFO:teuthology.orchestra.run.smithi191.stdout:(1/30): ceph-base-18.2.4-812.g03cef208.el9.x86_ 6.6 MB/s | 5.1 MB 00:00 2024-09-07T08:09:55.873 INFO:teuthology.orchestra.run.smithi191.stdout:(2/30): ceph-selinux-18.2.4-812.g03cef208.el9.x 336 kB/s | 25 kB 00:00 2024-09-07T08:09:55.981 INFO:teuthology.orchestra.run.smithi191.stdout:(3/30): libcephfs2-18.2.4-812.g03cef208.el9.x86 6.4 MB/s | 711 kB 00:00 2024-09-07T08:09:56.073 INFO:teuthology.orchestra.run.smithi191.stdout:(4/30): ceph-radosgw-18.2.4-812.g03cef208.el9.x 7.4 MB/s | 7.7 MB 00:01 2024-09-07T08:09:56.098 INFO:teuthology.orchestra.run.smithi191.stdout:(5/30): libradosstriper1-18.2.4-812.g03cef208.e 4.0 MB/s | 477 kB 00:00 2024-09-07T08:09:56.165 INFO:teuthology.orchestra.run.smithi191.stdout:(6/30): python3-ceph-argparse-18.2.4-812.g03cef 674 kB/s | 45 kB 00:00 2024-09-07T08:09:56.266 INFO:teuthology.orchestra.run.smithi191.stdout:(7/30): python3-ceph-common-18.2.4-812.g03cef20 1.3 MB/s | 129 kB 00:00 2024-09-07T08:09:56.458 INFO:teuthology.orchestra.run.smithi191.stdout:(8/30): ceph-common-18.2.4-812.g03cef208.el9.x8 13 MB/s | 18 MB 00:01 2024-09-07T08:09:56.483 INFO:teuthology.orchestra.run.smithi191.stdout:(9/30): python3-cephfs-18.2.4-812.g03cef208.el9 747 kB/s | 162 kB 00:00 2024-09-07T08:09:56.558 INFO:teuthology.orchestra.run.smithi191.stdout:(10/30): librgw2-18.2.4-812.g03cef208.el9.x86_6 9.2 MB/s | 4.5 MB 00:00 2024-09-07T08:09:56.583 INFO:teuthology.orchestra.run.smithi191.stdout:(11/30): python3-rbd-18.2.4-812.g03cef208.el9.x 2.9 MB/s | 300 kB 00:00 2024-09-07T08:09:56.609 INFO:teuthology.orchestra.run.smithi191.stdout:(12/30): python3-rados-18.2.4-812.g03cef208.el9 2.1 MB/s | 320 kB 00:00 2024-09-07T08:09:56.634 INFO:teuthology.orchestra.run.smithi191.stdout:(13/30): python3-rgw-18.2.4-812.g03cef208.el9.x 1.3 MB/s | 99 kB 00:00 2024-09-07T08:09:56.836 INFO:teuthology.orchestra.run.smithi018.stdout:lab-extras 31 kB/s | 1.7 kB 00:00 2024-09-07T08:09:57.201 INFO:teuthology.orchestra.run.smithi191.stdout:(14/30): librabbitmq-0.11.0-7.el9.x86_64.rpm 80 kB/s | 45 kB 00:00 2024-09-07T08:09:57.268 INFO:teuthology.orchestra.run.smithi191.stdout:(15/30): boost-program-options-1.75.0-8.el9.x86 156 kB/s | 107 kB 00:00 2024-09-07T08:09:57.326 INFO:teuthology.orchestra.run.smithi191.stdout:(16/30): libpmemobj-1.12.1-1.el9.x86_64.rpm 223 kB/s | 160 kB 00:00 2024-09-07T08:09:57.894 INFO:teuthology.orchestra.run.smithi191.stdout:(17/30): python3-prettytable-0.7.2-27.el9.noarc 75 kB/s | 42 kB 00:00 2024-09-07T08:09:57.935 INFO:teuthology.orchestra.run.smithi191.stdout:(18/30): fmt-8.1.1-5.el9.x86_64.rpm 2.6 MB/s | 111 kB 00:00 2024-09-07T08:09:57.961 INFO:teuthology.orchestra.run.smithi191.stdout:(19/30): gperftools-libs-2.9.1-2.el9.x86_64.rpm 12 MB/s | 309 kB 00:00 2024-09-07T08:09:58.069 INFO:teuthology.orchestra.run.smithi191.stdout:(20/30): libarrow-9.0.0-11.el9.x86_64.rpm 41 MB/s | 4.4 MB 00:00 2024-09-07T08:09:58.094 INFO:teuthology.orchestra.run.smithi191.stdout:(21/30): lttng-ust-2.12.0-6.el9.x86_64.rpm 354 kB/s | 292 kB 00:00 2024-09-07T08:09:58.120 INFO:teuthology.orchestra.run.smithi191.stdout:(22/30): libarrow-doc-9.0.0-11.el9.noarch.rpm 517 kB/s | 26 kB 00:00 2024-09-07T08:09:58.162 INFO:teuthology.orchestra.run.smithi191.stdout:(23/30): librdkafka-1.6.1-102.el9.x86_64.rpm 690 kB/s | 662 kB 00:00 2024-09-07T08:09:58.187 INFO:teuthology.orchestra.run.smithi191.stdout:(24/30): libunwind-1.6.2-1.el9.x86_64.rpm 1.1 MB/s | 67 kB 00:00 2024-09-07T08:09:58.221 INFO:teuthology.orchestra.run.smithi191.stdout:(25/30): liboath-2.6.7-2.el9.x86_64.rpm 386 kB/s | 49 kB 00:00 2024-09-07T08:09:58.254 INFO:teuthology.orchestra.run.smithi191.stdout:(26/30): re2-20211101-20.el9.x86_64.rpm 3.1 MB/s | 191 kB 00:00 2024-09-07T08:09:58.313 INFO:teuthology.orchestra.run.smithi191.stdout:(27/30): thrift-0.15.0-2.el9.x86_64.rpm 18 MB/s | 1.6 MB 00:00 2024-09-07T08:09:58.371 INFO:teuthology.orchestra.run.smithi191.stdout:(28/30): parquet-libs-9.0.0-11.el9.x86_64.rpm 3.9 MB/s | 839 kB 00:00 2024-09-07T08:09:58.730 INFO:teuthology.orchestra.run.smithi191.stdout:(29/30): librados2-18.2.4-812.g03cef208.el9.x86 7.0 MB/s | 3.3 MB 00:00 2024-09-07T08:09:58.822 INFO:teuthology.orchestra.run.smithi191.stdout:(30/30): librbd1-18.2.4-812.g03cef208.el9.x86_6 5.9 MB/s | 3.0 MB 00:00 2024-09-07T08:09:58.828 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:09:58.829 INFO:teuthology.orchestra.run.smithi191.stdout:Total 14 MB/s | 53 MB 00:03 2024-09-07T08:09:58.905 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-07T08:09:58.941 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-07T08:09:58.941 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-07T08:09:59.211 INFO:teuthology.orchestra.run.smithi018.stdout:Dependencies resolved. 2024-09-07T08:09:59.213 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:09:59.213 INFO:teuthology.orchestra.run.smithi018.stdout: Package Arch Version Repository Size 2024-09-07T08:09:59.213 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:09:59.213 INFO:teuthology.orchestra.run.smithi018.stdout:Installing: 2024-09-07T08:09:59.213 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-radosgw x86_64 2:18.2.4-812.g03cef208.el9 ceph 7.7 M 2024-09-07T08:09:59.213 INFO:teuthology.orchestra.run.smithi018.stdout:Upgrading: 2024-09-07T08:09:59.213 INFO:teuthology.orchestra.run.smithi018.stdout: librados2 x86_64 2:18.2.4-812.g03cef208.el9 ceph 3.3 M 2024-09-07T08:09:59.214 INFO:teuthology.orchestra.run.smithi018.stdout: librbd1 x86_64 2:18.2.4-812.g03cef208.el9 ceph 3.0 M 2024-09-07T08:09:59.214 INFO:teuthology.orchestra.run.smithi018.stdout:Installing dependencies: 2024-09-07T08:09:59.214 INFO:teuthology.orchestra.run.smithi018.stdout: boost-program-options x86_64 1.75.0-8.el9 appstream 107 k 2024-09-07T08:09:59.214 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-base x86_64 2:18.2.4-812.g03cef208.el9 ceph 5.1 M 2024-09-07T08:09:59.214 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-common x86_64 2:18.2.4-812.g03cef208.el9 ceph 18 M 2024-09-07T08:09:59.214 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-selinux x86_64 2:18.2.4-812.g03cef208.el9 ceph 25 k 2024-09-07T08:09:59.214 INFO:teuthology.orchestra.run.smithi018.stdout: fmt x86_64 8.1.1-5.el9 epel 111 k 2024-09-07T08:09:59.214 INFO:teuthology.orchestra.run.smithi018.stdout: gperftools-libs x86_64 2.9.1-2.el9 epel 309 k 2024-09-07T08:09:59.214 INFO:teuthology.orchestra.run.smithi018.stdout: libarrow x86_64 9.0.0-11.el9 epel 4.4 M 2024-09-07T08:09:59.214 INFO:teuthology.orchestra.run.smithi018.stdout: libarrow-doc noarch 9.0.0-11.el9 epel 26 k 2024-09-07T08:09:59.214 INFO:teuthology.orchestra.run.smithi018.stdout: libcephfs2 x86_64 2:18.2.4-812.g03cef208.el9 ceph 711 k 2024-09-07T08:09:59.214 INFO:teuthology.orchestra.run.smithi018.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-09-07T08:09:59.214 INFO:teuthology.orchestra.run.smithi018.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-09-07T08:09:59.215 INFO:teuthology.orchestra.run.smithi018.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-09-07T08:09:59.215 INFO:teuthology.orchestra.run.smithi018.stdout: libradosstriper1 x86_64 2:18.2.4-812.g03cef208.el9 ceph 477 k 2024-09-07T08:09:59.215 INFO:teuthology.orchestra.run.smithi018.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-09-07T08:09:59.215 INFO:teuthology.orchestra.run.smithi018.stdout: librgw2 x86_64 2:18.2.4-812.g03cef208.el9 ceph 4.5 M 2024-09-07T08:09:59.215 INFO:teuthology.orchestra.run.smithi018.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-09-07T08:09:59.215 INFO:teuthology.orchestra.run.smithi018.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-09-07T08:09:59.215 INFO:teuthology.orchestra.run.smithi018.stdout: parquet-libs x86_64 9.0.0-11.el9 epel 839 k 2024-09-07T08:09:59.215 INFO:teuthology.orchestra.run.smithi018.stdout: python3-ceph-argparse x86_64 2:18.2.4-812.g03cef208.el9 ceph 45 k 2024-09-07T08:09:59.215 INFO:teuthology.orchestra.run.smithi018.stdout: python3-ceph-common x86_64 2:18.2.4-812.g03cef208.el9 ceph 129 k 2024-09-07T08:09:59.215 INFO:teuthology.orchestra.run.smithi018.stdout: python3-cephfs x86_64 2:18.2.4-812.g03cef208.el9 ceph 162 k 2024-09-07T08:09:59.215 INFO:teuthology.orchestra.run.smithi018.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-09-07T08:09:59.215 INFO:teuthology.orchestra.run.smithi018.stdout: python3-rados x86_64 2:18.2.4-812.g03cef208.el9 ceph 320 k 2024-09-07T08:09:59.215 INFO:teuthology.orchestra.run.smithi018.stdout: python3-rbd x86_64 2:18.2.4-812.g03cef208.el9 ceph 300 k 2024-09-07T08:09:59.215 INFO:teuthology.orchestra.run.smithi018.stdout: python3-rgw x86_64 2:18.2.4-812.g03cef208.el9 ceph 99 k 2024-09-07T08:09:59.216 INFO:teuthology.orchestra.run.smithi018.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2024-09-07T08:09:59.216 INFO:teuthology.orchestra.run.smithi018.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-09-07T08:09:59.216 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:09:59.216 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction Summary 2024-09-07T08:09:59.216 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:09:59.216 INFO:teuthology.orchestra.run.smithi018.stdout:Install 28 Packages 2024-09-07T08:09:59.216 INFO:teuthology.orchestra.run.smithi018.stdout:Upgrade 2 Packages 2024-09-07T08:09:59.216 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:09:59.217 INFO:teuthology.orchestra.run.smithi018.stdout:Total download size: 53 M 2024-09-07T08:09:59.217 INFO:teuthology.orchestra.run.smithi018.stdout:Downloading Packages: 2024-09-07T08:09:59.369 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-07T08:09:59.369 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-07T08:10:00.137 INFO:teuthology.orchestra.run.smithi018.stdout:(1/30): ceph-base-18.2.4-812.g03cef208.el9.x86_ 6.9 MB/s | 5.1 MB 00:00 2024-09-07T08:10:00.212 INFO:teuthology.orchestra.run.smithi018.stdout:(2/30): ceph-selinux-18.2.4-812.g03cef208.el9.x 336 kB/s | 25 kB 00:00 2024-09-07T08:10:00.320 INFO:teuthology.orchestra.run.smithi018.stdout:(3/30): libcephfs2-18.2.4-812.g03cef208.el9.x86 6.4 MB/s | 711 kB 00:00 2024-09-07T08:10:00.429 INFO:teuthology.orchestra.run.smithi018.stdout:(4/30): libradosstriper1-18.2.4-812.g03cef208.e 4.3 MB/s | 477 kB 00:00 2024-09-07T08:10:00.688 INFO:teuthology.orchestra.run.smithi018.stdout:(5/30): librgw2-18.2.4-812.g03cef208.el9.x86_64 17 MB/s | 4.5 MB 00:00 2024-09-07T08:10:00.693 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-07T08:10:00.763 INFO:teuthology.orchestra.run.smithi018.stdout:(6/30): python3-ceph-argparse-18.2.4-812.g03cef 602 kB/s | 45 kB 00:00 2024-09-07T08:10:00.764 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/32 2024-09-07T08:10:00.793 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/32 2024-09-07T08:10:00.851 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/32 2024-09-07T08:10:00.868 INFO:teuthology.orchestra.run.smithi090.stdout:lab-extras 42 kB/s | 1.7 kB 00:00 2024-09-07T08:10:00.947 INFO:teuthology.orchestra.run.smithi018.stdout:(7/30): ceph-common-18.2.4-812.g03cef208.el9.x8 12 MB/s | 18 MB 00:01 2024-09-07T08:10:00.972 INFO:teuthology.orchestra.run.smithi018.stdout:(8/30): python3-ceph-common-18.2.4-812.g03cef20 620 kB/s | 129 kB 00:00 2024-09-07T08:10:01.022 INFO:teuthology.orchestra.run.smithi018.stdout:(9/30): python3-cephfs-18.2.4-812.g03cef208.el9 2.1 MB/s | 162 kB 00:00 2024-09-07T08:10:01.073 INFO:teuthology.orchestra.run.smithi018.stdout:(10/30): python3-rados-18.2.4-812.g03cef208.el9 3.1 MB/s | 320 kB 00:00 2024-09-07T08:10:01.098 INFO:teuthology.orchestra.run.smithi018.stdout:(11/30): python3-rbd-18.2.4-812.g03cef208.el9.x 3.9 MB/s | 300 kB 00:00 2024-09-07T08:10:01.148 INFO:teuthology.orchestra.run.smithi018.stdout:(12/30): python3-rgw-18.2.4-812.g03cef208.el9.x 1.3 MB/s | 99 kB 00:00 2024-09-07T08:10:01.243 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : thrift-0.15.0-2.el9.x86_64 4/32 2024-09-07T08:10:01.290 INFO:teuthology.orchestra.run.smithi018.stdout:(13/30): boost-program-options-1.75.0-8.el9.x86 557 kB/s | 107 kB 00:00 2024-09-07T08:10:01.301 INFO:teuthology.orchestra.run.smithi191.stdout: Upgrading : librados2-2:18.2.4-812.g03cef208.el9.x86_64 5/32 2024-09-07T08:10:01.315 INFO:teuthology.orchestra.run.smithi018.stdout:(14/30): libpmemobj-1.12.1-1.el9.x86_64.rpm 960 kB/s | 160 kB 00:00 2024-09-07T08:10:01.392 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: librados2-2:18.2.4-812.g03cef208.el9.x86_64 5/32 2024-09-07T08:10:01.399 INFO:teuthology.orchestra.run.smithi018.stdout:(15/30): ceph-radosgw-18.2.4-812.g03cef208.el9. 3.9 MB/s | 7.7 MB 00:01 2024-09-07T08:10:01.424 INFO:teuthology.orchestra.run.smithi018.stdout:(16/30): librabbitmq-0.11.0-7.el9.x86_64.rpm 338 kB/s | 45 kB 00:00 2024-09-07T08:10:01.466 INFO:teuthology.orchestra.run.smithi018.stdout:(17/30): librdkafka-1.6.1-102.el9.x86_64.rpm 4.3 MB/s | 662 kB 00:00 2024-09-07T08:10:01.476 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-rados-2:18.2.4-812.g03cef208.el9.x86_64 6/32 2024-09-07T08:10:01.492 INFO:teuthology.orchestra.run.smithi018.stdout:(18/30): python3-prettytable-0.7.2-27.el9.noarc 631 kB/s | 42 kB 00:00 2024-09-07T08:10:01.511 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : libcephfs2-2:18.2.4-812.g03cef208.el9.x86_64 7/32 2024-09-07T08:10:01.534 INFO:teuthology.orchestra.run.smithi018.stdout:(19/30): fmt-8.1.1-5.el9.x86_64.rpm 1.6 MB/s | 111 kB 00:00 2024-09-07T08:10:01.573 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: libcephfs2-2:18.2.4-812.g03cef208.el9.x86_64 7/32 2024-09-07T08:10:01.576 INFO:teuthology.orchestra.run.smithi018.stdout:(20/30): gperftools-libs-2.9.1-2.el9.x86_64.rpm 3.6 MB/s | 309 kB 00:00 2024-09-07T08:10:01.601 INFO:teuthology.orchestra.run.smithi018.stdout:(21/30): libarrow-doc-9.0.0-11.el9.noarch.rpm 1.0 MB/s | 26 kB 00:00 2024-09-07T08:10:01.610 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : liboath-2.6.7-2.el9.x86_64 8/32 2024-09-07T08:10:01.635 INFO:teuthology.orchestra.run.smithi018.stdout:(22/30): lttng-ust-2.12.0-6.el9.x86_64.rpm 1.2 MB/s | 292 kB 00:00 2024-09-07T08:10:01.653 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-ceph-argparse-2:18.2.4-812.g03cef208.el9.x 9/32 2024-09-07T08:10:01.660 INFO:teuthology.orchestra.run.smithi018.stdout:(23/30): liboath-2.6.7-2.el9.x86_64.rpm 828 kB/s | 49 kB 00:00 2024-09-07T08:10:01.702 INFO:teuthology.orchestra.run.smithi018.stdout:(24/30): libunwind-1.6.2-1.el9.x86_64.rpm 1.0 MB/s | 67 kB 00:00 2024-09-07T08:10:01.736 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-cephfs-2:18.2.4-812.g03cef208.el9.x86_64 10/32 2024-09-07T08:10:01.744 INFO:teuthology.orchestra.run.smithi018.stdout:(25/30): parquet-libs-9.0.0-11.el9.x86_64.rpm 11 MB/s | 839 kB 00:00 2024-09-07T08:10:01.763 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : libradosstriper1-2:18.2.4-812.g03cef208.el9.x86_64 11/32 2024-09-07T08:10:01.769 INFO:teuthology.orchestra.run.smithi018.stdout:(26/30): re2-20211101-20.el9.x86_64.rpm 2.8 MB/s | 191 kB 00:00 2024-09-07T08:10:01.829 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: libradosstriper1-2:18.2.4-812.g03cef208.el9.x86_64 11/32 2024-09-07T08:10:01.836 INFO:teuthology.orchestra.run.smithi018.stdout:(27/30): thrift-0.15.0-2.el9.x86_64.rpm 17 MB/s | 1.6 MB 00:00 2024-09-07T08:10:01.911 INFO:teuthology.orchestra.run.smithi018.stdout:(28/30): libarrow-9.0.0-11.el9.x86_64.rpm 12 MB/s | 4.4 MB 00:00 2024-09-07T08:10:01.939 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : re2-1:20211101-20.el9.x86_64 12/32 2024-09-07T08:10:01.970 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : libarrow-9.0.0-11.el9.x86_64 13/32 2024-09-07T08:10:02.010 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 14/32 2024-09-07T08:10:02.044 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : gperftools-libs-2.9.1-2.el9.x86_64 15/32 2024-09-07T08:10:02.070 INFO:teuthology.orchestra.run.smithi018.stdout:(29/30): librados2-18.2.4-812.g03cef208.el9.x86 11 MB/s | 3.3 MB 00:00 2024-09-07T08:10:02.071 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : libarrow-doc-9.0.0-11.el9.noarch 16/32 2024-09-07T08:10:02.107 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : fmt-8.1.1-5.el9.x86_64 17/32 2024-09-07T08:10:02.139 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 18/32 2024-09-07T08:10:02.228 INFO:teuthology.orchestra.run.smithi018.stdout:(30/30): librbd1-18.2.4-812.g03cef208.el9.x86_6 7.7 MB/s | 3.0 MB 00:00 2024-09-07T08:10:02.234 INFO:teuthology.orchestra.run.smithi018.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:10:02.234 INFO:teuthology.orchestra.run.smithi018.stdout:Total 18 MB/s | 53 MB 00:03 2024-09-07T08:10:02.305 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction check 2024-09-07T08:10:02.345 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction check succeeded. 2024-09-07T08:10:02.345 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction test 2024-09-07T08:10:02.458 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 19/32 2024-09-07T08:10:02.519 INFO:teuthology.orchestra.run.smithi191.stdout: Upgrading : librbd1-2:18.2.4-812.g03cef208.el9.x86_64 20/32 2024-09-07T08:10:02.610 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: librbd1-2:18.2.4-812.g03cef208.el9.x86_64 20/32 2024-09-07T08:10:02.641 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-rbd-2:18.2.4-812.g03cef208.el9.x86_64 21/32 2024-09-07T08:10:02.677 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 22/32 2024-09-07T08:10:02.790 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction test succeeded. 2024-09-07T08:10:02.790 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction 2024-09-07T08:10:03.097 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : parquet-libs-9.0.0-11.el9.x86_64 23/32 2024-09-07T08:10:03.130 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : librgw2-2:18.2.4-812.g03cef208.el9.x86_64 24/32 2024-09-07T08:10:03.181 INFO:teuthology.orchestra.run.smithi090.stdout:Dependencies resolved. 2024-09-07T08:10:03.183 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:10:03.183 INFO:teuthology.orchestra.run.smithi090.stdout: Package Arch Version Repository Size 2024-09-07T08:10:03.183 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:10:03.183 INFO:teuthology.orchestra.run.smithi090.stdout:Installing: 2024-09-07T08:10:03.183 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-radosgw x86_64 2:18.2.4-812.g03cef208.el9 ceph 7.7 M 2024-09-07T08:10:03.183 INFO:teuthology.orchestra.run.smithi090.stdout:Upgrading: 2024-09-07T08:10:03.183 INFO:teuthology.orchestra.run.smithi090.stdout: librados2 x86_64 2:18.2.4-812.g03cef208.el9 ceph 3.3 M 2024-09-07T08:10:03.184 INFO:teuthology.orchestra.run.smithi090.stdout: librbd1 x86_64 2:18.2.4-812.g03cef208.el9 ceph 3.0 M 2024-09-07T08:10:03.184 INFO:teuthology.orchestra.run.smithi090.stdout:Installing dependencies: 2024-09-07T08:10:03.184 INFO:teuthology.orchestra.run.smithi090.stdout: boost-program-options x86_64 1.75.0-8.el9 appstream 107 k 2024-09-07T08:10:03.184 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-base x86_64 2:18.2.4-812.g03cef208.el9 ceph 5.1 M 2024-09-07T08:10:03.184 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-common x86_64 2:18.2.4-812.g03cef208.el9 ceph 18 M 2024-09-07T08:10:03.184 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-selinux x86_64 2:18.2.4-812.g03cef208.el9 ceph 25 k 2024-09-07T08:10:03.184 INFO:teuthology.orchestra.run.smithi090.stdout: fmt x86_64 8.1.1-5.el9 epel 111 k 2024-09-07T08:10:03.184 INFO:teuthology.orchestra.run.smithi090.stdout: gperftools-libs x86_64 2.9.1-2.el9 epel 309 k 2024-09-07T08:10:03.184 INFO:teuthology.orchestra.run.smithi090.stdout: libarrow x86_64 9.0.0-11.el9 epel 4.4 M 2024-09-07T08:10:03.184 INFO:teuthology.orchestra.run.smithi090.stdout: libarrow-doc noarch 9.0.0-11.el9 epel 26 k 2024-09-07T08:10:03.184 INFO:teuthology.orchestra.run.smithi090.stdout: libcephfs2 x86_64 2:18.2.4-812.g03cef208.el9 ceph 711 k 2024-09-07T08:10:03.185 INFO:teuthology.orchestra.run.smithi090.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-09-07T08:10:03.185 INFO:teuthology.orchestra.run.smithi090.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-09-07T08:10:03.185 INFO:teuthology.orchestra.run.smithi090.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-09-07T08:10:03.185 INFO:teuthology.orchestra.run.smithi090.stdout: libradosstriper1 x86_64 2:18.2.4-812.g03cef208.el9 ceph 477 k 2024-09-07T08:10:03.185 INFO:teuthology.orchestra.run.smithi090.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-09-07T08:10:03.185 INFO:teuthology.orchestra.run.smithi090.stdout: librgw2 x86_64 2:18.2.4-812.g03cef208.el9 ceph 4.5 M 2024-09-07T08:10:03.185 INFO:teuthology.orchestra.run.smithi090.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-09-07T08:10:03.185 INFO:teuthology.orchestra.run.smithi090.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-09-07T08:10:03.185 INFO:teuthology.orchestra.run.smithi090.stdout: parquet-libs x86_64 9.0.0-11.el9 epel 839 k 2024-09-07T08:10:03.185 INFO:teuthology.orchestra.run.smithi090.stdout: python3-ceph-argparse x86_64 2:18.2.4-812.g03cef208.el9 ceph 45 k 2024-09-07T08:10:03.185 INFO:teuthology.orchestra.run.smithi090.stdout: python3-ceph-common x86_64 2:18.2.4-812.g03cef208.el9 ceph 129 k 2024-09-07T08:10:03.185 INFO:teuthology.orchestra.run.smithi090.stdout: python3-cephfs x86_64 2:18.2.4-812.g03cef208.el9 ceph 162 k 2024-09-07T08:10:03.185 INFO:teuthology.orchestra.run.smithi090.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-09-07T08:10:03.185 INFO:teuthology.orchestra.run.smithi090.stdout: python3-rados x86_64 2:18.2.4-812.g03cef208.el9 ceph 320 k 2024-09-07T08:10:03.186 INFO:teuthology.orchestra.run.smithi090.stdout: python3-rbd x86_64 2:18.2.4-812.g03cef208.el9 ceph 300 k 2024-09-07T08:10:03.186 INFO:teuthology.orchestra.run.smithi090.stdout: python3-rgw x86_64 2:18.2.4-812.g03cef208.el9 ceph 99 k 2024-09-07T08:10:03.186 INFO:teuthology.orchestra.run.smithi090.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2024-09-07T08:10:03.186 INFO:teuthology.orchestra.run.smithi090.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-09-07T08:10:03.186 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:10:03.186 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction Summary 2024-09-07T08:10:03.186 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:10:03.186 INFO:teuthology.orchestra.run.smithi090.stdout:Install 28 Packages 2024-09-07T08:10:03.186 INFO:teuthology.orchestra.run.smithi090.stdout:Upgrade 2 Packages 2024-09-07T08:10:03.186 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:10:03.187 INFO:teuthology.orchestra.run.smithi090.stdout:Total download size: 53 M 2024-09-07T08:10:03.187 INFO:teuthology.orchestra.run.smithi090.stdout:Downloading Packages: 2024-09-07T08:10:03.201 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: librgw2-2:18.2.4-812.g03cef208.el9.x86_64 24/32 2024-09-07T08:10:03.269 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-rgw-2:18.2.4-812.g03cef208.el9.x86_64 25/32 2024-09-07T08:10:03.299 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-ceph-common-2:18.2.4-812.g03cef208.el9.x86 26/32 2024-09-07T08:10:04.080 INFO:teuthology.orchestra.run.smithi090.stdout:(1/30): ceph-base-18.2.4-812.g03cef208.el9.x86_ 6.2 MB/s | 5.1 MB 00:00 2024-09-07T08:10:04.138 INFO:teuthology.orchestra.run.smithi018.stdout: Preparing : 1/1 2024-09-07T08:10:04.145 INFO:teuthology.orchestra.run.smithi090.stdout:(2/30): ceph-selinux-18.2.4-812.g03cef208.el9.x 378 kB/s | 25 kB 00:00 2024-09-07T08:10:04.230 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/32 2024-09-07T08:10:04.254 INFO:teuthology.orchestra.run.smithi090.stdout:(3/30): ceph-radosgw-18.2.4-812.g03cef208.el9.x 7.8 MB/s | 7.7 MB 00:00 2024-09-07T08:10:04.258 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/32 2024-09-07T08:10:04.289 INFO:teuthology.orchestra.run.smithi090.stdout:(4/30): libcephfs2-18.2.4-812.g03cef208.el9.x86 4.8 MB/s | 711 kB 00:00 2024-09-07T08:10:04.317 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/32 2024-09-07T08:10:04.347 INFO:teuthology.orchestra.run.smithi090.stdout:(5/30): libradosstriper1-18.2.4-812.g03cef208.e 5.0 MB/s | 477 kB 00:00 2024-09-07T08:10:04.431 INFO:teuthology.orchestra.run.smithi090.stdout:(6/30): python3-ceph-argparse-18.2.4-812.g03cef 541 kB/s | 45 kB 00:00 2024-09-07T08:10:04.531 INFO:teuthology.orchestra.run.smithi090.stdout:(7/30): python3-ceph-common-18.2.4-812.g03cef20 1.3 MB/s | 129 kB 00:00 2024-09-07T08:10:04.607 INFO:teuthology.orchestra.run.smithi090.stdout:(8/30): librgw2-18.2.4-812.g03cef208.el9.x86_64 14 MB/s | 4.5 MB 00:00 2024-09-07T08:10:04.632 INFO:teuthology.orchestra.run.smithi090.stdout:(9/30): python3-cephfs-18.2.4-812.g03cef208.el9 1.6 MB/s | 162 kB 00:00 2024-09-07T08:10:04.704 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : thrift-0.15.0-2.el9.x86_64 4/32 2024-09-07T08:10:04.750 INFO:teuthology.orchestra.run.smithi018.stdout: Upgrading : librados2-2:18.2.4-812.g03cef208.el9.x86_64 5/32 2024-09-07T08:10:04.842 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: librados2-2:18.2.4-812.g03cef208.el9.x86_64 5/32 2024-09-07T08:10:04.849 INFO:teuthology.orchestra.run.smithi090.stdout:(10/30): ceph-common-18.2.4-812.g03cef208.el9.x 12 MB/s | 18 MB 00:01 2024-09-07T08:10:04.874 INFO:teuthology.orchestra.run.smithi090.stdout:(11/30): python3-rbd-18.2.4-812.g03cef208.el9.x 1.2 MB/s | 300 kB 00:00 2024-09-07T08:10:04.899 INFO:teuthology.orchestra.run.smithi090.stdout:(12/30): python3-rados-18.2.4-812.g03cef208.el9 1.1 MB/s | 320 kB 00:00 2024-09-07T08:10:04.924 INFO:teuthology.orchestra.run.smithi090.stdout:(13/30): python3-rgw-18.2.4-812.g03cef208.el9.x 1.3 MB/s | 99 kB 00:00 2024-09-07T08:10:04.928 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-rados-2:18.2.4-812.g03cef208.el9.x86_64 6/32 2024-09-07T08:10:04.984 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : libcephfs2-2:18.2.4-812.g03cef208.el9.x86_64 7/32 2024-09-07T08:10:05.030 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: libcephfs2-2:18.2.4-812.g03cef208.el9.x86_64 7/32 2024-09-07T08:10:05.034 INFO:teuthology.orchestra.run.smithi090.stdout:(14/30): librabbitmq-0.11.0-7.el9.x86_64.rpm 417 kB/s | 45 kB 00:00 2024-09-07T08:10:05.059 INFO:teuthology.orchestra.run.smithi090.stdout:(15/30): boost-program-options-1.75.0-8.el9.x86 580 kB/s | 107 kB 00:00 2024-09-07T08:10:05.068 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : liboath-2.6.7-2.el9.x86_64 8/32 2024-09-07T08:10:05.084 INFO:teuthology.orchestra.run.smithi090.stdout:(16/30): libpmemobj-1.12.1-1.el9.x86_64.rpm 869 kB/s | 160 kB 00:00 2024-09-07T08:10:05.129 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-ceph-argparse-2:18.2.4-812.g03cef208.el9.x 9/32 2024-09-07T08:10:05.143 INFO:teuthology.orchestra.run.smithi090.stdout:(17/30): python3-prettytable-0.7.2-27.el9.noarc 723 kB/s | 42 kB 00:00 2024-09-07T08:10:05.185 INFO:teuthology.orchestra.run.smithi090.stdout:(18/30): fmt-8.1.1-5.el9.x86_64.rpm 2.6 MB/s | 111 kB 00:00 2024-09-07T08:10:05.196 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-cephfs-2:18.2.4-812.g03cef208.el9.x86_64 10/32 2024-09-07T08:10:05.218 INFO:teuthology.orchestra.run.smithi090.stdout:(19/30): lttng-ust-2.12.0-6.el9.x86_64.rpm 1.8 MB/s | 292 kB 00:00 2024-09-07T08:10:05.220 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : libradosstriper1-2:18.2.4-812.g03cef208.el9.x86_64 11/32 2024-09-07T08:10:05.260 INFO:teuthology.orchestra.run.smithi090.stdout:(20/30): gperftools-libs-2.9.1-2.el9.x86_64.rpm 4.0 MB/s | 309 kB 00:00 2024-09-07T08:10:05.286 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: libradosstriper1-2:18.2.4-812.g03cef208.el9.x86_64 11/32 2024-09-07T08:10:05.294 INFO:teuthology.orchestra.run.smithi090.stdout:(21/30): librdkafka-1.6.1-102.el9.x86_64.rpm 2.5 MB/s | 662 kB 00:00 2024-09-07T08:10:05.311 INFO:teuthology.orchestra.run.smithi090.stdout:(22/30): libarrow-doc-9.0.0-11.el9.noarch.rpm 534 kB/s | 26 kB 00:00 2024-09-07T08:10:05.345 INFO:teuthology.orchestra.run.smithi090.stdout:(23/30): libunwind-1.6.2-1.el9.x86_64.rpm 2.5 MB/s | 67 kB 00:00 2024-09-07T08:10:05.370 INFO:teuthology.orchestra.run.smithi090.stdout:(24/30): liboath-2.6.7-2.el9.x86_64.rpm 643 kB/s | 49 kB 00:00 2024-09-07T08:10:05.372 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-common-2:18.2.4-812.g03cef208.el9.x86_64 27/32 2024-09-07T08:10:05.397 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : re2-1:20211101-20.el9.x86_64 12/32 2024-09-07T08:10:05.404 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-common-2:18.2.4-812.g03cef208.el9.x86_64 27/32 2024-09-07T08:10:05.412 INFO:teuthology.orchestra.run.smithi090.stdout:(25/30): parquet-libs-9.0.0-11.el9.x86_64.rpm 13 MB/s | 839 kB 00:00 2024-09-07T08:10:05.436 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : libarrow-9.0.0-11.el9.x86_64 13/32 2024-09-07T08:10:05.445 INFO:teuthology.orchestra.run.smithi090.stdout:(26/30): re2-20211101-20.el9.x86_64.rpm 2.5 MB/s | 191 kB 00:00 2024-09-07T08:10:05.476 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 14/32 2024-09-07T08:10:05.518 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : gperftools-libs-2.9.1-2.el9.x86_64 15/32 2024-09-07T08:10:05.521 INFO:teuthology.orchestra.run.smithi090.stdout:(27/30): thrift-0.15.0-2.el9.x86_64.rpm 15 MB/s | 1.6 MB 00:00 2024-09-07T08:10:05.545 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : libarrow-doc-9.0.0-11.el9.noarch 16/32 2024-09-07T08:10:05.581 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : fmt-8.1.1-5.el9.x86_64 17/32 2024-09-07T08:10:05.596 INFO:teuthology.orchestra.run.smithi090.stdout:(28/30): libarrow-9.0.0-11.el9.x86_64.rpm 12 MB/s | 4.4 MB 00:00 2024-09-07T08:10:05.622 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 18/32 2024-09-07T08:10:05.747 INFO:teuthology.orchestra.run.smithi090.stdout:(29/30): librados2-18.2.4-812.g03cef208.el9.x86 11 MB/s | 3.3 MB 00:00 2024-09-07T08:10:05.815 INFO:teuthology.orchestra.run.smithi090.stdout:(30/30): librbd1-18.2.4-812.g03cef208.el9.x86_6 10 MB/s | 3.0 MB 00:00 2024-09-07T08:10:05.819 INFO:teuthology.orchestra.run.smithi090.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:10:05.820 INFO:teuthology.orchestra.run.smithi090.stdout:Total 20 MB/s | 53 MB 00:02 2024-09-07T08:10:05.891 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction check 2024-09-07T08:10:05.924 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-common-2:18.2.4-812.g03cef208.el9.x86_64 27/32 2024-09-07T08:10:05.925 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction check succeeded. 2024-09-07T08:10:05.925 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction test 2024-09-07T08:10:05.941 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 19/32 2024-09-07T08:10:05.965 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-base-2:18.2.4-812.g03cef208.el9.x86_64 28/32 2024-09-07T08:10:05.985 INFO:teuthology.orchestra.run.smithi018.stdout: Upgrading : librbd1-2:18.2.4-812.g03cef208.el9.x86_64 20/32 2024-09-07T08:10:06.058 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-base-2:18.2.4-812.g03cef208.el9.x86_64 28/32 2024-09-07T08:10:06.059 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-07T08:10:06.059 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-07T08:10:06.059 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:10:06.060 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: librbd1-2:18.2.4-812.g03cef208.el9.x86_64 20/32 2024-09-07T08:10:06.090 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-rbd-2:18.2.4-812.g03cef208.el9.x86_64 21/32 2024-09-07T08:10:06.091 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-selinux-2:18.2.4-812.g03cef208.el9.x86_64 29/32 2024-09-07T08:10:06.259 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 22/32 2024-09-07T08:10:06.352 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction test succeeded. 2024-09-07T08:10:06.353 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction 2024-09-07T08:10:06.750 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : parquet-libs-9.0.0-11.el9.x86_64 23/32 2024-09-07T08:10:06.771 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : librgw2-2:18.2.4-812.g03cef208.el9.x86_64 24/32 2024-09-07T08:10:06.843 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: librgw2-2:18.2.4-812.g03cef208.el9.x86_64 24/32 2024-09-07T08:10:06.914 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-rgw-2:18.2.4-812.g03cef208.el9.x86_64 25/32 2024-09-07T08:10:06.949 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-ceph-common-2:18.2.4-812.g03cef208.el9.x86 26/32 2024-09-07T08:10:07.663 INFO:teuthology.orchestra.run.smithi090.stdout: Preparing : 1/1 2024-09-07T08:10:07.757 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/32 2024-09-07T08:10:07.795 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/32 2024-09-07T08:10:07.853 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/32 2024-09-07T08:10:08.165 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : thrift-0.15.0-2.el9.x86_64 4/32 2024-09-07T08:10:08.303 INFO:teuthology.orchestra.run.smithi090.stdout: Upgrading : librados2-2:18.2.4-812.g03cef208.el9.x86_64 5/32 2024-09-07T08:10:08.386 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: librados2-2:18.2.4-812.g03cef208.el9.x86_64 5/32 2024-09-07T08:10:08.470 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-rados-2:18.2.4-812.g03cef208.el9.x86_64 6/32 2024-09-07T08:10:08.505 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : libcephfs2-2:18.2.4-812.g03cef208.el9.x86_64 7/32 2024-09-07T08:10:08.568 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: libcephfs2-2:18.2.4-812.g03cef208.el9.x86_64 7/32 2024-09-07T08:10:08.606 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : liboath-2.6.7-2.el9.x86_64 8/32 2024-09-07T08:10:08.650 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-ceph-argparse-2:18.2.4-812.g03cef208.el9.x 9/32 2024-09-07T08:10:08.715 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-cephfs-2:18.2.4-812.g03cef208.el9.x86_64 10/32 2024-09-07T08:10:08.742 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : libradosstriper1-2:18.2.4-812.g03cef208.el9.x86_64 11/32 2024-09-07T08:10:08.808 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: libradosstriper1-2:18.2.4-812.g03cef208.el9.x86_64 11/32 2024-09-07T08:10:08.914 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : re2-1:20211101-20.el9.x86_64 12/32 2024-09-07T08:10:08.949 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : libarrow-9.0.0-11.el9.x86_64 13/32 2024-09-07T08:10:08.992 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 14/32 2024-09-07T08:10:09.023 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : gperftools-libs-2.9.1-2.el9.x86_64 15/32 2024-09-07T08:10:09.051 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : libarrow-doc-9.0.0-11.el9.noarch 16/32 2024-09-07T08:10:09.087 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : fmt-8.1.1-5.el9.x86_64 17/32 2024-09-07T08:10:09.114 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: ceph-common-2:18.2.4-812.g03cef208.el9.x86_64 27/32 2024-09-07T08:10:09.119 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 18/32 2024-09-07T08:10:09.145 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : ceph-common-2:18.2.4-812.g03cef208.el9.x86_64 27/32 2024-09-07T08:10:09.417 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 19/32 2024-09-07T08:10:09.468 INFO:teuthology.orchestra.run.smithi090.stdout: Upgrading : librbd1-2:18.2.4-812.g03cef208.el9.x86_64 20/32 2024-09-07T08:10:09.557 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: librbd1-2:18.2.4-812.g03cef208.el9.x86_64 20/32 2024-09-07T08:10:09.589 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-rbd-2:18.2.4-812.g03cef208.el9.x86_64 21/32 2024-09-07T08:10:09.633 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 22/32 2024-09-07T08:10:09.697 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: ceph-common-2:18.2.4-812.g03cef208.el9.x86_64 27/32 2024-09-07T08:10:09.757 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : ceph-base-2:18.2.4-812.g03cef208.el9.x86_64 28/32 2024-09-07T08:10:09.865 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: ceph-base-2:18.2.4-812.g03cef208.el9.x86_64 28/32 2024-09-07T08:10:09.865 INFO:teuthology.orchestra.run.smithi018.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-09-07T08:10:09.865 INFO:teuthology.orchestra.run.smithi018.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-09-07T08:10:09.865 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:10:09.892 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : ceph-selinux-2:18.2.4-812.g03cef208.el9.x86_64 29/32 2024-09-07T08:10:10.037 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : parquet-libs-9.0.0-11.el9.x86_64 23/32 2024-09-07T08:10:10.062 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : librgw2-2:18.2.4-812.g03cef208.el9.x86_64 24/32 2024-09-07T08:10:10.133 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: librgw2-2:18.2.4-812.g03cef208.el9.x86_64 24/32 2024-09-07T08:10:10.202 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-rgw-2:18.2.4-812.g03cef208.el9.x86_64 25/32 2024-09-07T08:10:10.231 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-ceph-common-2:18.2.4-812.g03cef208.el9.x86 26/32 2024-09-07T08:10:12.343 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: ceph-common-2:18.2.4-812.g03cef208.el9.x86_64 27/32 2024-09-07T08:10:12.389 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : ceph-common-2:18.2.4-812.g03cef208.el9.x86_64 27/32 2024-09-07T08:10:12.911 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: ceph-common-2:18.2.4-812.g03cef208.el9.x86_64 27/32 2024-09-07T08:10:12.961 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : ceph-base-2:18.2.4-812.g03cef208.el9.x86_64 28/32 2024-09-07T08:10:13.050 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: ceph-base-2:18.2.4-812.g03cef208.el9.x86_64 28/32 2024-09-07T08:10:13.050 INFO:teuthology.orchestra.run.smithi090.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-09-07T08:10:13.051 INFO:teuthology.orchestra.run.smithi090.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-09-07T08:10:13.051 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:10:13.088 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : ceph-selinux-2:18.2.4-812.g03cef208.el9.x86_64 29/32 2024-09-07T08:10:16.002 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-selinux-2:18.2.4-812.g03cef208.el9.x86_64 29/32 2024-09-07T08:10:16.002 INFO:teuthology.orchestra.run.smithi191.stdout:skipping the directory /sys 2024-09-07T08:10:16.002 INFO:teuthology.orchestra.run.smithi191.stdout:skipping the directory /proc 2024-09-07T08:10:16.002 INFO:teuthology.orchestra.run.smithi191.stdout:skipping the directory /mnt 2024-09-07T08:10:16.002 INFO:teuthology.orchestra.run.smithi191.stdout:skipping the directory /var/tmp 2024-09-07T08:10:16.002 INFO:teuthology.orchestra.run.smithi191.stdout:skipping the directory /home 2024-09-07T08:10:16.002 INFO:teuthology.orchestra.run.smithi191.stdout:skipping the directory /root 2024-09-07T08:10:16.002 INFO:teuthology.orchestra.run.smithi191.stdout:skipping the directory /tmp 2024-09-07T08:10:16.002 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:10:16.728 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-radosgw-2:18.2.4-812.g03cef208.el9.x86_64 30/32 2024-09-07T08:10:16.753 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-radosgw-2:18.2.4-812.g03cef208.el9.x86_64 30/32 2024-09-07T08:10:16.753 INFO:teuthology.orchestra.run.smithi191.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-07T08:10:16.753 INFO:teuthology.orchestra.run.smithi191.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-09-07T08:10:16.753 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-07T08:10:16.754 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-07T08:10:16.754 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:10:16.755 INFO:teuthology.orchestra.run.smithi191.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 31/32 2024-09-07T08:10:16.839 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 31/32 2024-09-07T08:10:16.839 INFO:teuthology.orchestra.run.smithi191.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 32/32 2024-09-07T08:10:18.015 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 32/32 2024-09-07T08:10:18.016 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-base-2:18.2.4-812.g03cef208.el9.x86_64 1/32 2024-09-07T08:10:18.016 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-common-2:18.2.4-812.g03cef208.el9.x86_64 2/32 2024-09-07T08:10:18.016 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-radosgw-2:18.2.4-812.g03cef208.el9.x86_64 3/32 2024-09-07T08:10:18.016 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-selinux-2:18.2.4-812.g03cef208.el9.x86_64 4/32 2024-09-07T08:10:18.016 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : libcephfs2-2:18.2.4-812.g03cef208.el9.x86_64 5/32 2024-09-07T08:10:18.016 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : libradosstriper1-2:18.2.4-812.g03cef208.el9.x86_64 6/32 2024-09-07T08:10:18.016 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : librgw2-2:18.2.4-812.g03cef208.el9.x86_64 7/32 2024-09-07T08:10:18.016 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-ceph-argparse-2:18.2.4-812.g03cef208.el9.x 8/32 2024-09-07T08:10:18.016 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-ceph-common-2:18.2.4-812.g03cef208.el9.x86 9/32 2024-09-07T08:10:18.016 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-cephfs-2:18.2.4-812.g03cef208.el9.x86_64 10/32 2024-09-07T08:10:18.016 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-rados-2:18.2.4-812.g03cef208.el9.x86_64 11/32 2024-09-07T08:10:18.016 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-rbd-2:18.2.4-812.g03cef208.el9.x86_64 12/32 2024-09-07T08:10:18.016 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-rgw-2:18.2.4-812.g03cef208.el9.x86_64 13/32 2024-09-07T08:10:18.017 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/32 2024-09-07T08:10:18.017 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/32 2024-09-07T08:10:18.017 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/32 2024-09-07T08:10:18.017 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/32 2024-09-07T08:10:18.017 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/32 2024-09-07T08:10:18.017 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/32 2024-09-07T08:10:18.017 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : fmt-8.1.1-5.el9.x86_64 20/32 2024-09-07T08:10:18.017 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : gperftools-libs-2.9.1-2.el9.x86_64 21/32 2024-09-07T08:10:18.017 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : libarrow-9.0.0-11.el9.x86_64 22/32 2024-09-07T08:10:18.017 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : libarrow-doc-9.0.0-11.el9.noarch 23/32 2024-09-07T08:10:18.017 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 24/32 2024-09-07T08:10:18.017 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 25/32 2024-09-07T08:10:18.017 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : parquet-libs-9.0.0-11.el9.x86_64 26/32 2024-09-07T08:10:18.018 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : re2-1:20211101-20.el9.x86_64 27/32 2024-09-07T08:10:18.018 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 28/32 2024-09-07T08:10:18.018 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : librados2-2:18.2.4-812.g03cef208.el9.x86_64 29/32 2024-09-07T08:10:18.018 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 30/32 2024-09-07T08:10:18.018 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : librbd1-2:18.2.4-812.g03cef208.el9.x86_64 31/32 2024-09-07T08:10:18.976 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 32/32 2024-09-07T08:10:18.976 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:10:18.976 INFO:teuthology.orchestra.run.smithi191.stdout:Upgraded: 2024-09-07T08:10:18.976 INFO:teuthology.orchestra.run.smithi191.stdout: librados2-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:18.976 INFO:teuthology.orchestra.run.smithi191.stdout: librbd1-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:18.976 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-07T08:10:18.976 INFO:teuthology.orchestra.run.smithi191.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-09-07T08:10:18.976 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-base-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:18.977 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-common-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:18.977 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-radosgw-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:18.977 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-selinux-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:18.977 INFO:teuthology.orchestra.run.smithi191.stdout: fmt-8.1.1-5.el9.x86_64 2024-09-07T08:10:18.977 INFO:teuthology.orchestra.run.smithi191.stdout: gperftools-libs-2.9.1-2.el9.x86_64 2024-09-07T08:10:18.977 INFO:teuthology.orchestra.run.smithi191.stdout: libarrow-9.0.0-11.el9.x86_64 2024-09-07T08:10:18.977 INFO:teuthology.orchestra.run.smithi191.stdout: libarrow-doc-9.0.0-11.el9.noarch 2024-09-07T08:10:18.977 INFO:teuthology.orchestra.run.smithi191.stdout: libcephfs2-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:18.977 INFO:teuthology.orchestra.run.smithi191.stdout: liboath-2.6.7-2.el9.x86_64 2024-09-07T08:10:18.977 INFO:teuthology.orchestra.run.smithi191.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-09-07T08:10:18.977 INFO:teuthology.orchestra.run.smithi191.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-09-07T08:10:18.977 INFO:teuthology.orchestra.run.smithi191.stdout: libradosstriper1-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:18.978 INFO:teuthology.orchestra.run.smithi191.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-09-07T08:10:18.978 INFO:teuthology.orchestra.run.smithi191.stdout: librgw2-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:18.978 INFO:teuthology.orchestra.run.smithi191.stdout: libunwind-1.6.2-1.el9.x86_64 2024-09-07T08:10:18.978 INFO:teuthology.orchestra.run.smithi191.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-09-07T08:10:18.978 INFO:teuthology.orchestra.run.smithi191.stdout: parquet-libs-9.0.0-11.el9.x86_64 2024-09-07T08:10:18.978 INFO:teuthology.orchestra.run.smithi191.stdout: python3-ceph-argparse-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:18.978 INFO:teuthology.orchestra.run.smithi191.stdout: python3-ceph-common-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:18.978 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cephfs-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:18.978 INFO:teuthology.orchestra.run.smithi191.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-09-07T08:10:18.978 INFO:teuthology.orchestra.run.smithi191.stdout: python3-rados-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:18.978 INFO:teuthology.orchestra.run.smithi191.stdout: python3-rbd-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:18.978 INFO:teuthology.orchestra.run.smithi191.stdout: python3-rgw-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:18.978 INFO:teuthology.orchestra.run.smithi191.stdout: re2-1:20211101-20.el9.x86_64 2024-09-07T08:10:18.978 INFO:teuthology.orchestra.run.smithi191.stdout: thrift-0.15.0-2.el9.x86_64 2024-09-07T08:10:18.979 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:10:18.979 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-07T08:10:19.342 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph-test 2024-09-07T08:10:19.904 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:00:27 ago on Sat 07 Sep 2024 08:09:52 AM UTC. 2024-09-07T08:10:20.041 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-07T08:10:20.041 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:10:20.041 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repository Size 2024-09-07T08:10:20.041 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:10:20.041 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-07T08:10:20.041 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-test x86_64 2:18.2.4-812.g03cef208.el9 ceph 40 M 2024-09-07T08:10:20.041 INFO:teuthology.orchestra.run.smithi191.stdout:Installing dependencies: 2024-09-07T08:10:20.042 INFO:teuthology.orchestra.run.smithi191.stdout: libcephsqlite x86_64 2:18.2.4-812.g03cef208.el9 ceph 166 k 2024-09-07T08:10:20.042 INFO:teuthology.orchestra.run.smithi191.stdout: socat x86_64 1.7.4.1-6.el9 appstream 304 k 2024-09-07T08:10:20.042 INFO:teuthology.orchestra.run.smithi191.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-09-07T08:10:20.042 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:10:20.042 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-07T08:10:20.042 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:10:20.042 INFO:teuthology.orchestra.run.smithi191.stdout:Install 4 Packages 2024-09-07T08:10:20.042 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:10:20.042 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 40 M 2024-09-07T08:10:20.042 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 164 M 2024-09-07T08:10:20.042 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-07T08:10:20.091 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: ceph-selinux-2:18.2.4-812.g03cef208.el9.x86_64 29/32 2024-09-07T08:10:20.091 INFO:teuthology.orchestra.run.smithi018.stdout:skipping the directory /sys 2024-09-07T08:10:20.091 INFO:teuthology.orchestra.run.smithi018.stdout:skipping the directory /proc 2024-09-07T08:10:20.091 INFO:teuthology.orchestra.run.smithi018.stdout:skipping the directory /mnt 2024-09-07T08:10:20.092 INFO:teuthology.orchestra.run.smithi018.stdout:skipping the directory /var/tmp 2024-09-07T08:10:20.092 INFO:teuthology.orchestra.run.smithi018.stdout:skipping the directory /home 2024-09-07T08:10:20.092 INFO:teuthology.orchestra.run.smithi018.stdout:skipping the directory /root 2024-09-07T08:10:20.092 INFO:teuthology.orchestra.run.smithi018.stdout:skipping the directory /tmp 2024-09-07T08:10:20.092 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:10:20.486 INFO:teuthology.orchestra.run.smithi191.stdout:(1/4): libcephsqlite-18.2.4-812.g03cef208.el9.x 869 kB/s | 166 kB 00:00 2024-09-07T08:10:20.728 INFO:teuthology.orchestra.run.smithi191.stdout:(2/4): xmlstarlet-1.6.1-20.el9.x86_64.rpm 264 kB/s | 64 kB 00:00 2024-09-07T08:10:20.770 INFO:teuthology.orchestra.run.smithi191.stdout:(3/4): socat-1.7.4.1-6.el9.x86_64.rpm 641 kB/s | 304 kB 00:00 2024-09-07T08:10:20.872 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : ceph-radosgw-2:18.2.4-812.g03cef208.el9.x86_64 30/32 2024-09-07T08:10:20.897 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: ceph-radosgw-2:18.2.4-812.g03cef208.el9.x86_64 30/32 2024-09-07T08:10:20.897 INFO:teuthology.orchestra.run.smithi018.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-07T08:10:20.897 INFO:teuthology.orchestra.run.smithi018.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-09-07T08:10:20.897 INFO:teuthology.orchestra.run.smithi018.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-07T08:10:20.897 INFO:teuthology.orchestra.run.smithi018.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-07T08:10:20.897 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:10:20.900 INFO:teuthology.orchestra.run.smithi018.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 31/32 2024-09-07T08:10:20.992 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 31/32 2024-09-07T08:10:20.992 INFO:teuthology.orchestra.run.smithi018.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 32/32 2024-09-07T08:10:21.529 INFO:teuthology.orchestra.run.smithi191.stdout:(4/4): ceph-test-18.2.4-812.g03cef208.el9.x86_6 32 MB/s | 40 MB 00:01 2024-09-07T08:10:21.531 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:10:21.531 INFO:teuthology.orchestra.run.smithi191.stdout:Total 27 MB/s | 40 MB 00:01 2024-09-07T08:10:21.559 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-07T08:10:21.579 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-07T08:10:21.579 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-07T08:10:21.893 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-07T08:10:21.894 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-07T08:10:22.287 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 32/32 2024-09-07T08:10:22.287 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : ceph-base-2:18.2.4-812.g03cef208.el9.x86_64 1/32 2024-09-07T08:10:22.288 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : ceph-common-2:18.2.4-812.g03cef208.el9.x86_64 2/32 2024-09-07T08:10:22.288 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : ceph-radosgw-2:18.2.4-812.g03cef208.el9.x86_64 3/32 2024-09-07T08:10:22.288 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : ceph-selinux-2:18.2.4-812.g03cef208.el9.x86_64 4/32 2024-09-07T08:10:22.288 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : libcephfs2-2:18.2.4-812.g03cef208.el9.x86_64 5/32 2024-09-07T08:10:22.288 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : libradosstriper1-2:18.2.4-812.g03cef208.el9.x86_64 6/32 2024-09-07T08:10:22.288 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : librgw2-2:18.2.4-812.g03cef208.el9.x86_64 7/32 2024-09-07T08:10:22.288 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-ceph-argparse-2:18.2.4-812.g03cef208.el9.x 8/32 2024-09-07T08:10:22.288 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-ceph-common-2:18.2.4-812.g03cef208.el9.x86 9/32 2024-09-07T08:10:22.289 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-cephfs-2:18.2.4-812.g03cef208.el9.x86_64 10/32 2024-09-07T08:10:22.289 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-rados-2:18.2.4-812.g03cef208.el9.x86_64 11/32 2024-09-07T08:10:22.289 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-rbd-2:18.2.4-812.g03cef208.el9.x86_64 12/32 2024-09-07T08:10:22.289 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-rgw-2:18.2.4-812.g03cef208.el9.x86_64 13/32 2024-09-07T08:10:22.289 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/32 2024-09-07T08:10:22.289 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/32 2024-09-07T08:10:22.289 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/32 2024-09-07T08:10:22.289 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/32 2024-09-07T08:10:22.289 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/32 2024-09-07T08:10:22.289 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/32 2024-09-07T08:10:22.289 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : fmt-8.1.1-5.el9.x86_64 20/32 2024-09-07T08:10:22.289 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : gperftools-libs-2.9.1-2.el9.x86_64 21/32 2024-09-07T08:10:22.289 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : libarrow-9.0.0-11.el9.x86_64 22/32 2024-09-07T08:10:22.290 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : libarrow-doc-9.0.0-11.el9.noarch 23/32 2024-09-07T08:10:22.290 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 24/32 2024-09-07T08:10:22.290 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 25/32 2024-09-07T08:10:22.290 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : parquet-libs-9.0.0-11.el9.x86_64 26/32 2024-09-07T08:10:22.290 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : re2-1:20211101-20.el9.x86_64 27/32 2024-09-07T08:10:22.290 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 28/32 2024-09-07T08:10:22.290 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : librados2-2:18.2.4-812.g03cef208.el9.x86_64 29/32 2024-09-07T08:10:22.290 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 30/32 2024-09-07T08:10:22.290 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : librbd1-2:18.2.4-812.g03cef208.el9.x86_64 31/32 2024-09-07T08:10:22.375 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-07T08:10:22.462 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/4 2024-09-07T08:10:22.511 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : socat-1.7.4.1-6.el9.x86_64 2/4 2024-09-07T08:10:22.539 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : libcephsqlite-2:18.2.4-812.g03cef208.el9.x86_64 3/4 2024-09-07T08:10:23.293 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 32/32 2024-09-07T08:10:23.293 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:10:23.293 INFO:teuthology.orchestra.run.smithi018.stdout:Upgraded: 2024-09-07T08:10:23.293 INFO:teuthology.orchestra.run.smithi018.stdout: librados2-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:23.293 INFO:teuthology.orchestra.run.smithi018.stdout: librbd1-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:23.294 INFO:teuthology.orchestra.run.smithi018.stdout:Installed: 2024-09-07T08:10:23.294 INFO:teuthology.orchestra.run.smithi018.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-09-07T08:10:23.294 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-base-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:23.294 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-common-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:23.294 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-radosgw-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:23.294 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-selinux-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:23.294 INFO:teuthology.orchestra.run.smithi018.stdout: fmt-8.1.1-5.el9.x86_64 2024-09-07T08:10:23.294 INFO:teuthology.orchestra.run.smithi018.stdout: gperftools-libs-2.9.1-2.el9.x86_64 2024-09-07T08:10:23.294 INFO:teuthology.orchestra.run.smithi018.stdout: libarrow-9.0.0-11.el9.x86_64 2024-09-07T08:10:23.294 INFO:teuthology.orchestra.run.smithi018.stdout: libarrow-doc-9.0.0-11.el9.noarch 2024-09-07T08:10:23.294 INFO:teuthology.orchestra.run.smithi018.stdout: libcephfs2-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:23.294 INFO:teuthology.orchestra.run.smithi018.stdout: liboath-2.6.7-2.el9.x86_64 2024-09-07T08:10:23.294 INFO:teuthology.orchestra.run.smithi018.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-09-07T08:10:23.294 INFO:teuthology.orchestra.run.smithi018.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-09-07T08:10:23.295 INFO:teuthology.orchestra.run.smithi018.stdout: libradosstriper1-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:23.295 INFO:teuthology.orchestra.run.smithi018.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-09-07T08:10:23.295 INFO:teuthology.orchestra.run.smithi018.stdout: librgw2-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:23.295 INFO:teuthology.orchestra.run.smithi018.stdout: libunwind-1.6.2-1.el9.x86_64 2024-09-07T08:10:23.295 INFO:teuthology.orchestra.run.smithi018.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-09-07T08:10:23.295 INFO:teuthology.orchestra.run.smithi018.stdout: parquet-libs-9.0.0-11.el9.x86_64 2024-09-07T08:10:23.295 INFO:teuthology.orchestra.run.smithi018.stdout: python3-ceph-argparse-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:23.295 INFO:teuthology.orchestra.run.smithi018.stdout: python3-ceph-common-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:23.295 INFO:teuthology.orchestra.run.smithi018.stdout: python3-cephfs-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:23.295 INFO:teuthology.orchestra.run.smithi018.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-09-07T08:10:23.296 INFO:teuthology.orchestra.run.smithi018.stdout: python3-rados-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:23.296 INFO:teuthology.orchestra.run.smithi018.stdout: python3-rbd-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:23.296 INFO:teuthology.orchestra.run.smithi018.stdout: python3-rgw-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:23.296 INFO:teuthology.orchestra.run.smithi018.stdout: re2-1:20211101-20.el9.x86_64 2024-09-07T08:10:23.296 INFO:teuthology.orchestra.run.smithi018.stdout: thrift-0.15.0-2.el9.x86_64 2024-09-07T08:10:23.296 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:10:23.296 INFO:teuthology.orchestra.run.smithi018.stdout:Complete! 2024-09-07T08:10:23.645 DEBUG:teuthology.orchestra.run.smithi018:> sudo yum -y install ceph-test 2024-09-07T08:10:23.863 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: ceph-selinux-2:18.2.4-812.g03cef208.el9.x86_64 29/32 2024-09-07T08:10:23.863 INFO:teuthology.orchestra.run.smithi090.stdout:skipping the directory /sys 2024-09-07T08:10:23.863 INFO:teuthology.orchestra.run.smithi090.stdout:skipping the directory /proc 2024-09-07T08:10:23.863 INFO:teuthology.orchestra.run.smithi090.stdout:skipping the directory /mnt 2024-09-07T08:10:23.863 INFO:teuthology.orchestra.run.smithi090.stdout:skipping the directory /var/tmp 2024-09-07T08:10:23.863 INFO:teuthology.orchestra.run.smithi090.stdout:skipping the directory /home 2024-09-07T08:10:23.863 INFO:teuthology.orchestra.run.smithi090.stdout:skipping the directory /root 2024-09-07T08:10:23.863 INFO:teuthology.orchestra.run.smithi090.stdout:skipping the directory /tmp 2024-09-07T08:10:23.863 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:10:24.211 INFO:teuthology.orchestra.run.smithi018.stdout:Last metadata expiration check: 0:00:28 ago on Sat 07 Sep 2024 08:09:56 AM UTC. 2024-09-07T08:10:24.350 INFO:teuthology.orchestra.run.smithi018.stdout:Dependencies resolved. 2024-09-07T08:10:24.350 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:10:24.350 INFO:teuthology.orchestra.run.smithi018.stdout: Package Arch Version Repository Size 2024-09-07T08:10:24.350 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:10:24.350 INFO:teuthology.orchestra.run.smithi018.stdout:Installing: 2024-09-07T08:10:24.351 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-test x86_64 2:18.2.4-812.g03cef208.el9 ceph 40 M 2024-09-07T08:10:24.351 INFO:teuthology.orchestra.run.smithi018.stdout:Installing dependencies: 2024-09-07T08:10:24.351 INFO:teuthology.orchestra.run.smithi018.stdout: libcephsqlite x86_64 2:18.2.4-812.g03cef208.el9 ceph 166 k 2024-09-07T08:10:24.351 INFO:teuthology.orchestra.run.smithi018.stdout: socat x86_64 1.7.4.1-6.el9 appstream 304 k 2024-09-07T08:10:24.351 INFO:teuthology.orchestra.run.smithi018.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-09-07T08:10:24.351 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:10:24.351 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction Summary 2024-09-07T08:10:24.351 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:10:24.351 INFO:teuthology.orchestra.run.smithi018.stdout:Install 4 Packages 2024-09-07T08:10:24.351 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:10:24.352 INFO:teuthology.orchestra.run.smithi018.stdout:Total download size: 40 M 2024-09-07T08:10:24.352 INFO:teuthology.orchestra.run.smithi018.stdout:Installed size: 164 M 2024-09-07T08:10:24.352 INFO:teuthology.orchestra.run.smithi018.stdout:Downloading Packages: 2024-09-07T08:10:24.635 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : ceph-radosgw-2:18.2.4-812.g03cef208.el9.x86_64 30/32 2024-09-07T08:10:24.661 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: ceph-radosgw-2:18.2.4-812.g03cef208.el9.x86_64 30/32 2024-09-07T08:10:24.662 INFO:teuthology.orchestra.run.smithi090.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-07T08:10:24.662 INFO:teuthology.orchestra.run.smithi090.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-09-07T08:10:24.662 INFO:teuthology.orchestra.run.smithi090.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-07T08:10:24.662 INFO:teuthology.orchestra.run.smithi090.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-07T08:10:24.662 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:10:24.663 INFO:teuthology.orchestra.run.smithi090.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 31/32 2024-09-07T08:10:24.738 INFO:teuthology.orchestra.run.smithi018.stdout:(1/4): socat-1.7.4.1-6.el9.x86_64.rpm 2.3 MB/s | 304 kB 00:00 2024-09-07T08:10:24.747 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 31/32 2024-09-07T08:10:24.747 INFO:teuthology.orchestra.run.smithi090.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 32/32 2024-09-07T08:10:24.780 INFO:teuthology.orchestra.run.smithi018.stdout:(2/4): xmlstarlet-1.6.1-20.el9.x86_64.rpm 1.5 MB/s | 64 kB 00:00 2024-09-07T08:10:24.838 INFO:teuthology.orchestra.run.smithi018.stdout:(3/4): libcephsqlite-18.2.4-812.g03cef208.el9.x 717 kB/s | 166 kB 00:00 2024-09-07T08:10:25.897 INFO:teuthology.orchestra.run.smithi018.stdout:(4/4): ceph-test-18.2.4-812.g03cef208.el9.x86_6 31 MB/s | 40 MB 00:01 2024-09-07T08:10:25.899 INFO:teuthology.orchestra.run.smithi018.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:10:25.899 INFO:teuthology.orchestra.run.smithi018.stdout:Total 26 MB/s | 40 MB 00:01 2024-09-07T08:10:25.927 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction check 2024-09-07T08:10:25.948 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction check succeeded. 2024-09-07T08:10:25.949 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction test 2024-09-07T08:10:26.001 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 32/32 2024-09-07T08:10:26.001 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : ceph-base-2:18.2.4-812.g03cef208.el9.x86_64 1/32 2024-09-07T08:10:26.001 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : ceph-common-2:18.2.4-812.g03cef208.el9.x86_64 2/32 2024-09-07T08:10:26.001 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : ceph-radosgw-2:18.2.4-812.g03cef208.el9.x86_64 3/32 2024-09-07T08:10:26.002 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : ceph-selinux-2:18.2.4-812.g03cef208.el9.x86_64 4/32 2024-09-07T08:10:26.002 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : libcephfs2-2:18.2.4-812.g03cef208.el9.x86_64 5/32 2024-09-07T08:10:26.002 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : libradosstriper1-2:18.2.4-812.g03cef208.el9.x86_64 6/32 2024-09-07T08:10:26.002 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : librgw2-2:18.2.4-812.g03cef208.el9.x86_64 7/32 2024-09-07T08:10:26.002 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-ceph-argparse-2:18.2.4-812.g03cef208.el9.x 8/32 2024-09-07T08:10:26.002 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-ceph-common-2:18.2.4-812.g03cef208.el9.x86 9/32 2024-09-07T08:10:26.002 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-cephfs-2:18.2.4-812.g03cef208.el9.x86_64 10/32 2024-09-07T08:10:26.002 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-rados-2:18.2.4-812.g03cef208.el9.x86_64 11/32 2024-09-07T08:10:26.002 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-rbd-2:18.2.4-812.g03cef208.el9.x86_64 12/32 2024-09-07T08:10:26.002 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-rgw-2:18.2.4-812.g03cef208.el9.x86_64 13/32 2024-09-07T08:10:26.002 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/32 2024-09-07T08:10:26.002 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/32 2024-09-07T08:10:26.002 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/32 2024-09-07T08:10:26.003 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/32 2024-09-07T08:10:26.003 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/32 2024-09-07T08:10:26.003 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/32 2024-09-07T08:10:26.003 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : fmt-8.1.1-5.el9.x86_64 20/32 2024-09-07T08:10:26.003 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : gperftools-libs-2.9.1-2.el9.x86_64 21/32 2024-09-07T08:10:26.003 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : libarrow-9.0.0-11.el9.x86_64 22/32 2024-09-07T08:10:26.003 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : libarrow-doc-9.0.0-11.el9.noarch 23/32 2024-09-07T08:10:26.003 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 24/32 2024-09-07T08:10:26.003 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 25/32 2024-09-07T08:10:26.003 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : parquet-libs-9.0.0-11.el9.x86_64 26/32 2024-09-07T08:10:26.003 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : re2-1:20211101-20.el9.x86_64 27/32 2024-09-07T08:10:26.003 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 28/32 2024-09-07T08:10:26.003 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : librados2-2:18.2.4-812.g03cef208.el9.x86_64 29/32 2024-09-07T08:10:26.004 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 30/32 2024-09-07T08:10:26.004 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : librbd1-2:18.2.4-812.g03cef208.el9.x86_64 31/32 2024-09-07T08:10:26.210 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: libcephsqlite-2:18.2.4-812.g03cef208.el9.x86_64 3/4 2024-09-07T08:10:26.279 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction test succeeded. 2024-09-07T08:10:26.279 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction 2024-09-07T08:10:26.285 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-test-2:18.2.4-812.g03cef208.el9.x86_64 4/4 2024-09-07T08:10:26.776 INFO:teuthology.orchestra.run.smithi018.stdout: Preparing : 1/1 2024-09-07T08:10:26.809 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 32/32 2024-09-07T08:10:26.810 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:10:26.810 INFO:teuthology.orchestra.run.smithi090.stdout:Upgraded: 2024-09-07T08:10:26.810 INFO:teuthology.orchestra.run.smithi090.stdout: librados2-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:26.810 INFO:teuthology.orchestra.run.smithi090.stdout: librbd1-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:26.810 INFO:teuthology.orchestra.run.smithi090.stdout:Installed: 2024-09-07T08:10:26.810 INFO:teuthology.orchestra.run.smithi090.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-09-07T08:10:26.810 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-base-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:26.810 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-common-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:26.810 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-radosgw-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:26.810 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-selinux-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:26.810 INFO:teuthology.orchestra.run.smithi090.stdout: fmt-8.1.1-5.el9.x86_64 2024-09-07T08:10:26.810 INFO:teuthology.orchestra.run.smithi090.stdout: gperftools-libs-2.9.1-2.el9.x86_64 2024-09-07T08:10:26.810 INFO:teuthology.orchestra.run.smithi090.stdout: libarrow-9.0.0-11.el9.x86_64 2024-09-07T08:10:26.810 INFO:teuthology.orchestra.run.smithi090.stdout: libarrow-doc-9.0.0-11.el9.noarch 2024-09-07T08:10:26.811 INFO:teuthology.orchestra.run.smithi090.stdout: libcephfs2-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:26.811 INFO:teuthology.orchestra.run.smithi090.stdout: liboath-2.6.7-2.el9.x86_64 2024-09-07T08:10:26.811 INFO:teuthology.orchestra.run.smithi090.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-09-07T08:10:26.811 INFO:teuthology.orchestra.run.smithi090.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-09-07T08:10:26.811 INFO:teuthology.orchestra.run.smithi090.stdout: libradosstriper1-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:26.811 INFO:teuthology.orchestra.run.smithi090.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-09-07T08:10:26.811 INFO:teuthology.orchestra.run.smithi090.stdout: librgw2-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:26.811 INFO:teuthology.orchestra.run.smithi090.stdout: libunwind-1.6.2-1.el9.x86_64 2024-09-07T08:10:26.811 INFO:teuthology.orchestra.run.smithi090.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-09-07T08:10:26.811 INFO:teuthology.orchestra.run.smithi090.stdout: parquet-libs-9.0.0-11.el9.x86_64 2024-09-07T08:10:26.812 INFO:teuthology.orchestra.run.smithi090.stdout: python3-ceph-argparse-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:26.812 INFO:teuthology.orchestra.run.smithi090.stdout: python3-ceph-common-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:26.812 INFO:teuthology.orchestra.run.smithi090.stdout: python3-cephfs-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:26.812 INFO:teuthology.orchestra.run.smithi090.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-09-07T08:10:26.812 INFO:teuthology.orchestra.run.smithi090.stdout: python3-rados-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:26.812 INFO:teuthology.orchestra.run.smithi090.stdout: python3-rbd-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:26.812 INFO:teuthology.orchestra.run.smithi090.stdout: python3-rgw-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:26.812 INFO:teuthology.orchestra.run.smithi090.stdout: re2-1:20211101-20.el9.x86_64 2024-09-07T08:10:26.812 INFO:teuthology.orchestra.run.smithi090.stdout: thrift-0.15.0-2.el9.x86_64 2024-09-07T08:10:26.812 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:10:26.812 INFO:teuthology.orchestra.run.smithi090.stdout:Complete! 2024-09-07T08:10:26.865 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/4 2024-09-07T08:10:26.905 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : socat-1.7.4.1-6.el9.x86_64 2/4 2024-09-07T08:10:26.932 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : libcephsqlite-2:18.2.4-812.g03cef208.el9.x86_64 3/4 2024-09-07T08:10:27.220 DEBUG:teuthology.orchestra.run.smithi090:> sudo yum -y install ceph-test 2024-09-07T08:10:27.780 INFO:teuthology.orchestra.run.smithi090.stdout:Last metadata expiration check: 0:00:27 ago on Sat 07 Sep 2024 08:10:00 AM UTC. 2024-09-07T08:10:27.914 INFO:teuthology.orchestra.run.smithi090.stdout:Dependencies resolved. 2024-09-07T08:10:27.915 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:10:27.915 INFO:teuthology.orchestra.run.smithi090.stdout: Package Arch Version Repository Size 2024-09-07T08:10:27.915 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:10:27.915 INFO:teuthology.orchestra.run.smithi090.stdout:Installing: 2024-09-07T08:10:27.915 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-test x86_64 2:18.2.4-812.g03cef208.el9 ceph 40 M 2024-09-07T08:10:27.915 INFO:teuthology.orchestra.run.smithi090.stdout:Installing dependencies: 2024-09-07T08:10:27.915 INFO:teuthology.orchestra.run.smithi090.stdout: libcephsqlite x86_64 2:18.2.4-812.g03cef208.el9 ceph 166 k 2024-09-07T08:10:27.915 INFO:teuthology.orchestra.run.smithi090.stdout: socat x86_64 1.7.4.1-6.el9 appstream 304 k 2024-09-07T08:10:27.915 INFO:teuthology.orchestra.run.smithi090.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-09-07T08:10:27.915 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:10:27.915 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction Summary 2024-09-07T08:10:27.915 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:10:27.916 INFO:teuthology.orchestra.run.smithi090.stdout:Install 4 Packages 2024-09-07T08:10:27.916 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:10:27.916 INFO:teuthology.orchestra.run.smithi090.stdout:Total download size: 40 M 2024-09-07T08:10:27.916 INFO:teuthology.orchestra.run.smithi090.stdout:Installed size: 164 M 2024-09-07T08:10:27.916 INFO:teuthology.orchestra.run.smithi090.stdout:Downloading Packages: 2024-09-07T08:10:28.341 INFO:teuthology.orchestra.run.smithi090.stdout:(1/4): socat-1.7.4.1-6.el9.x86_64.rpm 1.7 MB/s | 304 kB 00:00 2024-09-07T08:10:28.353 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-test-2:18.2.4-812.g03cef208.el9.x86_64 4/4 2024-09-07T08:10:28.353 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-test-2:18.2.4-812.g03cef208.el9.x86_64 1/4 2024-09-07T08:10:28.353 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : libcephsqlite-2:18.2.4-812.g03cef208.el9.x86_64 2/4 2024-09-07T08:10:28.353 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : socat-1.7.4.1-6.el9.x86_64 3/4 2024-09-07T08:10:28.383 INFO:teuthology.orchestra.run.smithi090.stdout:(2/4): xmlstarlet-1.6.1-20.el9.x86_64.rpm 1.5 MB/s | 64 kB 00:00 2024-09-07T08:10:28.433 INFO:teuthology.orchestra.run.smithi090.stdout:(3/4): libcephsqlite-18.2.4-812.g03cef208.el9.x 631 kB/s | 166 kB 00:00 2024-09-07T08:10:28.694 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 4/4 2024-09-07T08:10:28.695 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:10:28.695 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-07T08:10:28.695 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-test-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:28.695 INFO:teuthology.orchestra.run.smithi191.stdout: libcephsqlite-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:28.695 INFO:teuthology.orchestra.run.smithi191.stdout: socat-1.7.4.1-6.el9.x86_64 2024-09-07T08:10:28.695 INFO:teuthology.orchestra.run.smithi191.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-09-07T08:10:28.695 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:10:28.695 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-07T08:10:29.005 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph 2024-09-07T08:10:29.560 INFO:teuthology.orchestra.run.smithi090.stdout:(4/4): ceph-test-18.2.4-812.g03cef208.el9.x86_6 29 MB/s | 40 MB 00:01 2024-09-07T08:10:29.562 INFO:teuthology.orchestra.run.smithi090.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:10:29.563 INFO:teuthology.orchestra.run.smithi090.stdout:Total 24 MB/s | 40 MB 00:01 2024-09-07T08:10:29.572 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:00:37 ago on Sat 07 Sep 2024 08:09:52 AM UTC. 2024-09-07T08:10:29.590 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction check 2024-09-07T08:10:29.610 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction check succeeded. 2024-09-07T08:10:29.610 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction test 2024-09-07T08:10:29.719 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-07T08:10:29.721 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:10:29.721 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repository Size 2024-09-07T08:10:29.721 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:10:29.721 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-07T08:10:29.721 INFO:teuthology.orchestra.run.smithi191.stdout: ceph x86_64 2:18.2.4-812.g03cef208.el9 ceph 6.5 k 2024-09-07T08:10:29.721 INFO:teuthology.orchestra.run.smithi191.stdout:Installing dependencies: 2024-09-07T08:10:29.721 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mds x86_64 2:18.2.4-812.g03cef208.el9 ceph 2.1 M 2024-09-07T08:10:29.722 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr x86_64 2:18.2.4-812.g03cef208.el9 ceph 1.5 M 2024-09-07T08:10:29.722 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr-modules-core noarch 2:18.2.4-812.g03cef208.el9 ceph-noarch 246 k 2024-09-07T08:10:29.722 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mon x86_64 2:18.2.4-812.g03cef208.el9 ceph 4.7 M 2024-09-07T08:10:29.722 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-osd x86_64 2:18.2.4-812.g03cef208.el9 ceph 17 M 2024-09-07T08:10:29.722 INFO:teuthology.orchestra.run.smithi191.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-09-07T08:10:29.722 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-09-07T08:10:29.722 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-09-07T08:10:29.722 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-09-07T08:10:29.722 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-09-07T08:10:29.722 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-09-07T08:10:29.722 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-09-07T08:10:29.722 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2024-09-07T08:10:29.722 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-09-07T08:10:29.722 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-09-07T08:10:29.722 INFO:teuthology.orchestra.run.smithi191.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-09-07T08:10:29.723 INFO:teuthology.orchestra.run.smithi191.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-09-07T08:10:29.723 INFO:teuthology.orchestra.run.smithi191.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-09-07T08:10:29.723 INFO:teuthology.orchestra.run.smithi191.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-09-07T08:10:29.723 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-09-07T08:10:29.723 INFO:teuthology.orchestra.run.smithi191.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-09-07T08:10:29.723 INFO:teuthology.orchestra.run.smithi191.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-09-07T08:10:29.723 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-09-07T08:10:29.723 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-09-07T08:10:29.723 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-09-07T08:10:29.723 INFO:teuthology.orchestra.run.smithi191.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-09-07T08:10:29.723 INFO:teuthology.orchestra.run.smithi191.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-09-07T08:10:29.723 INFO:teuthology.orchestra.run.smithi191.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-09-07T08:10:29.723 INFO:teuthology.orchestra.run.smithi191.stdout: python3-urllib3 noarch 1.26.5-6.el9 baseos 215 k 2024-09-07T08:10:29.724 INFO:teuthology.orchestra.run.smithi191.stdout: python3-webob noarch 1.8.8-2.el9 epel 230 k 2024-09-07T08:10:29.724 INFO:teuthology.orchestra.run.smithi191.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-09-07T08:10:29.724 INFO:teuthology.orchestra.run.smithi191.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-09-07T08:10:29.724 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:10:29.724 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-07T08:10:29.724 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:10:29.724 INFO:teuthology.orchestra.run.smithi191.stdout:Install 33 Packages 2024-09-07T08:10:29.724 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:10:29.725 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 29 M 2024-09-07T08:10:29.725 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 104 M 2024-09-07T08:10:29.725 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-07T08:10:29.925 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction test succeeded. 2024-09-07T08:10:29.926 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction 2024-09-07T08:10:30.013 INFO:teuthology.orchestra.run.smithi191.stdout:(1/33): ceph-18.2.4-812.g03cef208.el9.x86_64.rp 47 kB/s | 6.5 kB 00:00 2024-09-07T08:10:30.214 INFO:teuthology.orchestra.run.smithi191.stdout:(2/33): ceph-mds-18.2.4-812.g03cef208.el9.x86_6 6.2 MB/s | 2.1 MB 00:00 2024-09-07T08:10:30.263 INFO:teuthology.orchestra.run.smithi191.stdout:(3/33): ceph-mgr-18.2.4-812.g03cef208.el9.x86_6 3.8 MB/s | 1.5 MB 00:00 2024-09-07T08:10:30.339 INFO:teuthology.orchestra.run.smithi191.stdout:(4/33): ceph-mgr-modules-core-18.2.4-812.g03cef 3.2 MB/s | 246 kB 00:00 2024-09-07T08:10:30.426 INFO:teuthology.orchestra.run.smithi090.stdout: Preparing : 1/1 2024-09-07T08:10:30.511 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/4 2024-09-07T08:10:30.551 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : socat-1.7.4.1-6.el9.x86_64 2/4 2024-09-07T08:10:30.579 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : libcephsqlite-2:18.2.4-812.g03cef208.el9.x86_64 3/4 2024-09-07T08:10:30.786 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: libcephsqlite-2:18.2.4-812.g03cef208.el9.x86_64 3/4 2024-09-07T08:10:30.856 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : ceph-test-2:18.2.4-812.g03cef208.el9.x86_64 4/4 2024-09-07T08:10:30.914 INFO:teuthology.orchestra.run.smithi191.stdout:(5/33): ceph-osd-18.2.4-812.g03cef208.el9.x86_6 24 MB/s | 17 MB 00:00 2024-09-07T08:10:30.981 INFO:teuthology.orchestra.run.smithi191.stdout:(6/33): ceph-mon-18.2.4-812.g03cef208.el9.x86_6 4.8 MB/s | 4.7 MB 00:00 2024-09-07T08:10:31.190 INFO:teuthology.orchestra.run.smithi191.stdout:(7/33): python3-cffi-1.14.5-5.el9.x86_64.rpm 298 kB/s | 253 kB 00:00 2024-09-07T08:10:31.648 INFO:teuthology.orchestra.run.smithi191.stdout:(8/33): python3-ply-3.11-14.el9.noarch.rpm 160 kB/s | 106 kB 00:00 2024-09-07T08:10:31.840 INFO:teuthology.orchestra.run.smithi191.stdout:(9/33): python3-cryptography-36.0.1-4.el9.x86_6 1.3 MB/s | 1.2 MB 00:00 2024-09-07T08:10:31.891 INFO:teuthology.orchestra.run.smithi191.stdout:(10/33): python3-pycparser-2.20-6.el9.noarch.rp 193 kB/s | 135 kB 00:00 2024-09-07T08:10:32.016 INFO:teuthology.orchestra.run.smithi191.stdout:(11/33): python3-mako-1.1.4-6.el9.noarch.rpm 1.4 MB/s | 172 kB 00:00 2024-09-07T08:10:32.082 INFO:teuthology.orchestra.run.smithi191.stdout:(12/33): python3-markupsafe-1.1.1-12.el9.x86_64 521 kB/s | 35 kB 00:00 2024-09-07T08:10:32.142 INFO:teuthology.orchestra.run.smithi191.stdout:(13/33): python3-pytz-2021.1-5.el9.noarch.rpm 869 kB/s | 51 kB 00:00 2024-09-07T08:10:32.217 INFO:teuthology.orchestra.run.smithi191.stdout:(14/33): python3-toml-0.10.2-6.el9.noarch.rpm 562 kB/s | 42 kB 00:00 2024-09-07T08:10:32.259 INFO:teuthology.orchestra.run.smithi191.stdout:(15/33): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 1.0 MB/s | 43 kB 00:00 2024-09-07T08:10:32.284 INFO:teuthology.orchestra.run.smithi191.stdout:(16/33): python3-cheroot-8.6.0-4.el9.noarch.rpm 6.7 MB/s | 172 kB 00:00 2024-09-07T08:10:32.326 INFO:teuthology.orchestra.run.smithi191.stdout:(17/33): python3-cherrypy-18.6.1-2.el9.noarch.r 8.4 MB/s | 358 kB 00:00 2024-09-07T08:10:32.351 INFO:teuthology.orchestra.run.smithi191.stdout:(18/33): python3-jaraco-8.2.1-3.el9.noarch.rpm 429 kB/s | 11 kB 00:00 2024-09-07T08:10:32.376 INFO:teuthology.orchestra.run.smithi191.stdout:(19/33): python3-requests-2.25.1-8.el9.noarch.r 172 kB/s | 125 kB 00:00 2024-09-07T08:10:32.401 INFO:teuthology.orchestra.run.smithi191.stdout:(20/33): python3-jaraco-classes-3.2.1-5.el9.noa 352 kB/s | 18 kB 00:00 2024-09-07T08:10:32.435 INFO:teuthology.orchestra.run.smithi191.stdout:(21/33): python3-jaraco-functools-3.5.0-2.el9.n 756 kB/s | 19 kB 00:00 2024-09-07T08:10:32.460 INFO:teuthology.orchestra.run.smithi191.stdout:(22/33): python3-jaraco-text-3.2.0-6.el9.noarch 854 kB/s | 20 kB 00:00 2024-09-07T08:10:32.486 INFO:teuthology.orchestra.run.smithi191.stdout:(23/33): python3-jaraco-collections-3.0.0-8.el9 212 kB/s | 23 kB 00:00 2024-09-07T08:10:32.511 INFO:teuthology.orchestra.run.smithi191.stdout:(24/33): python3-logutils-0.3.5-21.el9.noarch.r 925 kB/s | 46 kB 00:00 2024-09-07T08:10:32.537 INFO:teuthology.orchestra.run.smithi191.stdout:(25/33): python3-more-itertools-8.12.0-2.el9.no 1.5 MB/s | 79 kB 00:00 2024-09-07T08:10:32.561 INFO:teuthology.orchestra.run.smithi191.stdout:(26/33): python3-portend-3.1.0-2.el9.noarch.rpm 664 kB/s | 16 kB 00:00 2024-09-07T08:10:32.587 INFO:teuthology.orchestra.run.smithi191.stdout:(27/33): python3-pecan-1.4.2-3.el9.noarch.rpm 3.5 MB/s | 272 kB 00:00 2024-09-07T08:10:32.612 INFO:teuthology.orchestra.run.smithi191.stdout:(28/33): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.7 MB/s | 90 kB 00:00 2024-09-07T08:10:32.637 INFO:teuthology.orchestra.run.smithi191.stdout:(29/33): python3-urllib3-1.26.5-6.el9.noarch.rp 269 kB/s | 215 kB 00:00 2024-09-07T08:10:32.662 INFO:teuthology.orchestra.run.smithi191.stdout:(30/33): python3-tempora-5.0.0-2.el9.noarch.rpm 715 kB/s | 36 kB 00:00 2024-09-07T08:10:32.696 INFO:teuthology.orchestra.run.smithi191.stdout:(31/33): python3-zc-lockfile-2.0-10.el9.noarch. 774 kB/s | 20 kB 00:00 2024-09-07T08:10:32.730 INFO:teuthology.orchestra.run.smithi191.stdout:(32/33): python3-webob-1.8.8-2.el9.noarch.rpm 1.9 MB/s | 230 kB 00:00 2024-09-07T08:10:32.771 INFO:teuthology.orchestra.run.smithi191.stdout:(33/33): python3-werkzeug-2.0.3-3.el9.1.noarch. 3.1 MB/s | 427 kB 00:00 2024-09-07T08:10:32.778 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:10:32.778 INFO:teuthology.orchestra.run.smithi191.stdout:Total 9.6 MB/s | 29 MB 00:03 2024-09-07T08:10:32.901 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-07T08:10:32.938 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-07T08:10:32.938 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-07T08:10:32.942 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: ceph-test-2:18.2.4-812.g03cef208.el9.x86_64 4/4 2024-09-07T08:10:32.942 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : ceph-test-2:18.2.4-812.g03cef208.el9.x86_64 1/4 2024-09-07T08:10:32.943 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : libcephsqlite-2:18.2.4-812.g03cef208.el9.x86_64 2/4 2024-09-07T08:10:32.943 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : socat-1.7.4.1-6.el9.x86_64 3/4 2024-09-07T08:10:33.218 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-07T08:10:33.219 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-07T08:10:33.275 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 4/4 2024-09-07T08:10:33.275 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:10:33.275 INFO:teuthology.orchestra.run.smithi018.stdout:Installed: 2024-09-07T08:10:33.276 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-test-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:33.276 INFO:teuthology.orchestra.run.smithi018.stdout: libcephsqlite-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:33.276 INFO:teuthology.orchestra.run.smithi018.stdout: socat-1.7.4.1-6.el9.x86_64 2024-09-07T08:10:33.276 INFO:teuthology.orchestra.run.smithi018.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-09-07T08:10:33.276 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:10:33.276 INFO:teuthology.orchestra.run.smithi018.stdout:Complete! 2024-09-07T08:10:33.584 DEBUG:teuthology.orchestra.run.smithi018:> sudo yum -y install ceph 2024-09-07T08:10:34.143 INFO:teuthology.orchestra.run.smithi018.stdout:Last metadata expiration check: 0:00:38 ago on Sat 07 Sep 2024 08:09:56 AM UTC. 2024-09-07T08:10:34.214 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: libcephsqlite-2:18.2.4-812.g03cef208.el9.x86_64 3/4 2024-09-07T08:10:34.289 INFO:teuthology.orchestra.run.smithi018.stdout:Dependencies resolved. 2024-09-07T08:10:34.291 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:10:34.291 INFO:teuthology.orchestra.run.smithi018.stdout: Package Arch Version Repository Size 2024-09-07T08:10:34.291 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:10:34.291 INFO:teuthology.orchestra.run.smithi018.stdout:Installing: 2024-09-07T08:10:34.291 INFO:teuthology.orchestra.run.smithi018.stdout: ceph x86_64 2:18.2.4-812.g03cef208.el9 ceph 6.5 k 2024-09-07T08:10:34.291 INFO:teuthology.orchestra.run.smithi018.stdout:Installing dependencies: 2024-09-07T08:10:34.291 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-mds x86_64 2:18.2.4-812.g03cef208.el9 ceph 2.1 M 2024-09-07T08:10:34.292 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-mgr x86_64 2:18.2.4-812.g03cef208.el9 ceph 1.5 M 2024-09-07T08:10:34.292 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-mgr-modules-core noarch 2:18.2.4-812.g03cef208.el9 ceph-noarch 246 k 2024-09-07T08:10:34.292 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-mon x86_64 2:18.2.4-812.g03cef208.el9 ceph 4.7 M 2024-09-07T08:10:34.292 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-osd x86_64 2:18.2.4-812.g03cef208.el9 ceph 17 M 2024-09-07T08:10:34.292 INFO:teuthology.orchestra.run.smithi018.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-09-07T08:10:34.292 INFO:teuthology.orchestra.run.smithi018.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-09-07T08:10:34.292 INFO:teuthology.orchestra.run.smithi018.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-09-07T08:10:34.292 INFO:teuthology.orchestra.run.smithi018.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-09-07T08:10:34.292 INFO:teuthology.orchestra.run.smithi018.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-09-07T08:10:34.292 INFO:teuthology.orchestra.run.smithi018.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-09-07T08:10:34.292 INFO:teuthology.orchestra.run.smithi018.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-09-07T08:10:34.292 INFO:teuthology.orchestra.run.smithi018.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2024-09-07T08:10:34.292 INFO:teuthology.orchestra.run.smithi018.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-09-07T08:10:34.293 INFO:teuthology.orchestra.run.smithi018.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-09-07T08:10:34.293 INFO:teuthology.orchestra.run.smithi018.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-09-07T08:10:34.293 INFO:teuthology.orchestra.run.smithi018.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-09-07T08:10:34.293 INFO:teuthology.orchestra.run.smithi018.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-09-07T08:10:34.293 INFO:teuthology.orchestra.run.smithi018.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-09-07T08:10:34.293 INFO:teuthology.orchestra.run.smithi018.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-09-07T08:10:34.293 INFO:teuthology.orchestra.run.smithi018.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-09-07T08:10:34.293 INFO:teuthology.orchestra.run.smithi018.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-09-07T08:10:34.293 INFO:teuthology.orchestra.run.smithi018.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-09-07T08:10:34.293 INFO:teuthology.orchestra.run.smithi018.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-09-07T08:10:34.293 INFO:teuthology.orchestra.run.smithi018.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-09-07T08:10:34.293 INFO:teuthology.orchestra.run.smithi018.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-09-07T08:10:34.293 INFO:teuthology.orchestra.run.smithi018.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-09-07T08:10:34.293 INFO:teuthology.orchestra.run.smithi018.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-09-07T08:10:34.294 INFO:teuthology.orchestra.run.smithi018.stdout: python3-urllib3 noarch 1.26.5-6.el9 baseos 215 k 2024-09-07T08:10:34.294 INFO:teuthology.orchestra.run.smithi018.stdout: python3-webob noarch 1.8.8-2.el9 epel 230 k 2024-09-07T08:10:34.294 INFO:teuthology.orchestra.run.smithi018.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-09-07T08:10:34.294 INFO:teuthology.orchestra.run.smithi018.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-09-07T08:10:34.294 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:10:34.294 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction Summary 2024-09-07T08:10:34.294 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:10:34.294 INFO:teuthology.orchestra.run.smithi018.stdout:Install 33 Packages 2024-09-07T08:10:34.294 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:10:34.295 INFO:teuthology.orchestra.run.smithi018.stdout:Total download size: 29 M 2024-09-07T08:10:34.295 INFO:teuthology.orchestra.run.smithi018.stdout:Installed size: 104 M 2024-09-07T08:10:34.295 INFO:teuthology.orchestra.run.smithi018.stdout:Downloading Packages: 2024-09-07T08:10:34.303 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : ceph-test-2:18.2.4-812.g03cef208.el9.x86_64 4/4 2024-09-07T08:10:34.460 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-07T08:10:34.533 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/33 2024-09-07T08:10:34.581 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/33 2024-09-07T08:10:34.614 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 3/33 2024-09-07T08:10:34.706 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 4/33 2024-09-07T08:10:34.784 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 5/33 2024-09-07T08:10:34.825 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-webob-1.8.8-2.el9.noarch 6/33 2024-09-07T08:10:34.869 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 7/33 2024-09-07T08:10:34.899 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 8/33 2024-09-07T08:10:34.933 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 9/33 2024-09-07T08:10:34.967 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 10/33 2024-09-07T08:10:35.007 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 11/33 2024-09-07T08:10:35.042 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 12/33 2024-09-07T08:10:35.077 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 13/33 2024-09-07T08:10:35.084 INFO:teuthology.orchestra.run.smithi018.stdout:(1/33): ceph-18.2.4-812.g03cef208.el9.x86_64.rp 26 kB/s | 6.5 kB 00:00 2024-09-07T08:10:35.123 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 14/33 2024-09-07T08:10:35.204 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 15/33 2024-09-07T08:10:35.259 INFO:teuthology.orchestra.run.smithi018.stdout:(2/33): ceph-mgr-18.2.4-812.g03cef208.el9.x86_6 3.4 MB/s | 1.5 MB 00:00 2024-09-07T08:10:35.310 INFO:teuthology.orchestra.run.smithi018.stdout:(3/33): ceph-mds-18.2.4-812.g03cef208.el9.x86_6 4.4 MB/s | 2.1 MB 00:00 2024-09-07T08:10:35.358 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 16/33 2024-09-07T08:10:35.385 INFO:teuthology.orchestra.run.smithi018.stdout:(4/33): ceph-mgr-modules-core-18.2.4-812.g03cef 3.2 MB/s | 246 kB 00:00 2024-09-07T08:10:35.447 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 17/33 2024-09-07T08:10:35.452 INFO:teuthology.orchestra.run.smithi018.stdout:(5/33): ceph-mon-18.2.4-812.g03cef208.el9.x86_6 13 MB/s | 4.7 MB 00:00 2024-09-07T08:10:35.501 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-urllib3-1.26.5-6.el9.noarch 18/33 2024-09-07T08:10:35.539 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 19/33 2024-09-07T08:10:35.596 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-ply-3.11-14.el9.noarch 20/33 2024-09-07T08:10:35.619 INFO:teuthology.orchestra.run.smithi018.stdout:(6/33): python3-cffi-1.14.5-5.el9.x86_64.rpm 1.1 MB/s | 253 kB 00:00 2024-09-07T08:10:35.660 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 21/33 2024-09-07T08:10:35.846 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 22/33 2024-09-07T08:10:35.893 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 23/33 2024-09-07T08:10:35.936 INFO:teuthology.orchestra.run.smithi018.stdout:(7/33): ceph-osd-18.2.4-812.g03cef208.el9.x86_6 24 MB/s | 17 MB 00:00 2024-09-07T08:10:35.961 INFO:teuthology.orchestra.run.smithi018.stdout:(8/33): python3-ply-3.11-14.el9.noarch.rpm 311 kB/s | 106 kB 00:00 2024-09-07T08:10:35.979 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 24/33 2024-09-07T08:10:36.028 INFO:teuthology.orchestra.run.smithi018.stdout:(9/33): python3-cryptography-36.0.1-4.el9.x86_6 2.1 MB/s | 1.2 MB 00:00 2024-09-07T08:10:36.053 INFO:teuthology.orchestra.run.smithi018.stdout:(10/33): python3-requests-2.25.1-8.el9.noarch.r 1.3 MB/s | 125 kB 00:00 2024-09-07T08:10:36.076 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 25/33 2024-09-07T08:10:36.104 INFO:teuthology.orchestra.run.smithi018.stdout:(11/33): python3-urllib3-1.26.5-6.el9.noarch.rp 2.8 MB/s | 215 kB 00:00 2024-09-07T08:10:36.117 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 26/33 2024-09-07T08:10:36.129 INFO:teuthology.orchestra.run.smithi018.stdout:(12/33): python3-pycparser-2.20-6.el9.noarch.rp 702 kB/s | 135 kB 00:00 2024-09-07T08:10:36.234 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 27/33 2024-09-07T08:10:36.401 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-mgr-modules-core-2:18.2.4-812.g03cef208.el9.n 28/33 2024-09-07T08:10:36.428 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-mgr-2:18.2.4-812.g03cef208.el9.x86_64 29/33 2024-09-07T08:10:36.454 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-mgr-2:18.2.4-812.g03cef208.el9.x86_64 29/33 2024-09-07T08:10:36.454 INFO:teuthology.orchestra.run.smithi191.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-07T08:10:36.454 INFO:teuthology.orchestra.run.smithi191.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-09-07T08:10:36.454 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-07T08:10:36.454 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-07T08:10:36.455 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:10:36.663 INFO:teuthology.orchestra.run.smithi018.stdout:(13/33): python3-markupsafe-1.1.1-12.el9.x86_64 62 kB/s | 35 kB 00:00 2024-09-07T08:10:36.801 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: ceph-test-2:18.2.4-812.g03cef208.el9.x86_64 4/4 2024-09-07T08:10:36.801 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : ceph-test-2:18.2.4-812.g03cef208.el9.x86_64 1/4 2024-09-07T08:10:36.801 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : libcephsqlite-2:18.2.4-812.g03cef208.el9.x86_64 2/4 2024-09-07T08:10:36.801 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : socat-1.7.4.1-6.el9.x86_64 3/4 2024-09-07T08:10:36.871 INFO:teuthology.orchestra.run.smithi018.stdout:(14/33): python3-pytz-2021.1-5.el9.noarch.rpm 69 kB/s | 51 kB 00:00 2024-09-07T08:10:36.897 INFO:teuthology.orchestra.run.smithi018.stdout:(15/33): python3-mako-1.1.4-6.el9.noarch.rpm 204 kB/s | 172 kB 00:00 2024-09-07T08:10:36.939 INFO:teuthology.orchestra.run.smithi018.stdout:(16/33): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 652 kB/s | 43 kB 00:00 2024-09-07T08:10:36.981 INFO:teuthology.orchestra.run.smithi018.stdout:(17/33): python3-cheroot-8.6.0-4.el9.noarch.rpm 2.2 MB/s | 172 kB 00:00 2024-09-07T08:10:37.014 INFO:teuthology.orchestra.run.smithi018.stdout:(18/33): python3-cherrypy-18.6.1-2.el9.noarch.r 4.8 MB/s | 358 kB 00:00 2024-09-07T08:10:37.040 INFO:teuthology.orchestra.run.smithi018.stdout:(19/33): python3-jaraco-8.2.1-3.el9.noarch.rpm 182 kB/s | 11 kB 00:00 2024-09-07T08:10:37.065 INFO:teuthology.orchestra.run.smithi018.stdout:(20/33): python3-jaraco-classes-3.2.1-5.el9.noa 352 kB/s | 18 kB 00:00 2024-09-07T08:10:37.090 INFO:teuthology.orchestra.run.smithi018.stdout:(21/33): python3-jaraco-collections-3.0.0-8.el9 468 kB/s | 23 kB 00:00 2024-09-07T08:10:37.115 INFO:teuthology.orchestra.run.smithi018.stdout:(22/33): python3-jaraco-functools-3.5.0-2.el9.n 387 kB/s | 19 kB 00:00 2024-09-07T08:10:37.117 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 4/4 2024-09-07T08:10:37.118 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:10:37.118 INFO:teuthology.orchestra.run.smithi090.stdout:Installed: 2024-09-07T08:10:37.118 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-test-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:37.118 INFO:teuthology.orchestra.run.smithi090.stdout: libcephsqlite-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:37.118 INFO:teuthology.orchestra.run.smithi090.stdout: socat-1.7.4.1-6.el9.x86_64 2024-09-07T08:10:37.118 INFO:teuthology.orchestra.run.smithi090.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-09-07T08:10:37.118 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:10:37.119 INFO:teuthology.orchestra.run.smithi090.stdout:Complete! 2024-09-07T08:10:37.141 INFO:teuthology.orchestra.run.smithi018.stdout:(23/33): python3-jaraco-text-3.2.0-6.el9.noarch 392 kB/s | 20 kB 00:00 2024-09-07T08:10:37.166 INFO:teuthology.orchestra.run.smithi018.stdout:(24/33): python3-logutils-0.3.5-21.el9.noarch.r 923 kB/s | 46 kB 00:00 2024-09-07T08:10:37.191 INFO:teuthology.orchestra.run.smithi018.stdout:(25/33): python3-more-itertools-8.12.0-2.el9.no 1.5 MB/s | 79 kB 00:00 2024-09-07T08:10:37.216 INFO:teuthology.orchestra.run.smithi018.stdout:(26/33): python3-portend-3.1.0-2.el9.noarch.rpm 655 kB/s | 16 kB 00:00 2024-09-07T08:10:37.242 INFO:teuthology.orchestra.run.smithi018.stdout:(27/33): python3-pecan-1.4.2-3.el9.noarch.rpm 3.5 MB/s | 272 kB 00:00 2024-09-07T08:10:37.267 INFO:teuthology.orchestra.run.smithi018.stdout:(28/33): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.7 MB/s | 90 kB 00:00 2024-09-07T08:10:37.292 INFO:teuthology.orchestra.run.smithi018.stdout:(29/33): python3-tempora-5.0.0-2.el9.noarch.rpm 1.4 MB/s | 36 kB 00:00 2024-09-07T08:10:37.317 INFO:teuthology.orchestra.run.smithi018.stdout:(30/33): python3-toml-0.10.2-6.el9.noarch.rpm 64 kB/s | 42 kB 00:00 2024-09-07T08:10:37.359 INFO:teuthology.orchestra.run.smithi018.stdout:(31/33): python3-webob-1.8.8-2.el9.noarch.rpm 2.4 MB/s | 230 kB 00:00 2024-09-07T08:10:37.385 INFO:teuthology.orchestra.run.smithi018.stdout:(32/33): python3-zc-lockfile-2.0-10.el9.noarch. 298 kB/s | 20 kB 00:00 2024-09-07T08:10:37.410 INFO:teuthology.orchestra.run.smithi018.stdout:(33/33): python3-werkzeug-2.0.3-3.el9.1.noarch. 3.6 MB/s | 427 kB 00:00 2024-09-07T08:10:37.415 INFO:teuthology.orchestra.run.smithi018.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:10:37.415 INFO:teuthology.orchestra.run.smithi018.stdout:Total 9.4 MB/s | 29 MB 00:03 2024-09-07T08:10:37.464 DEBUG:teuthology.orchestra.run.smithi090:> sudo yum -y install ceph 2024-09-07T08:10:37.539 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction check 2024-09-07T08:10:37.580 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction check succeeded. 2024-09-07T08:10:37.580 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction test 2024-09-07T08:10:37.876 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction test succeeded. 2024-09-07T08:10:37.878 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction 2024-09-07T08:10:37.913 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-osd-2:18.2.4-812.g03cef208.el9.x86_64 30/33 2024-09-07T08:10:37.943 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-osd-2:18.2.4-812.g03cef208.el9.x86_64 30/33 2024-09-07T08:10:37.943 INFO:teuthology.orchestra.run.smithi191.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-07T08:10:37.943 INFO:teuthology.orchestra.run.smithi191.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-09-07T08:10:37.944 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-07T08:10:37.944 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-07T08:10:37.944 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:10:38.028 INFO:teuthology.orchestra.run.smithi090.stdout:Last metadata expiration check: 0:00:38 ago on Sat 07 Sep 2024 08:10:00 AM UTC. 2024-09-07T08:10:38.167 INFO:teuthology.orchestra.run.smithi090.stdout:Dependencies resolved. 2024-09-07T08:10:38.169 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:10:38.170 INFO:teuthology.orchestra.run.smithi090.stdout: Package Arch Version Repository Size 2024-09-07T08:10:38.170 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:10:38.170 INFO:teuthology.orchestra.run.smithi090.stdout:Installing: 2024-09-07T08:10:38.170 INFO:teuthology.orchestra.run.smithi090.stdout: ceph x86_64 2:18.2.4-812.g03cef208.el9 ceph 6.5 k 2024-09-07T08:10:38.170 INFO:teuthology.orchestra.run.smithi090.stdout:Installing dependencies: 2024-09-07T08:10:38.170 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-mds x86_64 2:18.2.4-812.g03cef208.el9 ceph 2.1 M 2024-09-07T08:10:38.170 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-mgr x86_64 2:18.2.4-812.g03cef208.el9 ceph 1.5 M 2024-09-07T08:10:38.170 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-mgr-modules-core noarch 2:18.2.4-812.g03cef208.el9 ceph-noarch 246 k 2024-09-07T08:10:38.170 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-mon x86_64 2:18.2.4-812.g03cef208.el9 ceph 4.7 M 2024-09-07T08:10:38.170 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-osd x86_64 2:18.2.4-812.g03cef208.el9 ceph 17 M 2024-09-07T08:10:38.170 INFO:teuthology.orchestra.run.smithi090.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-09-07T08:10:38.170 INFO:teuthology.orchestra.run.smithi090.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-09-07T08:10:38.171 INFO:teuthology.orchestra.run.smithi090.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-09-07T08:10:38.171 INFO:teuthology.orchestra.run.smithi090.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-09-07T08:10:38.171 INFO:teuthology.orchestra.run.smithi090.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-09-07T08:10:38.171 INFO:teuthology.orchestra.run.smithi090.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-09-07T08:10:38.171 INFO:teuthology.orchestra.run.smithi090.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-09-07T08:10:38.171 INFO:teuthology.orchestra.run.smithi090.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2024-09-07T08:10:38.171 INFO:teuthology.orchestra.run.smithi090.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-09-07T08:10:38.171 INFO:teuthology.orchestra.run.smithi090.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-09-07T08:10:38.171 INFO:teuthology.orchestra.run.smithi090.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-09-07T08:10:38.171 INFO:teuthology.orchestra.run.smithi090.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-09-07T08:10:38.171 INFO:teuthology.orchestra.run.smithi090.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-09-07T08:10:38.171 INFO:teuthology.orchestra.run.smithi090.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-09-07T08:10:38.172 INFO:teuthology.orchestra.run.smithi090.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-09-07T08:10:38.172 INFO:teuthology.orchestra.run.smithi090.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-09-07T08:10:38.172 INFO:teuthology.orchestra.run.smithi090.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-09-07T08:10:38.172 INFO:teuthology.orchestra.run.smithi090.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-09-07T08:10:38.172 INFO:teuthology.orchestra.run.smithi090.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-09-07T08:10:38.172 INFO:teuthology.orchestra.run.smithi090.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-09-07T08:10:38.172 INFO:teuthology.orchestra.run.smithi090.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-09-07T08:10:38.172 INFO:teuthology.orchestra.run.smithi090.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-09-07T08:10:38.172 INFO:teuthology.orchestra.run.smithi090.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-09-07T08:10:38.172 INFO:teuthology.orchestra.run.smithi090.stdout: python3-urllib3 noarch 1.26.5-6.el9 baseos 215 k 2024-09-07T08:10:38.172 INFO:teuthology.orchestra.run.smithi090.stdout: python3-webob noarch 1.8.8-2.el9 epel 230 k 2024-09-07T08:10:38.172 INFO:teuthology.orchestra.run.smithi090.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-09-07T08:10:38.172 INFO:teuthology.orchestra.run.smithi090.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-09-07T08:10:38.173 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:10:38.173 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction Summary 2024-09-07T08:10:38.173 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:10:38.173 INFO:teuthology.orchestra.run.smithi090.stdout:Install 33 Packages 2024-09-07T08:10:38.173 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:10:38.173 INFO:teuthology.orchestra.run.smithi090.stdout:Total download size: 29 M 2024-09-07T08:10:38.173 INFO:teuthology.orchestra.run.smithi090.stdout:Installed size: 104 M 2024-09-07T08:10:38.174 INFO:teuthology.orchestra.run.smithi090.stdout:Downloading Packages: 2024-09-07T08:10:38.389 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-mon-2:18.2.4-812.g03cef208.el9.x86_64 31/33 2024-09-07T08:10:38.414 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-mon-2:18.2.4-812.g03cef208.el9.x86_64 31/33 2024-09-07T08:10:38.414 INFO:teuthology.orchestra.run.smithi191.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-07T08:10:38.414 INFO:teuthology.orchestra.run.smithi191.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-09-07T08:10:38.414 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-07T08:10:38.414 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-07T08:10:38.414 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:10:38.584 INFO:teuthology.orchestra.run.smithi090.stdout:(1/33): ceph-18.2.4-812.g03cef208.el9.x86_64.rp 43 kB/s | 6.5 kB 00:00 2024-09-07T08:10:38.623 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-mds-2:18.2.4-812.g03cef208.el9.x86_64 32/33 2024-09-07T08:10:38.648 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-mds-2:18.2.4-812.g03cef208.el9.x86_64 32/33 2024-09-07T08:10:38.648 INFO:teuthology.orchestra.run.smithi191.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-07T08:10:38.648 INFO:teuthology.orchestra.run.smithi191.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-09-07T08:10:38.648 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-07T08:10:38.648 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-07T08:10:38.649 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:10:38.710 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-2:18.2.4-812.g03cef208.el9.x86_64 33/33 2024-09-07T08:10:38.768 INFO:teuthology.orchestra.run.smithi090.stdout:(2/33): ceph-mgr-18.2.4-812.g03cef208.el9.x86_6 4.4 MB/s | 1.5 MB 00:00 2024-09-07T08:10:38.818 INFO:teuthology.orchestra.run.smithi090.stdout:(3/33): ceph-mds-18.2.4-812.g03cef208.el9.x86_6 5.5 MB/s | 2.1 MB 00:00 2024-09-07T08:10:38.952 INFO:teuthology.orchestra.run.smithi090.stdout:(4/33): ceph-mon-18.2.4-812.g03cef208.el9.x86_6 13 MB/s | 4.7 MB 00:00 2024-09-07T08:10:38.977 INFO:teuthology.orchestra.run.smithi090.stdout:(5/33): ceph-mgr-modules-core-18.2.4-812.g03cef 1.5 MB/s | 246 kB 00:00 2024-09-07T08:10:39.078 INFO:teuthology.orchestra.run.smithi090.stdout:(6/33): python3-cffi-1.14.5-5.el9.x86_64.rpm 2.0 MB/s | 253 kB 00:00 2024-09-07T08:10:39.105 INFO:teuthology.orchestra.run.smithi018.stdout: Preparing : 1/1 2024-09-07T08:10:39.161 INFO:teuthology.orchestra.run.smithi090.stdout:(7/33): python3-cryptography-36.0.1-4.el9.x86_6 6.7 MB/s | 1.2 MB 00:00 2024-09-07T08:10:39.163 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/33 2024-09-07T08:10:39.187 INFO:teuthology.orchestra.run.smithi090.stdout:(8/33): python3-ply-3.11-14.el9.noarch.rpm 980 kB/s | 106 kB 00:00 2024-09-07T08:10:39.204 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/33 2024-09-07T08:10:39.230 INFO:teuthology.orchestra.run.smithi090.stdout:(9/33): python3-pycparser-2.20-6.el9.noarch.rpm 1.9 MB/s | 135 kB 00:00 2024-09-07T08:10:39.253 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 3/33 2024-09-07T08:10:39.349 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 4/33 2024-09-07T08:10:39.414 INFO:teuthology.orchestra.run.smithi090.stdout:(10/33): ceph-osd-18.2.4-812.g03cef208.el9.x86_ 26 MB/s | 17 MB 00:00 2024-09-07T08:10:39.439 INFO:teuthology.orchestra.run.smithi090.stdout:(11/33): python3-requests-2.25.1-8.el9.noarch.r 496 kB/s | 125 kB 00:00 2024-09-07T08:10:39.447 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 5/33 2024-09-07T08:10:39.472 INFO:teuthology.orchestra.run.smithi090.stdout:(12/33): python3-urllib3-1.26.5-6.el9.noarch.rp 887 kB/s | 215 kB 00:00 2024-09-07T08:10:39.490 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-webob-1.8.8-2.el9.noarch 6/33 2024-09-07T08:10:39.523 INFO:teuthology.orchestra.run.smithi090.stdout:(13/33): python3-markupsafe-1.1.1-12.el9.x86_64 416 kB/s | 35 kB 00:00 2024-09-07T08:10:39.525 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 7/33 2024-09-07T08:10:39.554 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 8/33 2024-09-07T08:10:39.565 INFO:teuthology.orchestra.run.smithi090.stdout:(14/33): python3-mako-1.1.4-6.el9.noarch.rpm 1.1 MB/s | 172 kB 00:00 2024-09-07T08:10:39.589 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 9/33 2024-09-07T08:10:39.590 INFO:teuthology.orchestra.run.smithi090.stdout:(15/33): python3-pytz-2021.1-5.el9.noarch.rpm 434 kB/s | 51 kB 00:00 2024-09-07T08:10:39.615 INFO:teuthology.orchestra.run.smithi090.stdout:(16/33): python3-toml-0.10.2-6.el9.noarch.rpm 450 kB/s | 42 kB 00:00 2024-09-07T08:10:39.622 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 10/33 2024-09-07T08:10:39.666 INFO:teuthology.orchestra.run.smithi090.stdout:(17/33): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 431 kB/s | 43 kB 00:00 2024-09-07T08:10:39.671 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 11/33 2024-09-07T08:10:39.691 INFO:teuthology.orchestra.run.smithi090.stdout:(18/33): python3-jaraco-8.2.1-3.el9.noarch.rpm 460 kB/s | 11 kB 00:00 2024-09-07T08:10:39.715 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 12/33 2024-09-07T08:10:39.716 INFO:teuthology.orchestra.run.smithi090.stdout:(19/33): python3-jaraco-classes-3.2.1-5.el9.noa 709 kB/s | 18 kB 00:00 2024-09-07T08:10:39.742 INFO:teuthology.orchestra.run.smithi090.stdout:(20/33): python3-cheroot-8.6.0-4.el9.noarch.rpm 1.1 MB/s | 172 kB 00:00 2024-09-07T08:10:39.749 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 13/33 2024-09-07T08:10:39.767 INFO:teuthology.orchestra.run.smithi090.stdout:(21/33): python3-jaraco-collections-3.0.0-8.el9 458 kB/s | 23 kB 00:00 2024-09-07T08:10:39.787 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 14/33 2024-09-07T08:10:39.792 INFO:teuthology.orchestra.run.smithi090.stdout:(22/33): python3-jaraco-functools-3.5.0-2.el9.n 386 kB/s | 19 kB 00:00 2024-09-07T08:10:39.818 INFO:teuthology.orchestra.run.smithi090.stdout:(23/33): python3-jaraco-text-3.2.0-6.el9.noarch 392 kB/s | 20 kB 00:00 2024-09-07T08:10:39.843 INFO:teuthology.orchestra.run.smithi090.stdout:(24/33): python3-logutils-0.3.5-21.el9.noarch.r 922 kB/s | 46 kB 00:00 2024-09-07T08:10:39.863 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 15/33 2024-09-07T08:10:39.877 INFO:teuthology.orchestra.run.smithi090.stdout:(25/33): python3-more-itertools-8.12.0-2.el9.no 1.3 MB/s | 79 kB 00:00 2024-09-07T08:10:39.911 INFO:teuthology.orchestra.run.smithi090.stdout:(26/33): python3-cherrypy-18.6.1-2.el9.noarch.r 1.2 MB/s | 358 kB 00:00 2024-09-07T08:10:39.936 INFO:teuthology.orchestra.run.smithi090.stdout:(27/33): python3-portend-3.1.0-2.el9.noarch.rpm 279 kB/s | 16 kB 00:00 2024-09-07T08:10:39.969 INFO:teuthology.orchestra.run.smithi090.stdout:(28/33): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.5 MB/s | 90 kB 00:00 2024-09-07T08:10:39.995 INFO:teuthology.orchestra.run.smithi090.stdout:(29/33): python3-tempora-5.0.0-2.el9.noarch.rpm 608 kB/s | 36 kB 00:00 2024-09-07T08:10:40.005 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 16/33 2024-09-07T08:10:40.020 INFO:teuthology.orchestra.run.smithi090.stdout:(30/33): python3-pecan-1.4.2-3.el9.noarch.rpm 1.5 MB/s | 272 kB 00:00 2024-09-07T08:10:40.045 INFO:teuthology.orchestra.run.smithi090.stdout:(31/33): python3-zc-lockfile-2.0-10.el9.noarch. 804 kB/s | 20 kB 00:00 2024-09-07T08:10:40.079 INFO:teuthology.orchestra.run.smithi090.stdout:(32/33): python3-webob-1.8.8-2.el9.noarch.rpm 2.1 MB/s | 230 kB 00:00 2024-09-07T08:10:40.089 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 17/33 2024-09-07T08:10:40.113 INFO:teuthology.orchestra.run.smithi090.stdout:(33/33): python3-werkzeug-2.0.3-3.el9.1.noarch. 3.6 MB/s | 427 kB 00:00 2024-09-07T08:10:40.117 INFO:teuthology.orchestra.run.smithi090.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:10:40.117 INFO:teuthology.orchestra.run.smithi090.stdout:Total 15 MB/s | 29 MB 00:01 2024-09-07T08:10:40.141 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-urllib3-1.26.5-6.el9.noarch 18/33 2024-09-07T08:10:40.195 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 19/33 2024-09-07T08:10:40.232 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction check 2024-09-07T08:10:40.262 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-ply-3.11-14.el9.noarch 20/33 2024-09-07T08:10:40.270 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction check succeeded. 2024-09-07T08:10:40.270 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction test 2024-09-07T08:10:40.326 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 21/33 2024-09-07T08:10:40.450 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-2:18.2.4-812.g03cef208.el9.x86_64 33/33 2024-09-07T08:10:40.450 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-2:18.2.4-812.g03cef208.el9.x86_64 1/33 2024-09-07T08:10:40.450 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-mds-2:18.2.4-812.g03cef208.el9.x86_64 2/33 2024-09-07T08:10:40.450 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-mgr-2:18.2.4-812.g03cef208.el9.x86_64 3/33 2024-09-07T08:10:40.451 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-mon-2:18.2.4-812.g03cef208.el9.x86_64 4/33 2024-09-07T08:10:40.451 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-osd-2:18.2.4-812.g03cef208.el9.x86_64 5/33 2024-09-07T08:10:40.451 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-mgr-modules-core-2:18.2.4-812.g03cef208.el9.n 6/33 2024-09-07T08:10:40.451 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/33 2024-09-07T08:10:40.451 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/33 2024-09-07T08:10:40.451 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/33 2024-09-07T08:10:40.451 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/33 2024-09-07T08:10:40.451 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/33 2024-09-07T08:10:40.451 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-urllib3-1.26.5-6.el9.noarch 12/33 2024-09-07T08:10:40.451 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 13/33 2024-09-07T08:10:40.451 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 14/33 2024-09-07T08:10:40.451 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 15/33 2024-09-07T08:10:40.451 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 16/33 2024-09-07T08:10:40.451 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 17/33 2024-09-07T08:10:40.452 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 18/33 2024-09-07T08:10:40.452 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 19/33 2024-09-07T08:10:40.452 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 20/33 2024-09-07T08:10:40.452 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 21/33 2024-09-07T08:10:40.452 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 22/33 2024-09-07T08:10:40.452 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 23/33 2024-09-07T08:10:40.452 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 24/33 2024-09-07T08:10:40.452 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 25/33 2024-09-07T08:10:40.452 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 26/33 2024-09-07T08:10:40.452 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 27/33 2024-09-07T08:10:40.452 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 28/33 2024-09-07T08:10:40.453 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 29/33 2024-09-07T08:10:40.453 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 30/33 2024-09-07T08:10:40.453 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-webob-1.8.8-2.el9.noarch 31/33 2024-09-07T08:10:40.453 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 32/33 2024-09-07T08:10:40.517 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 22/33 2024-09-07T08:10:40.552 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction test succeeded. 2024-09-07T08:10:40.570 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction 2024-09-07T08:10:40.574 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 23/33 2024-09-07T08:10:40.662 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 24/33 2024-09-07T08:10:40.761 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 25/33 2024-09-07T08:10:40.832 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 26/33 2024-09-07T08:10:40.952 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 27/33 2024-09-07T08:10:41.114 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : ceph-mgr-modules-core-2:18.2.4-812.g03cef208.el9.n 28/33 2024-09-07T08:10:41.142 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : ceph-mgr-2:18.2.4-812.g03cef208.el9.x86_64 29/33 2024-09-07T08:10:41.168 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: ceph-mgr-2:18.2.4-812.g03cef208.el9.x86_64 29/33 2024-09-07T08:10:41.168 INFO:teuthology.orchestra.run.smithi018.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-07T08:10:41.168 INFO:teuthology.orchestra.run.smithi018.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-09-07T08:10:41.168 INFO:teuthology.orchestra.run.smithi018.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-07T08:10:41.168 INFO:teuthology.orchestra.run.smithi018.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-07T08:10:41.168 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:10:41.467 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 33/33 2024-09-07T08:10:41.467 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:10:41.467 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-07T08:10:41.467 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:41.467 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mds-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:41.467 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:41.467 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr-modules-core-2:18.2.4-812.g03cef208.el9.noarch 2024-09-07T08:10:41.467 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mon-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:41.467 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-osd-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:41.468 INFO:teuthology.orchestra.run.smithi191.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-09-07T08:10:41.468 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-09-07T08:10:41.468 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-09-07T08:10:41.468 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-09-07T08:10:41.468 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-09-07T08:10:41.468 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-09-07T08:10:41.468 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-09-07T08:10:41.468 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-09-07T08:10:41.468 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-09-07T08:10:41.468 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-09-07T08:10:41.469 INFO:teuthology.orchestra.run.smithi191.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-09-07T08:10:41.469 INFO:teuthology.orchestra.run.smithi191.stdout: python3-mako-1.1.4-6.el9.noarch 2024-09-07T08:10:41.469 INFO:teuthology.orchestra.run.smithi191.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-09-07T08:10:41.469 INFO:teuthology.orchestra.run.smithi191.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-09-07T08:10:41.469 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-09-07T08:10:41.469 INFO:teuthology.orchestra.run.smithi191.stdout: python3-ply-3.11-14.el9.noarch 2024-09-07T08:10:41.469 INFO:teuthology.orchestra.run.smithi191.stdout: python3-portend-3.1.0-2.el9.noarch 2024-09-07T08:10:41.469 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-09-07T08:10:41.469 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pycparser-2.20-6.el9.noarch 2024-09-07T08:10:41.469 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pytz-2021.1-5.el9.noarch 2024-09-07T08:10:41.469 INFO:teuthology.orchestra.run.smithi191.stdout: python3-requests-2.25.1-8.el9.noarch 2024-09-07T08:10:41.470 INFO:teuthology.orchestra.run.smithi191.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-09-07T08:10:41.470 INFO:teuthology.orchestra.run.smithi191.stdout: python3-toml-0.10.2-6.el9.noarch 2024-09-07T08:10:41.470 INFO:teuthology.orchestra.run.smithi191.stdout: python3-urllib3-1.26.5-6.el9.noarch 2024-09-07T08:10:41.470 INFO:teuthology.orchestra.run.smithi191.stdout: python3-webob-1.8.8-2.el9.noarch 2024-09-07T08:10:41.470 INFO:teuthology.orchestra.run.smithi191.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-09-07T08:10:41.470 INFO:teuthology.orchestra.run.smithi191.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-09-07T08:10:41.470 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:10:41.470 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-07T08:10:41.832 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph-base 2024-09-07T08:10:41.840 INFO:teuthology.orchestra.run.smithi090.stdout: Preparing : 1/1 2024-09-07T08:10:41.892 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/33 2024-09-07T08:10:41.933 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/33 2024-09-07T08:10:41.966 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 3/33 2024-09-07T08:10:42.057 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 4/33 2024-09-07T08:10:42.144 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 5/33 2024-09-07T08:10:42.185 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-webob-1.8.8-2.el9.noarch 6/33 2024-09-07T08:10:42.221 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 7/33 2024-09-07T08:10:42.251 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 8/33 2024-09-07T08:10:42.286 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 9/33 2024-09-07T08:10:42.319 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 10/33 2024-09-07T08:10:42.361 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 11/33 2024-09-07T08:10:42.389 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:00:50 ago on Sat 07 Sep 2024 08:09:52 AM UTC. 2024-09-07T08:10:42.404 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 12/33 2024-09-07T08:10:42.439 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 13/33 2024-09-07T08:10:42.477 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 14/33 2024-09-07T08:10:42.479 INFO:teuthology.orchestra.run.smithi191.stdout:Package ceph-base-2:18.2.4-812.g03cef208.el9.x86_64 is already installed. 2024-09-07T08:10:42.520 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-07T08:10:42.521 INFO:teuthology.orchestra.run.smithi191.stdout:Nothing to do. 2024-09-07T08:10:42.522 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-07T08:10:42.550 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 15/33 2024-09-07T08:10:42.587 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install cephadm 2024-09-07T08:10:42.659 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : ceph-osd-2:18.2.4-812.g03cef208.el9.x86_64 30/33 2024-09-07T08:10:42.687 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: ceph-osd-2:18.2.4-812.g03cef208.el9.x86_64 30/33 2024-09-07T08:10:42.687 INFO:teuthology.orchestra.run.smithi018.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-07T08:10:42.687 INFO:teuthology.orchestra.run.smithi018.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-09-07T08:10:42.687 INFO:teuthology.orchestra.run.smithi018.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-07T08:10:42.687 INFO:teuthology.orchestra.run.smithi018.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-07T08:10:42.687 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:10:42.689 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 16/33 2024-09-07T08:10:42.770 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 17/33 2024-09-07T08:10:42.832 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-urllib3-1.26.5-6.el9.noarch 18/33 2024-09-07T08:10:42.880 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 19/33 2024-09-07T08:10:42.937 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-ply-3.11-14.el9.noarch 20/33 2024-09-07T08:10:43.001 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 21/33 2024-09-07T08:10:43.140 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:00:51 ago on Sat 07 Sep 2024 08:09:52 AM UTC. 2024-09-07T08:10:43.151 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : ceph-mon-2:18.2.4-812.g03cef208.el9.x86_64 31/33 2024-09-07T08:10:43.175 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: ceph-mon-2:18.2.4-812.g03cef208.el9.x86_64 31/33 2024-09-07T08:10:43.175 INFO:teuthology.orchestra.run.smithi018.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-07T08:10:43.176 INFO:teuthology.orchestra.run.smithi018.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-09-07T08:10:43.176 INFO:teuthology.orchestra.run.smithi018.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-07T08:10:43.176 INFO:teuthology.orchestra.run.smithi018.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-07T08:10:43.176 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:10:43.187 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 22/33 2024-09-07T08:10:43.243 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 23/33 2024-09-07T08:10:43.269 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-07T08:10:43.270 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:10:43.271 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repository Size 2024-09-07T08:10:43.271 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:10:43.271 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-07T08:10:43.271 INFO:teuthology.orchestra.run.smithi191.stdout: cephadm noarch 2:18.2.4-812.g03cef208.el9 ceph-noarch 226 k 2024-09-07T08:10:43.271 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:10:43.271 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-07T08:10:43.271 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:10:43.271 INFO:teuthology.orchestra.run.smithi191.stdout:Install 1 Package 2024-09-07T08:10:43.271 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:10:43.271 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 226 k 2024-09-07T08:10:43.271 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 217 k 2024-09-07T08:10:43.272 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-07T08:10:43.321 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 24/33 2024-09-07T08:10:43.394 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : ceph-mds-2:18.2.4-812.g03cef208.el9.x86_64 32/33 2024-09-07T08:10:43.410 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 25/33 2024-09-07T08:10:43.418 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: ceph-mds-2:18.2.4-812.g03cef208.el9.x86_64 32/33 2024-09-07T08:10:43.418 INFO:teuthology.orchestra.run.smithi018.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-07T08:10:43.418 INFO:teuthology.orchestra.run.smithi018.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-09-07T08:10:43.418 INFO:teuthology.orchestra.run.smithi018.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-07T08:10:43.418 INFO:teuthology.orchestra.run.smithi018.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-07T08:10:43.418 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:10:43.452 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 26/33 2024-09-07T08:10:43.481 INFO:teuthology.orchestra.run.smithi191.stdout:cephadm-18.2.4-812.g03cef208.el9.noarch.rpm 1.1 MB/s | 226 kB 00:00 2024-09-07T08:10:43.481 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:10:43.481 INFO:teuthology.orchestra.run.smithi191.stdout:Total 1.0 MB/s | 226 kB 00:00 2024-09-07T08:10:43.482 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-07T08:10:43.483 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : ceph-2:18.2.4-812.g03cef208.el9.x86_64 33/33 2024-09-07T08:10:43.487 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-07T08:10:43.487 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-07T08:10:43.489 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-07T08:10:43.490 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-07T08:10:43.558 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-07T08:10:43.570 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 27/33 2024-09-07T08:10:43.727 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : ceph-mgr-modules-core-2:18.2.4-812.g03cef208.el9.n 28/33 2024-09-07T08:10:43.755 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : ceph-mgr-2:18.2.4-812.g03cef208.el9.x86_64 29/33 2024-09-07T08:10:43.780 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: ceph-mgr-2:18.2.4-812.g03cef208.el9.x86_64 29/33 2024-09-07T08:10:43.780 INFO:teuthology.orchestra.run.smithi090.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-07T08:10:43.780 INFO:teuthology.orchestra.run.smithi090.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-09-07T08:10:43.780 INFO:teuthology.orchestra.run.smithi090.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-07T08:10:43.780 INFO:teuthology.orchestra.run.smithi090.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-07T08:10:43.780 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:10:44.010 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: cephadm-2:18.2.4-812.g03cef208.el9.noarch 1/1 2024-09-07T08:10:44.092 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : cephadm-2:18.2.4-812.g03cef208.el9.noarch 1/1 2024-09-07T08:10:44.385 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: cephadm-2:18.2.4-812.g03cef208.el9.noarch 1/1 2024-09-07T08:10:44.635 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : cephadm-2:18.2.4-812.g03cef208.el9.noarch 1/1 2024-09-07T08:10:44.635 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:10:44.635 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-07T08:10:44.635 INFO:teuthology.orchestra.run.smithi191.stdout: cephadm-2:18.2.4-812.g03cef208.el9.noarch 2024-09-07T08:10:44.635 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:10:44.636 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-07T08:10:44.860 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph-immutable-object-cache 2024-09-07T08:10:45.226 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: ceph-2:18.2.4-812.g03cef208.el9.x86_64 33/33 2024-09-07T08:10:45.226 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : ceph-2:18.2.4-812.g03cef208.el9.x86_64 1/33 2024-09-07T08:10:45.226 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : ceph-mds-2:18.2.4-812.g03cef208.el9.x86_64 2/33 2024-09-07T08:10:45.227 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : ceph-mgr-2:18.2.4-812.g03cef208.el9.x86_64 3/33 2024-09-07T08:10:45.227 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : ceph-mon-2:18.2.4-812.g03cef208.el9.x86_64 4/33 2024-09-07T08:10:45.227 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : ceph-osd-2:18.2.4-812.g03cef208.el9.x86_64 5/33 2024-09-07T08:10:45.227 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : ceph-mgr-modules-core-2:18.2.4-812.g03cef208.el9.n 6/33 2024-09-07T08:10:45.227 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/33 2024-09-07T08:10:45.227 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/33 2024-09-07T08:10:45.227 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/33 2024-09-07T08:10:45.227 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/33 2024-09-07T08:10:45.227 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/33 2024-09-07T08:10:45.227 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-urllib3-1.26.5-6.el9.noarch 12/33 2024-09-07T08:10:45.227 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 13/33 2024-09-07T08:10:45.227 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 14/33 2024-09-07T08:10:45.227 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 15/33 2024-09-07T08:10:45.227 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 16/33 2024-09-07T08:10:45.228 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 17/33 2024-09-07T08:10:45.228 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 18/33 2024-09-07T08:10:45.228 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 19/33 2024-09-07T08:10:45.228 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 20/33 2024-09-07T08:10:45.228 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 21/33 2024-09-07T08:10:45.228 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 22/33 2024-09-07T08:10:45.228 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 23/33 2024-09-07T08:10:45.228 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 24/33 2024-09-07T08:10:45.228 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 25/33 2024-09-07T08:10:45.228 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 26/33 2024-09-07T08:10:45.228 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 27/33 2024-09-07T08:10:45.229 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 28/33 2024-09-07T08:10:45.229 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 29/33 2024-09-07T08:10:45.229 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 30/33 2024-09-07T08:10:45.229 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-webob-1.8.8-2.el9.noarch 31/33 2024-09-07T08:10:45.229 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 32/33 2024-09-07T08:10:45.240 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : ceph-osd-2:18.2.4-812.g03cef208.el9.x86_64 30/33 2024-09-07T08:10:45.269 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: ceph-osd-2:18.2.4-812.g03cef208.el9.x86_64 30/33 2024-09-07T08:10:45.269 INFO:teuthology.orchestra.run.smithi090.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-07T08:10:45.269 INFO:teuthology.orchestra.run.smithi090.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-09-07T08:10:45.269 INFO:teuthology.orchestra.run.smithi090.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-07T08:10:45.269 INFO:teuthology.orchestra.run.smithi090.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-07T08:10:45.269 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:10:45.422 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:00:53 ago on Sat 07 Sep 2024 08:09:52 AM UTC. 2024-09-07T08:10:45.554 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-07T08:10:45.555 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:10:45.555 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repo Size 2024-09-07T08:10:45.555 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:10:45.556 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-07T08:10:45.556 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-immutable-object-cache x86_64 2:18.2.4-812.g03cef208.el9 ceph 142 k 2024-09-07T08:10:45.556 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:10:45.556 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-07T08:10:45.556 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:10:45.556 INFO:teuthology.orchestra.run.smithi191.stdout:Install 1 Package 2024-09-07T08:10:45.556 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:10:45.556 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 142 k 2024-09-07T08:10:45.556 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 395 k 2024-09-07T08:10:45.556 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-07T08:10:45.787 INFO:teuthology.orchestra.run.smithi191.stdout:ceph-immutable-object-cache-18.2.4-812.g03cef20 618 kB/s | 142 kB 00:00 2024-09-07T08:10:45.788 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:10:45.788 INFO:teuthology.orchestra.run.smithi191.stdout:Total 613 kB/s | 142 kB 00:00 2024-09-07T08:10:45.788 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-07T08:10:45.795 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-07T08:10:45.796 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-07T08:10:45.852 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-07T08:10:45.853 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-07T08:10:45.982 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : ceph-mon-2:18.2.4-812.g03cef208.el9.x86_64 31/33 2024-09-07T08:10:46.007 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: ceph-mon-2:18.2.4-812.g03cef208.el9.x86_64 31/33 2024-09-07T08:10:46.007 INFO:teuthology.orchestra.run.smithi090.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-07T08:10:46.007 INFO:teuthology.orchestra.run.smithi090.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-09-07T08:10:46.007 INFO:teuthology.orchestra.run.smithi090.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-07T08:10:46.007 INFO:teuthology.orchestra.run.smithi090.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-07T08:10:46.007 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:10:46.013 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-07T08:10:46.105 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-immutable-object-cache-2:18.2.4-812.g03cef208.e 1/1 2024-09-07T08:10:46.130 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-immutable-object-cache-2:18.2.4-812.g03cef208.e 1/1 2024-09-07T08:10:46.130 INFO:teuthology.orchestra.run.smithi191.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-07T08:10:46.130 INFO:teuthology.orchestra.run.smithi191.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-09-07T08:10:46.130 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:10:46.209 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : ceph-mds-2:18.2.4-812.g03cef208.el9.x86_64 32/33 2024-09-07T08:10:46.233 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: ceph-mds-2:18.2.4-812.g03cef208.el9.x86_64 32/33 2024-09-07T08:10:46.233 INFO:teuthology.orchestra.run.smithi090.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-07T08:10:46.233 INFO:teuthology.orchestra.run.smithi090.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-09-07T08:10:46.233 INFO:teuthology.orchestra.run.smithi090.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-07T08:10:46.233 INFO:teuthology.orchestra.run.smithi090.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-07T08:10:46.233 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:10:46.297 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : ceph-2:18.2.4-812.g03cef208.el9.x86_64 33/33 2024-09-07T08:10:46.329 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 33/33 2024-09-07T08:10:46.330 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:10:46.330 INFO:teuthology.orchestra.run.smithi018.stdout:Installed: 2024-09-07T08:10:46.330 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:46.330 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-mds-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:46.330 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-mgr-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:46.330 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-mgr-modules-core-2:18.2.4-812.g03cef208.el9.noarch 2024-09-07T08:10:46.330 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-mon-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:46.330 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-osd-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:46.330 INFO:teuthology.orchestra.run.smithi018.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-09-07T08:10:46.330 INFO:teuthology.orchestra.run.smithi018.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-09-07T08:10:46.330 INFO:teuthology.orchestra.run.smithi018.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-09-07T08:10:46.330 INFO:teuthology.orchestra.run.smithi018.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-09-07T08:10:46.331 INFO:teuthology.orchestra.run.smithi018.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-09-07T08:10:46.331 INFO:teuthology.orchestra.run.smithi018.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-09-07T08:10:46.331 INFO:teuthology.orchestra.run.smithi018.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-09-07T08:10:46.331 INFO:teuthology.orchestra.run.smithi018.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-09-07T08:10:46.331 INFO:teuthology.orchestra.run.smithi018.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-09-07T08:10:46.331 INFO:teuthology.orchestra.run.smithi018.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-09-07T08:10:46.331 INFO:teuthology.orchestra.run.smithi018.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-09-07T08:10:46.331 INFO:teuthology.orchestra.run.smithi018.stdout: python3-mako-1.1.4-6.el9.noarch 2024-09-07T08:10:46.331 INFO:teuthology.orchestra.run.smithi018.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-09-07T08:10:46.331 INFO:teuthology.orchestra.run.smithi018.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-09-07T08:10:46.331 INFO:teuthology.orchestra.run.smithi018.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-09-07T08:10:46.331 INFO:teuthology.orchestra.run.smithi018.stdout: python3-ply-3.11-14.el9.noarch 2024-09-07T08:10:46.331 INFO:teuthology.orchestra.run.smithi018.stdout: python3-portend-3.1.0-2.el9.noarch 2024-09-07T08:10:46.332 INFO:teuthology.orchestra.run.smithi018.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-09-07T08:10:46.332 INFO:teuthology.orchestra.run.smithi018.stdout: python3-pycparser-2.20-6.el9.noarch 2024-09-07T08:10:46.332 INFO:teuthology.orchestra.run.smithi018.stdout: python3-pytz-2021.1-5.el9.noarch 2024-09-07T08:10:46.332 INFO:teuthology.orchestra.run.smithi018.stdout: python3-requests-2.25.1-8.el9.noarch 2024-09-07T08:10:46.332 INFO:teuthology.orchestra.run.smithi018.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-09-07T08:10:46.332 INFO:teuthology.orchestra.run.smithi018.stdout: python3-toml-0.10.2-6.el9.noarch 2024-09-07T08:10:46.332 INFO:teuthology.orchestra.run.smithi018.stdout: python3-urllib3-1.26.5-6.el9.noarch 2024-09-07T08:10:46.332 INFO:teuthology.orchestra.run.smithi018.stdout: python3-webob-1.8.8-2.el9.noarch 2024-09-07T08:10:46.332 INFO:teuthology.orchestra.run.smithi018.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-09-07T08:10:46.332 INFO:teuthology.orchestra.run.smithi018.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-09-07T08:10:46.332 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:10:46.332 INFO:teuthology.orchestra.run.smithi018.stdout:Complete! 2024-09-07T08:10:46.664 DEBUG:teuthology.orchestra.run.smithi018:> sudo yum -y install ceph-base 2024-09-07T08:10:47.059 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-immutable-object-cache-2:18.2.4-812.g03cef208.e 1/1 2024-09-07T08:10:47.059 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:10:47.060 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-07T08:10:47.060 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-immutable-object-cache-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:47.060 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:10:47.060 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-07T08:10:47.231 INFO:teuthology.orchestra.run.smithi018.stdout:Last metadata expiration check: 0:00:51 ago on Sat 07 Sep 2024 08:09:56 AM UTC. 2024-09-07T08:10:47.316 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph-mgr 2024-09-07T08:10:47.323 INFO:teuthology.orchestra.run.smithi018.stdout:Package ceph-base-2:18.2.4-812.g03cef208.el9.x86_64 is already installed. 2024-09-07T08:10:47.367 INFO:teuthology.orchestra.run.smithi018.stdout:Dependencies resolved. 2024-09-07T08:10:47.369 INFO:teuthology.orchestra.run.smithi018.stdout:Nothing to do. 2024-09-07T08:10:47.369 INFO:teuthology.orchestra.run.smithi018.stdout:Complete! 2024-09-07T08:10:47.442 DEBUG:teuthology.orchestra.run.smithi018:> sudo yum -y install cephadm 2024-09-07T08:10:47.888 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:00:55 ago on Sat 07 Sep 2024 08:09:52 AM UTC. 2024-09-07T08:10:47.983 INFO:teuthology.orchestra.run.smithi191.stdout:Package ceph-mgr-2:18.2.4-812.g03cef208.el9.x86_64 is already installed. 2024-09-07T08:10:48.002 INFO:teuthology.orchestra.run.smithi018.stdout:Last metadata expiration check: 0:00:52 ago on Sat 07 Sep 2024 08:09:56 AM UTC. 2024-09-07T08:10:48.011 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: ceph-2:18.2.4-812.g03cef208.el9.x86_64 33/33 2024-09-07T08:10:48.011 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : ceph-2:18.2.4-812.g03cef208.el9.x86_64 1/33 2024-09-07T08:10:48.011 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : ceph-mds-2:18.2.4-812.g03cef208.el9.x86_64 2/33 2024-09-07T08:10:48.011 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : ceph-mgr-2:18.2.4-812.g03cef208.el9.x86_64 3/33 2024-09-07T08:10:48.011 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : ceph-mon-2:18.2.4-812.g03cef208.el9.x86_64 4/33 2024-09-07T08:10:48.011 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : ceph-osd-2:18.2.4-812.g03cef208.el9.x86_64 5/33 2024-09-07T08:10:48.011 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : ceph-mgr-modules-core-2:18.2.4-812.g03cef208.el9.n 6/33 2024-09-07T08:10:48.011 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/33 2024-09-07T08:10:48.011 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/33 2024-09-07T08:10:48.011 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/33 2024-09-07T08:10:48.011 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/33 2024-09-07T08:10:48.012 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/33 2024-09-07T08:10:48.012 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-urllib3-1.26.5-6.el9.noarch 12/33 2024-09-07T08:10:48.012 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 13/33 2024-09-07T08:10:48.012 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 14/33 2024-09-07T08:10:48.012 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 15/33 2024-09-07T08:10:48.012 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 16/33 2024-09-07T08:10:48.012 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 17/33 2024-09-07T08:10:48.012 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 18/33 2024-09-07T08:10:48.012 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 19/33 2024-09-07T08:10:48.012 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 20/33 2024-09-07T08:10:48.012 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 21/33 2024-09-07T08:10:48.012 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 22/33 2024-09-07T08:10:48.012 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 23/33 2024-09-07T08:10:48.013 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 24/33 2024-09-07T08:10:48.013 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 25/33 2024-09-07T08:10:48.014 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 26/33 2024-09-07T08:10:48.014 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 27/33 2024-09-07T08:10:48.014 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 28/33 2024-09-07T08:10:48.014 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 29/33 2024-09-07T08:10:48.014 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 30/33 2024-09-07T08:10:48.014 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-webob-1.8.8-2.el9.noarch 31/33 2024-09-07T08:10:48.014 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 32/33 2024-09-07T08:10:48.025 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-07T08:10:48.026 INFO:teuthology.orchestra.run.smithi191.stdout:Nothing to do. 2024-09-07T08:10:48.026 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-07T08:10:48.091 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph-mgr-dashboard 2024-09-07T08:10:48.138 INFO:teuthology.orchestra.run.smithi018.stdout:Dependencies resolved. 2024-09-07T08:10:48.139 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:10:48.139 INFO:teuthology.orchestra.run.smithi018.stdout: Package Arch Version Repository Size 2024-09-07T08:10:48.139 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:10:48.139 INFO:teuthology.orchestra.run.smithi018.stdout:Installing: 2024-09-07T08:10:48.140 INFO:teuthology.orchestra.run.smithi018.stdout: cephadm noarch 2:18.2.4-812.g03cef208.el9 ceph-noarch 226 k 2024-09-07T08:10:48.140 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:10:48.140 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction Summary 2024-09-07T08:10:48.140 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:10:48.140 INFO:teuthology.orchestra.run.smithi018.stdout:Install 1 Package 2024-09-07T08:10:48.140 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:10:48.140 INFO:teuthology.orchestra.run.smithi018.stdout:Total download size: 226 k 2024-09-07T08:10:48.140 INFO:teuthology.orchestra.run.smithi018.stdout:Installed size: 217 k 2024-09-07T08:10:48.140 INFO:teuthology.orchestra.run.smithi018.stdout:Downloading Packages: 2024-09-07T08:10:48.618 INFO:teuthology.orchestra.run.smithi018.stdout:cephadm-18.2.4-812.g03cef208.el9.noarch.rpm 473 kB/s | 226 kB 00:00 2024-09-07T08:10:48.618 INFO:teuthology.orchestra.run.smithi018.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:10:48.619 INFO:teuthology.orchestra.run.smithi018.stdout:Total 471 kB/s | 226 kB 00:00 2024-09-07T08:10:48.619 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction check 2024-09-07T08:10:48.625 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction check succeeded. 2024-09-07T08:10:48.625 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction test 2024-09-07T08:10:48.627 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction test succeeded. 2024-09-07T08:10:48.628 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction 2024-09-07T08:10:48.654 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:00:56 ago on Sat 07 Sep 2024 08:09:52 AM UTC. 2024-09-07T08:10:48.697 INFO:teuthology.orchestra.run.smithi018.stdout: Preparing : 1/1 2024-09-07T08:10:48.785 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-07T08:10:48.786 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:10:48.786 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repository Size 2024-09-07T08:10:48.786 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:10:48.786 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-07T08:10:48.786 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr-dashboard noarch 2:18.2.4-812.g03cef208.el9 ceph-noarch 3.5 M 2024-09-07T08:10:48.786 INFO:teuthology.orchestra.run.smithi191.stdout:Installing dependencies: 2024-09-07T08:10:48.786 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-grafana-dashboards noarch 2:18.2.4-812.g03cef208.el9 ceph-noarch 24 k 2024-09-07T08:10:48.786 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-prometheus-alerts noarch 2:18.2.4-812.g03cef208.el9 ceph-noarch 16 k 2024-09-07T08:10:48.786 INFO:teuthology.orchestra.run.smithi191.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-09-07T08:10:48.787 INFO:teuthology.orchestra.run.smithi191.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-09-07T08:10:48.787 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:10:48.787 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-07T08:10:48.787 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:10:48.787 INFO:teuthology.orchestra.run.smithi191.stdout:Install 5 Packages 2024-09-07T08:10:48.787 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:10:48.787 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 3.8 M 2024-09-07T08:10:48.788 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 87 M 2024-09-07T08:10:48.788 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-07T08:10:48.922 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 33/33 2024-09-07T08:10:48.923 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:10:48.923 INFO:teuthology.orchestra.run.smithi090.stdout:Installed: 2024-09-07T08:10:48.923 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:48.923 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-mds-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:48.923 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-mgr-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:48.923 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-mgr-modules-core-2:18.2.4-812.g03cef208.el9.noarch 2024-09-07T08:10:48.923 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-mon-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:48.923 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-osd-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:48.924 INFO:teuthology.orchestra.run.smithi090.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-09-07T08:10:48.924 INFO:teuthology.orchestra.run.smithi090.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-09-07T08:10:48.924 INFO:teuthology.orchestra.run.smithi090.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-09-07T08:10:48.924 INFO:teuthology.orchestra.run.smithi090.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-09-07T08:10:48.924 INFO:teuthology.orchestra.run.smithi090.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-09-07T08:10:48.924 INFO:teuthology.orchestra.run.smithi090.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-09-07T08:10:48.924 INFO:teuthology.orchestra.run.smithi090.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-09-07T08:10:48.924 INFO:teuthology.orchestra.run.smithi090.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-09-07T08:10:48.924 INFO:teuthology.orchestra.run.smithi090.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-09-07T08:10:48.924 INFO:teuthology.orchestra.run.smithi090.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-09-07T08:10:48.924 INFO:teuthology.orchestra.run.smithi090.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-09-07T08:10:48.924 INFO:teuthology.orchestra.run.smithi090.stdout: python3-mako-1.1.4-6.el9.noarch 2024-09-07T08:10:48.924 INFO:teuthology.orchestra.run.smithi090.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-09-07T08:10:48.924 INFO:teuthology.orchestra.run.smithi090.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-09-07T08:10:48.925 INFO:teuthology.orchestra.run.smithi090.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-09-07T08:10:48.925 INFO:teuthology.orchestra.run.smithi090.stdout: python3-ply-3.11-14.el9.noarch 2024-09-07T08:10:48.925 INFO:teuthology.orchestra.run.smithi090.stdout: python3-portend-3.1.0-2.el9.noarch 2024-09-07T08:10:48.925 INFO:teuthology.orchestra.run.smithi090.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-09-07T08:10:48.925 INFO:teuthology.orchestra.run.smithi090.stdout: python3-pycparser-2.20-6.el9.noarch 2024-09-07T08:10:48.926 INFO:teuthology.orchestra.run.smithi090.stdout: python3-pytz-2021.1-5.el9.noarch 2024-09-07T08:10:48.926 INFO:teuthology.orchestra.run.smithi090.stdout: python3-requests-2.25.1-8.el9.noarch 2024-09-07T08:10:48.926 INFO:teuthology.orchestra.run.smithi090.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-09-07T08:10:48.926 INFO:teuthology.orchestra.run.smithi090.stdout: python3-toml-0.10.2-6.el9.noarch 2024-09-07T08:10:48.926 INFO:teuthology.orchestra.run.smithi090.stdout: python3-urllib3-1.26.5-6.el9.noarch 2024-09-07T08:10:48.926 INFO:teuthology.orchestra.run.smithi090.stdout: python3-webob-1.8.8-2.el9.noarch 2024-09-07T08:10:48.926 INFO:teuthology.orchestra.run.smithi090.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-09-07T08:10:48.926 INFO:teuthology.orchestra.run.smithi090.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-09-07T08:10:48.927 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:10:48.927 INFO:teuthology.orchestra.run.smithi090.stdout:Complete! 2024-09-07T08:10:49.114 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: cephadm-2:18.2.4-812.g03cef208.el9.noarch 1/1 2024-09-07T08:10:49.205 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : cephadm-2:18.2.4-812.g03cef208.el9.noarch 1/1 2024-09-07T08:10:49.266 INFO:teuthology.orchestra.run.smithi191.stdout:(1/5): ceph-grafana-dashboards-18.2.4-812.g03ce 173 kB/s | 24 kB 00:00 2024-09-07T08:10:49.291 INFO:teuthology.orchestra.run.smithi191.stdout:(2/5): ceph-prometheus-alerts-18.2.4-812.g03cef 99 kB/s | 16 kB 00:00 2024-09-07T08:10:49.333 INFO:teuthology.orchestra.run.smithi191.stdout:(3/5): python3-repoze-lru-0.7-16.el9.noarch.rpm 459 kB/s | 31 kB 00:00 2024-09-07T08:10:49.358 INFO:teuthology.orchestra.run.smithi191.stdout:(4/5): python3-routes-2.5.1-5.el9.noarch.rpm 2.8 MB/s | 188 kB 00:00 2024-09-07T08:10:49.362 DEBUG:teuthology.orchestra.run.smithi090:> sudo yum -y install ceph-base 2024-09-07T08:10:49.519 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: cephadm-2:18.2.4-812.g03cef208.el9.noarch 1/1 2024-09-07T08:10:49.533 INFO:teuthology.orchestra.run.smithi191.stdout:(5/5): ceph-mgr-dashboard-18.2.4-812.g03cef208. 8.6 MB/s | 3.5 MB 00:00 2024-09-07T08:10:49.537 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:10:49.537 INFO:teuthology.orchestra.run.smithi191.stdout:Total 5.0 MB/s | 3.8 MB 00:00 2024-09-07T08:10:49.538 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-07T08:10:49.545 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-07T08:10:49.545 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-07T08:10:49.609 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-07T08:10:49.609 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-07T08:10:49.756 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : cephadm-2:18.2.4-812.g03cef208.el9.noarch 1/1 2024-09-07T08:10:49.757 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:10:49.757 INFO:teuthology.orchestra.run.smithi018.stdout:Installed: 2024-09-07T08:10:49.757 INFO:teuthology.orchestra.run.smithi018.stdout: cephadm-2:18.2.4-812.g03cef208.el9.noarch 2024-09-07T08:10:49.757 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:10:49.757 INFO:teuthology.orchestra.run.smithi018.stdout:Complete! 2024-09-07T08:10:49.871 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-07T08:10:49.924 INFO:teuthology.orchestra.run.smithi090.stdout:Last metadata expiration check: 0:00:49 ago on Sat 07 Sep 2024 08:10:00 AM UTC. 2024-09-07T08:10:49.954 DEBUG:teuthology.orchestra.run.smithi018:> sudo yum -y install ceph-immutable-object-cache 2024-09-07T08:10:49.956 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 1/5 2024-09-07T08:10:49.988 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 2/5 2024-09-07T08:10:50.014 INFO:teuthology.orchestra.run.smithi090.stdout:Package ceph-base-2:18.2.4-812.g03cef208.el9.x86_64 is already installed. 2024-09-07T08:10:50.017 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-prometheus-alerts-2:18.2.4-812.g03cef208.el9.no 3/5 2024-09-07T08:10:50.056 INFO:teuthology.orchestra.run.smithi090.stdout:Dependencies resolved. 2024-09-07T08:10:50.057 INFO:teuthology.orchestra.run.smithi090.stdout:Nothing to do. 2024-09-07T08:10:50.057 INFO:teuthology.orchestra.run.smithi090.stdout:Complete! 2024-09-07T08:10:50.134 DEBUG:teuthology.orchestra.run.smithi090:> sudo yum -y install cephadm 2024-09-07T08:10:50.515 INFO:teuthology.orchestra.run.smithi018.stdout:Last metadata expiration check: 0:00:54 ago on Sat 07 Sep 2024 08:09:56 AM UTC. 2024-09-07T08:10:50.653 INFO:teuthology.orchestra.run.smithi018.stdout:Dependencies resolved. 2024-09-07T08:10:50.653 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:10:50.654 INFO:teuthology.orchestra.run.smithi018.stdout: Package Arch Version Repo Size 2024-09-07T08:10:50.654 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:10:50.654 INFO:teuthology.orchestra.run.smithi018.stdout:Installing: 2024-09-07T08:10:50.654 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-immutable-object-cache x86_64 2:18.2.4-812.g03cef208.el9 ceph 142 k 2024-09-07T08:10:50.654 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:10:50.654 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction Summary 2024-09-07T08:10:50.654 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:10:50.654 INFO:teuthology.orchestra.run.smithi018.stdout:Install 1 Package 2024-09-07T08:10:50.654 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:10:50.654 INFO:teuthology.orchestra.run.smithi018.stdout:Total download size: 142 k 2024-09-07T08:10:50.654 INFO:teuthology.orchestra.run.smithi018.stdout:Installed size: 395 k 2024-09-07T08:10:50.654 INFO:teuthology.orchestra.run.smithi018.stdout:Downloading Packages: 2024-09-07T08:10:50.681 INFO:teuthology.orchestra.run.smithi090.stdout:Last metadata expiration check: 0:00:50 ago on Sat 07 Sep 2024 08:10:00 AM UTC. 2024-09-07T08:10:50.812 INFO:teuthology.orchestra.run.smithi090.stdout:Dependencies resolved. 2024-09-07T08:10:50.813 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:10:50.813 INFO:teuthology.orchestra.run.smithi090.stdout: Package Arch Version Repository Size 2024-09-07T08:10:50.813 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:10:50.813 INFO:teuthology.orchestra.run.smithi090.stdout:Installing: 2024-09-07T08:10:50.813 INFO:teuthology.orchestra.run.smithi090.stdout: cephadm noarch 2:18.2.4-812.g03cef208.el9 ceph-noarch 226 k 2024-09-07T08:10:50.813 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:10:50.813 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction Summary 2024-09-07T08:10:50.813 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:10:50.813 INFO:teuthology.orchestra.run.smithi090.stdout:Install 1 Package 2024-09-07T08:10:50.813 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:10:50.813 INFO:teuthology.orchestra.run.smithi090.stdout:Total download size: 226 k 2024-09-07T08:10:50.813 INFO:teuthology.orchestra.run.smithi090.stdout:Installed size: 217 k 2024-09-07T08:10:50.814 INFO:teuthology.orchestra.run.smithi090.stdout:Downloading Packages: 2024-09-07T08:10:50.832 INFO:teuthology.orchestra.run.smithi018.stdout:ceph-immutable-object-cache-18.2.4-812.g03cef20 802 kB/s | 142 kB 00:00 2024-09-07T08:10:50.833 INFO:teuthology.orchestra.run.smithi018.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:10:50.833 INFO:teuthology.orchestra.run.smithi018.stdout:Total 795 kB/s | 142 kB 00:00 2024-09-07T08:10:50.834 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction check 2024-09-07T08:10:50.841 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction check succeeded. 2024-09-07T08:10:50.841 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction test 2024-09-07T08:10:50.901 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction test succeeded. 2024-09-07T08:10:50.901 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction 2024-09-07T08:10:51.039 INFO:teuthology.orchestra.run.smithi090.stdout:cephadm-18.2.4-812.g03cef208.el9.noarch.rpm 1.0 MB/s | 226 kB 00:00 2024-09-07T08:10:51.040 INFO:teuthology.orchestra.run.smithi090.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:10:51.040 INFO:teuthology.orchestra.run.smithi090.stdout:Total 993 kB/s | 226 kB 00:00 2024-09-07T08:10:51.040 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction check 2024-09-07T08:10:51.045 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction check succeeded. 2024-09-07T08:10:51.046 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction test 2024-09-07T08:10:51.048 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction test succeeded. 2024-09-07T08:10:51.049 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction 2024-09-07T08:10:51.055 INFO:teuthology.orchestra.run.smithi018.stdout: Preparing : 1/1 2024-09-07T08:10:51.067 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-grafana-dashboards-2:18.2.4-812.g03cef208.el9.n 4/5 2024-09-07T08:10:51.104 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-mgr-dashboard-2:18.2.4-812.g03cef208.el9.noarch 5/5 2024-09-07T08:10:51.112 INFO:teuthology.orchestra.run.smithi090.stdout: Preparing : 1/1 2024-09-07T08:10:51.158 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : ceph-immutable-object-cache-2:18.2.4-812.g03cef208.e 1/1 2024-09-07T08:10:51.183 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: ceph-immutable-object-cache-2:18.2.4-812.g03cef208.e 1/1 2024-09-07T08:10:51.183 INFO:teuthology.orchestra.run.smithi018.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-07T08:10:51.183 INFO:teuthology.orchestra.run.smithi018.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-09-07T08:10:51.183 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:10:51.596 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: cephadm-2:18.2.4-812.g03cef208.el9.noarch 1/1 2024-09-07T08:10:51.685 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : cephadm-2:18.2.4-812.g03cef208.el9.noarch 1/1 2024-09-07T08:10:52.043 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: cephadm-2:18.2.4-812.g03cef208.el9.noarch 1/1 2024-09-07T08:10:52.110 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : ceph-immutable-object-cache-2:18.2.4-812.g03cef208.e 1/1 2024-09-07T08:10:52.141 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:10:52.141 INFO:teuthology.orchestra.run.smithi018.stdout:Installed: 2024-09-07T08:10:52.141 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-immutable-object-cache-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:52.142 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:10:52.142 INFO:teuthology.orchestra.run.smithi018.stdout:Complete! 2024-09-07T08:10:52.291 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-mgr-dashboard-2:18.2.4-812.g03cef208.el9.noarch 5/5 2024-09-07T08:10:52.292 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-grafana-dashboards-2:18.2.4-812.g03cef208.el9.n 1/5 2024-09-07T08:10:52.292 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-mgr-dashboard-2:18.2.4-812.g03cef208.el9.noarch 2/5 2024-09-07T08:10:52.292 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-prometheus-alerts-2:18.2.4-812.g03cef208.el9.no 3/5 2024-09-07T08:10:52.292 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 4/5 2024-09-07T08:10:52.293 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : cephadm-2:18.2.4-812.g03cef208.el9.noarch 1/1 2024-09-07T08:10:52.293 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:10:52.293 INFO:teuthology.orchestra.run.smithi090.stdout:Installed: 2024-09-07T08:10:52.293 INFO:teuthology.orchestra.run.smithi090.stdout: cephadm-2:18.2.4-812.g03cef208.el9.noarch 2024-09-07T08:10:52.293 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:10:52.293 INFO:teuthology.orchestra.run.smithi090.stdout:Complete! 2024-09-07T08:10:52.345 DEBUG:teuthology.orchestra.run.smithi018:> sudo yum -y install ceph-mgr 2024-09-07T08:10:52.549 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 5/5 2024-09-07T08:10:52.549 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:10:52.549 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-07T08:10:52.550 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-grafana-dashboards-2:18.2.4-812.g03cef208.el9.noarch 2024-09-07T08:10:52.550 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr-dashboard-2:18.2.4-812.g03cef208.el9.noarch 2024-09-07T08:10:52.550 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-prometheus-alerts-2:18.2.4-812.g03cef208.el9.noarch 2024-09-07T08:10:52.550 INFO:teuthology.orchestra.run.smithi191.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-09-07T08:10:52.550 INFO:teuthology.orchestra.run.smithi191.stdout: python3-routes-2.5.1-5.el9.noarch 2024-09-07T08:10:52.550 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:10:52.550 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-07T08:10:52.572 DEBUG:teuthology.orchestra.run.smithi090:> sudo yum -y install ceph-immutable-object-cache 2024-09-07T08:10:52.753 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph-mgr-diskprediction-local 2024-09-07T08:10:52.912 INFO:teuthology.orchestra.run.smithi018.stdout:Last metadata expiration check: 0:00:56 ago on Sat 07 Sep 2024 08:09:56 AM UTC. 2024-09-07T08:10:53.004 INFO:teuthology.orchestra.run.smithi018.stdout:Package ceph-mgr-2:18.2.4-812.g03cef208.el9.x86_64 is already installed. 2024-09-07T08:10:53.048 INFO:teuthology.orchestra.run.smithi018.stdout:Dependencies resolved. 2024-09-07T08:10:53.049 INFO:teuthology.orchestra.run.smithi018.stdout:Nothing to do. 2024-09-07T08:10:53.049 INFO:teuthology.orchestra.run.smithi018.stdout:Complete! 2024-09-07T08:10:53.119 DEBUG:teuthology.orchestra.run.smithi018:> sudo yum -y install ceph-mgr-dashboard 2024-09-07T08:10:53.124 INFO:teuthology.orchestra.run.smithi090.stdout:Last metadata expiration check: 0:00:53 ago on Sat 07 Sep 2024 08:10:00 AM UTC. 2024-09-07T08:10:53.256 INFO:teuthology.orchestra.run.smithi090.stdout:Dependencies resolved. 2024-09-07T08:10:53.257 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:10:53.257 INFO:teuthology.orchestra.run.smithi090.stdout: Package Arch Version Repo Size 2024-09-07T08:10:53.257 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:10:53.257 INFO:teuthology.orchestra.run.smithi090.stdout:Installing: 2024-09-07T08:10:53.257 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-immutable-object-cache x86_64 2:18.2.4-812.g03cef208.el9 ceph 142 k 2024-09-07T08:10:53.257 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:10:53.257 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction Summary 2024-09-07T08:10:53.257 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:10:53.257 INFO:teuthology.orchestra.run.smithi090.stdout:Install 1 Package 2024-09-07T08:10:53.257 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:10:53.257 INFO:teuthology.orchestra.run.smithi090.stdout:Total download size: 142 k 2024-09-07T08:10:53.258 INFO:teuthology.orchestra.run.smithi090.stdout:Installed size: 395 k 2024-09-07T08:10:53.258 INFO:teuthology.orchestra.run.smithi090.stdout:Downloading Packages: 2024-09-07T08:10:53.313 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:01 ago on Sat 07 Sep 2024 08:09:52 AM UTC. 2024-09-07T08:10:53.445 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-07T08:10:53.446 INFO:teuthology.orchestra.run.smithi191.stdout:====================================================================================== 2024-09-07T08:10:53.446 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repository Size 2024-09-07T08:10:53.446 INFO:teuthology.orchestra.run.smithi191.stdout:====================================================================================== 2024-09-07T08:10:53.447 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-07T08:10:53.447 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr-diskprediction-local noarch 2:18.2.4-812.g03cef208.el9 ceph-noarch 7.4 M 2024-09-07T08:10:53.447 INFO:teuthology.orchestra.run.smithi191.stdout:Installing dependencies: 2024-09-07T08:10:53.447 INFO:teuthology.orchestra.run.smithi191.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-09-07T08:10:53.447 INFO:teuthology.orchestra.run.smithi191.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-09-07T08:10:53.447 INFO:teuthology.orchestra.run.smithi191.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-09-07T08:10:53.447 INFO:teuthology.orchestra.run.smithi191.stdout: libgfortran x86_64 11.5.0-2.el9 baseos 801 k 2024-09-07T08:10:53.447 INFO:teuthology.orchestra.run.smithi191.stdout: libquadmath x86_64 11.5.0-2.el9 baseos 191 k 2024-09-07T08:10:53.447 INFO:teuthology.orchestra.run.smithi191.stdout: openblas x86_64 0.3.26-2.el9 appstream 38 k 2024-09-07T08:10:53.448 INFO:teuthology.orchestra.run.smithi191.stdout: openblas-openmp x86_64 0.3.26-2.el9 appstream 4.9 M 2024-09-07T08:10:53.448 INFO:teuthology.orchestra.run.smithi191.stdout: python3-devel x86_64 3.9.19-8.el9 appstream 245 k 2024-09-07T08:10:53.448 INFO:teuthology.orchestra.run.smithi191.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-09-07T08:10:53.448 INFO:teuthology.orchestra.run.smithi191.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-09-07T08:10:53.448 INFO:teuthology.orchestra.run.smithi191.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-09-07T08:10:53.448 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:10:53.448 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-07T08:10:53.448 INFO:teuthology.orchestra.run.smithi191.stdout:====================================================================================== 2024-09-07T08:10:53.448 INFO:teuthology.orchestra.run.smithi191.stdout:Install 12 Packages 2024-09-07T08:10:53.448 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:10:53.449 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 38 M 2024-09-07T08:10:53.449 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 212 M 2024-09-07T08:10:53.449 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-07T08:10:53.459 INFO:teuthology.orchestra.run.smithi090.stdout:ceph-immutable-object-cache-18.2.4-812.g03cef20 707 kB/s | 142 kB 00:00 2024-09-07T08:10:53.460 INFO:teuthology.orchestra.run.smithi090.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:10:53.460 INFO:teuthology.orchestra.run.smithi090.stdout:Total 700 kB/s | 142 kB 00:00 2024-09-07T08:10:53.461 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction check 2024-09-07T08:10:53.468 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction check succeeded. 2024-09-07T08:10:53.468 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction test 2024-09-07T08:10:53.525 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction test succeeded. 2024-09-07T08:10:53.525 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction 2024-09-07T08:10:53.678 INFO:teuthology.orchestra.run.smithi090.stdout: Preparing : 1/1 2024-09-07T08:10:53.678 INFO:teuthology.orchestra.run.smithi018.stdout:Last metadata expiration check: 0:00:57 ago on Sat 07 Sep 2024 08:09:56 AM UTC. 2024-09-07T08:10:53.769 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : ceph-immutable-object-cache-2:18.2.4-812.g03cef208.e 1/1 2024-09-07T08:10:53.794 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: ceph-immutable-object-cache-2:18.2.4-812.g03cef208.e 1/1 2024-09-07T08:10:53.794 INFO:teuthology.orchestra.run.smithi090.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-07T08:10:53.794 INFO:teuthology.orchestra.run.smithi090.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-09-07T08:10:53.795 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:10:53.814 INFO:teuthology.orchestra.run.smithi018.stdout:Dependencies resolved. 2024-09-07T08:10:53.815 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:10:53.815 INFO:teuthology.orchestra.run.smithi018.stdout: Package Arch Version Repository Size 2024-09-07T08:10:53.815 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:10:53.815 INFO:teuthology.orchestra.run.smithi018.stdout:Installing: 2024-09-07T08:10:53.815 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-mgr-dashboard noarch 2:18.2.4-812.g03cef208.el9 ceph-noarch 3.5 M 2024-09-07T08:10:53.816 INFO:teuthology.orchestra.run.smithi018.stdout:Installing dependencies: 2024-09-07T08:10:53.816 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-grafana-dashboards noarch 2:18.2.4-812.g03cef208.el9 ceph-noarch 24 k 2024-09-07T08:10:53.816 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-prometheus-alerts noarch 2:18.2.4-812.g03cef208.el9 ceph-noarch 16 k 2024-09-07T08:10:53.816 INFO:teuthology.orchestra.run.smithi018.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-09-07T08:10:53.816 INFO:teuthology.orchestra.run.smithi018.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-09-07T08:10:53.816 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:10:53.816 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction Summary 2024-09-07T08:10:53.816 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:10:53.816 INFO:teuthology.orchestra.run.smithi018.stdout:Install 5 Packages 2024-09-07T08:10:53.816 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:10:53.817 INFO:teuthology.orchestra.run.smithi018.stdout:Total download size: 3.8 M 2024-09-07T08:10:53.817 INFO:teuthology.orchestra.run.smithi018.stdout:Installed size: 87 M 2024-09-07T08:10:53.817 INFO:teuthology.orchestra.run.smithi018.stdout:Downloading Packages: 2024-09-07T08:10:54.191 INFO:teuthology.orchestra.run.smithi191.stdout:(1/12): ceph-mgr-diskprediction-local-18.2.4-81 17 MB/s | 7.4 MB 00:00 2024-09-07T08:10:54.249 INFO:teuthology.orchestra.run.smithi191.stdout:(2/12): libquadmath-11.5.0-2.el9.x86_64.rpm 382 kB/s | 191 kB 00:00 2024-09-07T08:10:54.274 INFO:teuthology.orchestra.run.smithi191.stdout:(3/12): flexiblas-3.0.4-8.el9.x86_64.rpm 392 kB/s | 33 kB 00:00 2024-09-07T08:10:54.303 INFO:teuthology.orchestra.run.smithi018.stdout:(1/5): ceph-grafana-dashboards-18.2.4-812.g03ce 157 kB/s | 24 kB 00:00 2024-09-07T08:10:54.316 INFO:teuthology.orchestra.run.smithi191.stdout:(4/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 439 kB/s | 18 kB 00:00 2024-09-07T08:10:54.320 INFO:teuthology.orchestra.run.smithi018.stdout:(2/5): ceph-prometheus-alerts-18.2.4-812.g03cef 96 kB/s | 16 kB 00:00 2024-09-07T08:10:54.362 INFO:teuthology.orchestra.run.smithi018.stdout:(3/5): python3-repoze-lru-0.7-16.el9.noarch.rpm 523 kB/s | 31 kB 00:00 2024-09-07T08:10:54.367 INFO:teuthology.orchestra.run.smithi191.stdout:(5/12): openblas-0.3.26-2.el9.x86_64.rpm 767 kB/s | 38 kB 00:00 2024-09-07T08:10:54.388 INFO:teuthology.orchestra.run.smithi018.stdout:(4/5): python3-routes-2.5.1-5.el9.noarch.rpm 2.7 MB/s | 188 kB 00:00 2024-09-07T08:10:54.500 INFO:teuthology.orchestra.run.smithi191.stdout:(6/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 12 MB/s | 3.0 MB 00:00 2024-09-07T08:10:54.513 INFO:teuthology.orchestra.run.smithi018.stdout:(5/5): ceph-mgr-dashboard-18.2.4-812.g03cef208. 9.7 MB/s | 3.5 MB 00:00 2024-09-07T08:10:54.516 INFO:teuthology.orchestra.run.smithi018.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:10:54.517 INFO:teuthology.orchestra.run.smithi018.stdout:Total 5.4 MB/s | 3.8 MB 00:00 2024-09-07T08:10:54.517 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction check 2024-09-07T08:10:54.524 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction check succeeded. 2024-09-07T08:10:54.524 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction test 2024-09-07T08:10:54.533 INFO:teuthology.orchestra.run.smithi191.stdout:(7/12): libgfortran-11.5.0-2.el9.x86_64.rpm 1.0 MB/s | 801 kB 00:00 2024-09-07T08:10:54.559 INFO:teuthology.orchestra.run.smithi191.stdout:(8/12): python3-devel-3.9.19-8.el9.x86_64.rpm 4.1 MB/s | 245 kB 00:00 2024-09-07T08:10:54.589 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction test succeeded. 2024-09-07T08:10:54.591 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction 2024-09-07T08:10:54.618 INFO:teuthology.orchestra.run.smithi191.stdout:(9/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 4.2 MB/s | 250 kB 00:00 2024-09-07T08:10:54.685 INFO:teuthology.orchestra.run.smithi191.stdout:(10/12): openblas-openmp-0.3.26-2.el9.x86_64.rp 16 MB/s | 4.9 MB 00:00 2024-09-07T08:10:54.845 INFO:teuthology.orchestra.run.smithi018.stdout: Preparing : 1/1 2024-09-07T08:10:54.869 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : ceph-immutable-object-cache-2:18.2.4-812.g03cef208.e 1/1 2024-09-07T08:10:54.869 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:10:54.869 INFO:teuthology.orchestra.run.smithi090.stdout:Installed: 2024-09-07T08:10:54.870 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-immutable-object-cache-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:10:54.870 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:10:54.870 INFO:teuthology.orchestra.run.smithi090.stdout:Complete! 2024-09-07T08:10:54.936 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 1/5 2024-09-07T08:10:54.943 INFO:teuthology.orchestra.run.smithi191.stdout:(11/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 50 MB/s | 16 MB 00:00 2024-09-07T08:10:54.976 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 2/5 2024-09-07T08:10:55.005 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : ceph-prometheus-alerts-2:18.2.4-812.g03cef208.el9.no 3/5 2024-09-07T08:10:55.018 INFO:teuthology.orchestra.run.smithi191.stdout:(12/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 11 MB/s | 5.1 MB 00:00 2024-09-07T08:10:55.018 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:10:55.019 INFO:teuthology.orchestra.run.smithi191.stdout:Total 24 MB/s | 38 MB 00:01 2024-09-07T08:10:55.122 DEBUG:teuthology.orchestra.run.smithi090:> sudo yum -y install ceph-mgr 2024-09-07T08:10:55.376 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-07T08:10:55.402 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-07T08:10:55.402 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-07T08:10:55.689 INFO:teuthology.orchestra.run.smithi090.stdout:Last metadata expiration check: 0:00:55 ago on Sat 07 Sep 2024 08:10:00 AM UTC. 2024-09-07T08:10:55.782 INFO:teuthology.orchestra.run.smithi090.stdout:Package ceph-mgr-2:18.2.4-812.g03cef208.el9.x86_64 is already installed. 2024-09-07T08:10:55.815 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-07T08:10:55.815 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-07T08:10:55.823 INFO:teuthology.orchestra.run.smithi090.stdout:Dependencies resolved. 2024-09-07T08:10:55.824 INFO:teuthology.orchestra.run.smithi090.stdout:Nothing to do. 2024-09-07T08:10:55.825 INFO:teuthology.orchestra.run.smithi090.stdout:Complete! 2024-09-07T08:10:55.903 DEBUG:teuthology.orchestra.run.smithi090:> sudo yum -y install ceph-mgr-dashboard 2024-09-07T08:10:56.110 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : ceph-grafana-dashboards-2:18.2.4-812.g03cef208.el9.n 4/5 2024-09-07T08:10:56.150 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : ceph-mgr-dashboard-2:18.2.4-812.g03cef208.el9.noarch 5/5 2024-09-07T08:10:56.452 INFO:teuthology.orchestra.run.smithi090.stdout:Last metadata expiration check: 0:00:56 ago on Sat 07 Sep 2024 08:10:00 AM UTC. 2024-09-07T08:10:56.570 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-07T08:10:56.582 INFO:teuthology.orchestra.run.smithi090.stdout:Dependencies resolved. 2024-09-07T08:10:56.583 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:10:56.583 INFO:teuthology.orchestra.run.smithi090.stdout: Package Arch Version Repository Size 2024-09-07T08:10:56.583 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:10:56.583 INFO:teuthology.orchestra.run.smithi090.stdout:Installing: 2024-09-07T08:10:56.583 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-mgr-dashboard noarch 2:18.2.4-812.g03cef208.el9 ceph-noarch 3.5 M 2024-09-07T08:10:56.583 INFO:teuthology.orchestra.run.smithi090.stdout:Installing dependencies: 2024-09-07T08:10:56.583 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-grafana-dashboards noarch 2:18.2.4-812.g03cef208.el9 ceph-noarch 24 k 2024-09-07T08:10:56.583 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-prometheus-alerts noarch 2:18.2.4-812.g03cef208.el9 ceph-noarch 16 k 2024-09-07T08:10:56.583 INFO:teuthology.orchestra.run.smithi090.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-09-07T08:10:56.584 INFO:teuthology.orchestra.run.smithi090.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-09-07T08:10:56.584 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:10:56.584 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction Summary 2024-09-07T08:10:56.584 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:10:56.584 INFO:teuthology.orchestra.run.smithi090.stdout:Install 5 Packages 2024-09-07T08:10:56.584 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:10:56.585 INFO:teuthology.orchestra.run.smithi090.stdout:Total download size: 3.8 M 2024-09-07T08:10:56.585 INFO:teuthology.orchestra.run.smithi090.stdout:Installed size: 87 M 2024-09-07T08:10:56.585 INFO:teuthology.orchestra.run.smithi090.stdout:Downloading Packages: 2024-09-07T08:10:56.639 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-09-07T08:10:56.675 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : libquadmath-11.5.0-2.el9.x86_64 2/12 2024-09-07T08:10:56.782 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : libgfortran-11.5.0-2.el9.x86_64 3/12 2024-09-07T08:10:56.826 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-devel-3.9.19-8.el9.x86_64 4/12 2024-09-07T08:10:56.894 INFO:teuthology.orchestra.run.smithi090.stdout:(1/5): ceph-prometheus-alerts-18.2.4-812.g03cef 93 kB/s | 16 kB 00:00 2024-09-07T08:10:56.911 INFO:teuthology.orchestra.run.smithi090.stdout:(2/5): ceph-grafana-dashboards-18.2.4-812.g03ce 125 kB/s | 24 kB 00:00 2024-09-07T08:10:56.945 INFO:teuthology.orchestra.run.smithi090.stdout:(3/5): python3-repoze-lru-0.7-16.el9.noarch.rpm 611 kB/s | 31 kB 00:00 2024-09-07T08:10:56.978 INFO:teuthology.orchestra.run.smithi090.stdout:(4/5): python3-routes-2.5.1-5.el9.noarch.rpm 2.8 MB/s | 188 kB 00:00 2024-09-07T08:10:57.011 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : openblas-0.3.26-2.el9.x86_64 5/12 2024-09-07T08:10:57.041 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : openblas-openmp-0.3.26-2.el9.x86_64 6/12 2024-09-07T08:10:57.112 INFO:teuthology.orchestra.run.smithi090.stdout:(5/5): ceph-mgr-dashboard-18.2.4-812.g03cef208. 8.9 MB/s | 3.5 MB 00:00 2024-09-07T08:10:57.115 INFO:teuthology.orchestra.run.smithi090.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:10:57.116 INFO:teuthology.orchestra.run.smithi090.stdout:Total 7.1 MB/s | 3.8 MB 00:00 2024-09-07T08:10:57.116 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction check 2024-09-07T08:10:57.118 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-09-07T08:10:57.123 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction check succeeded. 2024-09-07T08:10:57.123 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction test 2024-09-07T08:10:57.185 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction test succeeded. 2024-09-07T08:10:57.185 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction 2024-09-07T08:10:57.236 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: ceph-mgr-dashboard-2:18.2.4-812.g03cef208.el9.noarch 5/5 2024-09-07T08:10:57.236 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : ceph-grafana-dashboards-2:18.2.4-812.g03cef208.el9.n 1/5 2024-09-07T08:10:57.236 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : ceph-mgr-dashboard-2:18.2.4-812.g03cef208.el9.noarch 2/5 2024-09-07T08:10:57.237 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : ceph-prometheus-alerts-2:18.2.4-812.g03cef208.el9.no 3/5 2024-09-07T08:10:57.237 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 4/5 2024-09-07T08:10:57.428 INFO:teuthology.orchestra.run.smithi090.stdout: Preparing : 1/1 2024-09-07T08:10:57.493 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 5/5 2024-09-07T08:10:57.493 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:10:57.493 INFO:teuthology.orchestra.run.smithi018.stdout:Installed: 2024-09-07T08:10:57.493 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-grafana-dashboards-2:18.2.4-812.g03cef208.el9.noarch 2024-09-07T08:10:57.493 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-mgr-dashboard-2:18.2.4-812.g03cef208.el9.noarch 2024-09-07T08:10:57.493 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-prometheus-alerts-2:18.2.4-812.g03cef208.el9.noarch 2024-09-07T08:10:57.493 INFO:teuthology.orchestra.run.smithi018.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-09-07T08:10:57.493 INFO:teuthology.orchestra.run.smithi018.stdout: python3-routes-2.5.1-5.el9.noarch 2024-09-07T08:10:57.494 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:10:57.494 INFO:teuthology.orchestra.run.smithi018.stdout:Complete! 2024-09-07T08:10:57.509 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 1/5 2024-09-07T08:10:57.542 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 2/5 2024-09-07T08:10:57.570 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : ceph-prometheus-alerts-2:18.2.4-812.g03cef208.el9.no 3/5 2024-09-07T08:10:57.698 DEBUG:teuthology.orchestra.run.smithi018:> sudo yum -y install ceph-mgr-diskprediction-local 2024-09-07T08:10:57.769 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-09-07T08:10:57.896 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-09-07T08:10:58.264 INFO:teuthology.orchestra.run.smithi018.stdout:Last metadata expiration check: 0:01:02 ago on Sat 07 Sep 2024 08:09:56 AM UTC. 2024-09-07T08:10:58.401 INFO:teuthology.orchestra.run.smithi018.stdout:Dependencies resolved. 2024-09-07T08:10:58.402 INFO:teuthology.orchestra.run.smithi018.stdout:====================================================================================== 2024-09-07T08:10:58.402 INFO:teuthology.orchestra.run.smithi018.stdout: Package Arch Version Repository Size 2024-09-07T08:10:58.402 INFO:teuthology.orchestra.run.smithi018.stdout:====================================================================================== 2024-09-07T08:10:58.403 INFO:teuthology.orchestra.run.smithi018.stdout:Installing: 2024-09-07T08:10:58.403 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-mgr-diskprediction-local noarch 2:18.2.4-812.g03cef208.el9 ceph-noarch 7.4 M 2024-09-07T08:10:58.403 INFO:teuthology.orchestra.run.smithi018.stdout:Installing dependencies: 2024-09-07T08:10:58.403 INFO:teuthology.orchestra.run.smithi018.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-09-07T08:10:58.403 INFO:teuthology.orchestra.run.smithi018.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-09-07T08:10:58.403 INFO:teuthology.orchestra.run.smithi018.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-09-07T08:10:58.403 INFO:teuthology.orchestra.run.smithi018.stdout: libgfortran x86_64 11.5.0-2.el9 baseos 801 k 2024-09-07T08:10:58.403 INFO:teuthology.orchestra.run.smithi018.stdout: libquadmath x86_64 11.5.0-2.el9 baseos 191 k 2024-09-07T08:10:58.403 INFO:teuthology.orchestra.run.smithi018.stdout: openblas x86_64 0.3.26-2.el9 appstream 38 k 2024-09-07T08:10:58.403 INFO:teuthology.orchestra.run.smithi018.stdout: openblas-openmp x86_64 0.3.26-2.el9 appstream 4.9 M 2024-09-07T08:10:58.403 INFO:teuthology.orchestra.run.smithi018.stdout: python3-devel x86_64 3.9.19-8.el9 appstream 245 k 2024-09-07T08:10:58.404 INFO:teuthology.orchestra.run.smithi018.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-09-07T08:10:58.404 INFO:teuthology.orchestra.run.smithi018.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-09-07T08:10:58.404 INFO:teuthology.orchestra.run.smithi018.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-09-07T08:10:58.404 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:10:58.404 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction Summary 2024-09-07T08:10:58.404 INFO:teuthology.orchestra.run.smithi018.stdout:====================================================================================== 2024-09-07T08:10:58.404 INFO:teuthology.orchestra.run.smithi018.stdout:Install 12 Packages 2024-09-07T08:10:58.404 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:10:58.405 INFO:teuthology.orchestra.run.smithi018.stdout:Total download size: 38 M 2024-09-07T08:10:58.405 INFO:teuthology.orchestra.run.smithi018.stdout:Installed size: 212 M 2024-09-07T08:10:58.405 INFO:teuthology.orchestra.run.smithi018.stdout:Downloading Packages: 2024-09-07T08:10:58.614 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : ceph-grafana-dashboards-2:18.2.4-812.g03cef208.el9.n 4/5 2024-09-07T08:10:58.691 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : ceph-mgr-dashboard-2:18.2.4-812.g03cef208.el9.noarch 5/5 2024-09-07T08:10:59.045 INFO:teuthology.orchestra.run.smithi018.stdout:(1/12): ceph-mgr-diskprediction-local-18.2.4-81 16 MB/s | 7.4 MB 00:00 2024-09-07T08:10:59.130 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-09-07T08:10:59.162 INFO:teuthology.orchestra.run.smithi018.stdout:(2/12): flexiblas-3.0.4-8.el9.x86_64.rpm 281 kB/s | 33 kB 00:00 2024-09-07T08:10:59.421 INFO:teuthology.orchestra.run.smithi018.stdout:(3/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 12 MB/s | 3.0 MB 00:00 2024-09-07T08:10:59.456 INFO:teuthology.orchestra.run.smithi018.stdout:(4/12): libquadmath-11.5.0-2.el9.x86_64.rpm 219 kB/s | 191 kB 00:00 2024-09-07T08:10:59.480 INFO:teuthology.orchestra.run.smithi018.stdout:(5/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 311 kB/s | 18 kB 00:00 2024-09-07T08:10:59.588 INFO:teuthology.orchestra.run.smithi018.stdout:(6/12): libgfortran-11.5.0-2.el9.x86_64.rpm 797 kB/s | 801 kB 00:01 2024-09-07T08:10:59.614 INFO:teuthology.orchestra.run.smithi018.stdout:(7/12): openblas-0.3.26-2.el9.x86_64.rpm 243 kB/s | 38 kB 00:00 2024-09-07T08:10:59.680 INFO:teuthology.orchestra.run.smithi018.stdout:(8/12): openblas-openmp-0.3.26-2.el9.x86_64.rpm 25 MB/s | 4.9 MB 00:00 2024-09-07T08:10:59.739 INFO:teuthology.orchestra.run.smithi018.stdout:(9/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 4.2 MB/s | 250 kB 00:00 2024-09-07T08:10:59.889 INFO:teuthology.orchestra.run.smithi018.stdout:(10/12): python3-devel-3.9.19-8.el9.x86_64.rpm 814 kB/s | 245 kB 00:00 2024-09-07T08:10:59.981 INFO:teuthology.orchestra.run.smithi018.stdout:(11/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 14 MB/s | 5.1 MB 00:00 2024-09-07T08:11:00.166 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-09-07T08:11:00.181 INFO:teuthology.orchestra.run.smithi018.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 37 MB/s | 16 MB 00:00 2024-09-07T08:11:00.182 INFO:teuthology.orchestra.run.smithi018.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:11:00.183 INFO:teuthology.orchestra.run.smithi018.stdout:Total 21 MB/s | 38 MB 00:01 2024-09-07T08:11:00.199 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-mgr-diskprediction-local-2:18.2.4-812.g03cef2 12/12 2024-09-07T08:11:00.313 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: ceph-mgr-dashboard-2:18.2.4-812.g03cef208.el9.noarch 5/5 2024-09-07T08:11:00.313 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : ceph-grafana-dashboards-2:18.2.4-812.g03cef208.el9.n 1/5 2024-09-07T08:11:00.313 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : ceph-mgr-dashboard-2:18.2.4-812.g03cef208.el9.noarch 2/5 2024-09-07T08:11:00.313 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : ceph-prometheus-alerts-2:18.2.4-812.g03cef208.el9.no 3/5 2024-09-07T08:11:00.313 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 4/5 2024-09-07T08:11:00.542 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction check 2024-09-07T08:11:00.554 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 5/5 2024-09-07T08:11:00.554 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:00.554 INFO:teuthology.orchestra.run.smithi090.stdout:Installed: 2024-09-07T08:11:00.554 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-grafana-dashboards-2:18.2.4-812.g03cef208.el9.noarch 2024-09-07T08:11:00.554 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-mgr-dashboard-2:18.2.4-812.g03cef208.el9.noarch 2024-09-07T08:11:00.554 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-prometheus-alerts-2:18.2.4-812.g03cef208.el9.noarch 2024-09-07T08:11:00.554 INFO:teuthology.orchestra.run.smithi090.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-09-07T08:11:00.554 INFO:teuthology.orchestra.run.smithi090.stdout: python3-routes-2.5.1-5.el9.noarch 2024-09-07T08:11:00.554 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:00.555 INFO:teuthology.orchestra.run.smithi090.stdout:Complete! 2024-09-07T08:11:00.569 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction check succeeded. 2024-09-07T08:11:00.569 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction test 2024-09-07T08:11:00.811 DEBUG:teuthology.orchestra.run.smithi090:> sudo yum -y install ceph-mgr-diskprediction-local 2024-09-07T08:11:01.002 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction test succeeded. 2024-09-07T08:11:01.002 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction 2024-09-07T08:11:01.365 INFO:teuthology.orchestra.run.smithi090.stdout:Last metadata expiration check: 0:01:01 ago on Sat 07 Sep 2024 08:10:00 AM UTC. 2024-09-07T08:11:01.496 INFO:teuthology.orchestra.run.smithi090.stdout:Dependencies resolved. 2024-09-07T08:11:01.497 INFO:teuthology.orchestra.run.smithi090.stdout:====================================================================================== 2024-09-07T08:11:01.497 INFO:teuthology.orchestra.run.smithi090.stdout: Package Arch Version Repository Size 2024-09-07T08:11:01.497 INFO:teuthology.orchestra.run.smithi090.stdout:====================================================================================== 2024-09-07T08:11:01.498 INFO:teuthology.orchestra.run.smithi090.stdout:Installing: 2024-09-07T08:11:01.498 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-mgr-diskprediction-local noarch 2:18.2.4-812.g03cef208.el9 ceph-noarch 7.4 M 2024-09-07T08:11:01.498 INFO:teuthology.orchestra.run.smithi090.stdout:Installing dependencies: 2024-09-07T08:11:01.498 INFO:teuthology.orchestra.run.smithi090.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-09-07T08:11:01.498 INFO:teuthology.orchestra.run.smithi090.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-09-07T08:11:01.498 INFO:teuthology.orchestra.run.smithi090.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-09-07T08:11:01.498 INFO:teuthology.orchestra.run.smithi090.stdout: libgfortran x86_64 11.5.0-2.el9 baseos 801 k 2024-09-07T08:11:01.498 INFO:teuthology.orchestra.run.smithi090.stdout: libquadmath x86_64 11.5.0-2.el9 baseos 191 k 2024-09-07T08:11:01.498 INFO:teuthology.orchestra.run.smithi090.stdout: openblas x86_64 0.3.26-2.el9 appstream 38 k 2024-09-07T08:11:01.498 INFO:teuthology.orchestra.run.smithi090.stdout: openblas-openmp x86_64 0.3.26-2.el9 appstream 4.9 M 2024-09-07T08:11:01.498 INFO:teuthology.orchestra.run.smithi090.stdout: python3-devel x86_64 3.9.19-8.el9 appstream 245 k 2024-09-07T08:11:01.498 INFO:teuthology.orchestra.run.smithi090.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-09-07T08:11:01.498 INFO:teuthology.orchestra.run.smithi090.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-09-07T08:11:01.499 INFO:teuthology.orchestra.run.smithi090.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-09-07T08:11:01.499 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:01.499 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction Summary 2024-09-07T08:11:01.499 INFO:teuthology.orchestra.run.smithi090.stdout:====================================================================================== 2024-09-07T08:11:01.499 INFO:teuthology.orchestra.run.smithi090.stdout:Install 12 Packages 2024-09-07T08:11:01.499 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:01.499 INFO:teuthology.orchestra.run.smithi090.stdout:Total download size: 38 M 2024-09-07T08:11:01.500 INFO:teuthology.orchestra.run.smithi090.stdout:Installed size: 212 M 2024-09-07T08:11:01.500 INFO:teuthology.orchestra.run.smithi090.stdout:Downloading Packages: 2024-09-07T08:11:01.776 INFO:teuthology.orchestra.run.smithi018.stdout: Preparing : 1/1 2024-09-07T08:11:01.796 INFO:teuthology.orchestra.run.smithi090.stdout:(1/12): libquadmath-11.5.0-2.el9.x86_64.rpm 905 kB/s | 191 kB 00:00 2024-09-07T08:11:01.853 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-09-07T08:11:01.872 INFO:teuthology.orchestra.run.smithi090.stdout:(2/12): flexiblas-3.0.4-8.el9.x86_64.rpm 435 kB/s | 33 kB 00:00 2024-09-07T08:11:01.897 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : libquadmath-11.5.0-2.el9.x86_64 2/12 2024-09-07T08:11:01.905 INFO:teuthology.orchestra.run.smithi090.stdout:(3/12): libgfortran-11.5.0-2.el9.x86_64.rpm 2.4 MB/s | 801 kB 00:00 2024-09-07T08:11:01.981 INFO:teuthology.orchestra.run.smithi090.stdout:(4/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 243 kB/s | 18 kB 00:00 2024-09-07T08:11:02.002 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : libgfortran-11.5.0-2.el9.x86_64 3/12 2024-09-07T08:11:02.039 INFO:teuthology.orchestra.run.smithi090.stdout:(5/12): openblas-0.3.26-2.el9.x86_64.rpm 657 kB/s | 38 kB 00:00 2024-09-07T08:11:02.048 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-devel-3.9.19-8.el9.x86_64 4/12 2024-09-07T08:11:02.115 INFO:teuthology.orchestra.run.smithi090.stdout:(6/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 12 MB/s | 3.0 MB 00:00 2024-09-07T08:11:02.165 INFO:teuthology.orchestra.run.smithi090.stdout:(7/12): python3-devel-3.9.19-8.el9.x86_64.rpm 4.8 MB/s | 245 kB 00:00 2024-09-07T08:11:02.238 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : openblas-0.3.26-2.el9.x86_64 5/12 2024-09-07T08:11:02.271 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : openblas-openmp-0.3.26-2.el9.x86_64 6/12 2024-09-07T08:11:02.291 INFO:teuthology.orchestra.run.smithi090.stdout:(8/12): openblas-openmp-0.3.26-2.el9.x86_64.rpm 20 MB/s | 4.9 MB 00:00 2024-09-07T08:11:02.350 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-09-07T08:11:02.391 INFO:teuthology.orchestra.run.smithi090.stdout:(9/12): ceph-mgr-diskprediction-local-18.2.4-81 9.2 MB/s | 7.4 MB 00:00 2024-09-07T08:11:02.417 INFO:teuthology.orchestra.run.smithi090.stdout:(10/12): python3-numpy-f2py-1.20.1-5.el9.x86_64 2.0 MB/s | 250 kB 00:00 2024-09-07T08:11:02.691 INFO:teuthology.orchestra.run.smithi090.stdout:(11/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 9.7 MB/s | 5.1 MB 00:00 2024-09-07T08:11:02.755 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:18.2.4-812.g03cef2 12/12 2024-09-07T08:11:02.755 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-mgr-diskprediction-local-2:18.2.4-812.g03cef2 1/12 2024-09-07T08:11:02.755 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : libgfortran-11.5.0-2.el9.x86_64 2/12 2024-09-07T08:11:02.755 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : libquadmath-11.5.0-2.el9.x86_64 3/12 2024-09-07T08:11:02.755 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-09-07T08:11:02.755 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-09-07T08:11:02.756 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-09-07T08:11:02.756 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : openblas-0.3.26-2.el9.x86_64 7/12 2024-09-07T08:11:02.756 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : openblas-openmp-0.3.26-2.el9.x86_64 8/12 2024-09-07T08:11:02.756 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-devel-3.9.19-8.el9.x86_64 9/12 2024-09-07T08:11:02.756 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-09-07T08:11:02.756 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-09-07T08:11:02.925 INFO:teuthology.orchestra.run.smithi090.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 30 MB/s | 16 MB 00:00 2024-09-07T08:11:02.926 INFO:teuthology.orchestra.run.smithi090.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:11:02.926 INFO:teuthology.orchestra.run.smithi090.stdout:Total 27 MB/s | 38 MB 00:01 2024-09-07T08:11:03.031 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-09-07T08:11:03.147 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-09-07T08:11:03.201 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-09-07T08:11:03.201 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:03.201 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-07T08:11:03.201 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr-diskprediction-local-2:18.2.4-812.g03cef208.el9.noarch 2024-09-07T08:11:03.201 INFO:teuthology.orchestra.run.smithi191.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-09-07T08:11:03.202 INFO:teuthology.orchestra.run.smithi191.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-09-07T08:11:03.202 INFO:teuthology.orchestra.run.smithi191.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-09-07T08:11:03.202 INFO:teuthology.orchestra.run.smithi191.stdout: libgfortran-11.5.0-2.el9.x86_64 2024-09-07T08:11:03.202 INFO:teuthology.orchestra.run.smithi191.stdout: libquadmath-11.5.0-2.el9.x86_64 2024-09-07T08:11:03.202 INFO:teuthology.orchestra.run.smithi191.stdout: openblas-0.3.26-2.el9.x86_64 2024-09-07T08:11:03.202 INFO:teuthology.orchestra.run.smithi191.stdout: openblas-openmp-0.3.26-2.el9.x86_64 2024-09-07T08:11:03.202 INFO:teuthology.orchestra.run.smithi191.stdout: python3-devel-3.9.19-8.el9.x86_64 2024-09-07T08:11:03.203 INFO:teuthology.orchestra.run.smithi191.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-09-07T08:11:03.203 INFO:teuthology.orchestra.run.smithi191.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-09-07T08:11:03.203 INFO:teuthology.orchestra.run.smithi191.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-09-07T08:11:03.203 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:03.203 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-07T08:11:03.280 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction check 2024-09-07T08:11:03.305 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction check succeeded. 2024-09-07T08:11:03.306 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction test 2024-09-07T08:11:03.562 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph-mgr-rook 2024-09-07T08:11:03.717 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction test succeeded. 2024-09-07T08:11:03.717 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction 2024-09-07T08:11:04.137 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:12 ago on Sat 07 Sep 2024 08:09:52 AM UTC. 2024-09-07T08:11:04.270 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-07T08:11:04.271 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:11:04.271 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repository Size 2024-09-07T08:11:04.271 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:11:04.272 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-07T08:11:04.272 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr-rook noarch 2:18.2.4-812.g03cef208.el9 ceph-noarch 49 k 2024-09-07T08:11:04.272 INFO:teuthology.orchestra.run.smithi191.stdout:Installing dependencies: 2024-09-07T08:11:04.272 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-09-07T08:11:04.272 INFO:teuthology.orchestra.run.smithi191.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2024-09-07T08:11:04.272 INFO:teuthology.orchestra.run.smithi191.stdout: python3-google-auth noarch 1:2.34.0-1.el9 epel 220 k 2024-09-07T08:11:04.272 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-09-07T08:11:04.272 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-09-07T08:11:04.272 INFO:teuthology.orchestra.run.smithi191.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-09-07T08:11:04.272 INFO:teuthology.orchestra.run.smithi191.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-09-07T08:11:04.272 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-09-07T08:11:04.272 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-09-07T08:11:04.272 INFO:teuthology.orchestra.run.smithi191.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-09-07T08:11:04.273 INFO:teuthology.orchestra.run.smithi191.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-09-07T08:11:04.273 INFO:teuthology.orchestra.run.smithi191.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-09-07T08:11:04.273 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:04.273 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-07T08:11:04.273 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:11:04.273 INFO:teuthology.orchestra.run.smithi191.stdout:Install 13 Packages 2024-09-07T08:11:04.273 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:04.274 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 2.2 M 2024-09-07T08:11:04.274 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 26 M 2024-09-07T08:11:04.274 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-07T08:11:04.448 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-09-07T08:11:04.489 INFO:teuthology.orchestra.run.smithi090.stdout: Preparing : 1/1 2024-09-07T08:11:04.588 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-09-07T08:11:04.632 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : libquadmath-11.5.0-2.el9.x86_64 2/12 2024-09-07T08:11:04.753 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : libgfortran-11.5.0-2.el9.x86_64 3/12 2024-09-07T08:11:04.793 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-devel-3.9.19-8.el9.x86_64 4/12 2024-09-07T08:11:04.801 INFO:teuthology.orchestra.run.smithi191.stdout:(1/13): python3-jsonpatch-1.21-16.el9.noarch.rp 184 kB/s | 26 kB 00:00 2024-09-07T08:11:04.826 INFO:teuthology.orchestra.run.smithi191.stdout:(2/13): python3-jsonpointer-2.0-4.el9.noarch.rp 116 kB/s | 19 kB 00:00 2024-09-07T08:11:04.851 INFO:teuthology.orchestra.run.smithi191.stdout:(3/13): ceph-mgr-rook-18.2.4-812.g03cef208.el9. 259 kB/s | 49 kB 00:00 2024-09-07T08:11:04.951 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-07T08:11:04.976 INFO:teuthology.orchestra.run.smithi191.stdout:(5/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 1.4 MB/s | 222 kB 00:00 2024-09-07T08:11:04.977 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : openblas-0.3.26-2.el9.x86_64 5/12 2024-09-07T08:11:05.009 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : openblas-openmp-0.3.26-2.el9.x86_64 6/12 2024-09-07T08:11:05.010 INFO:teuthology.orchestra.run.smithi191.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 914 kB/s | 54 kB 00:00 2024-09-07T08:11:05.044 INFO:teuthology.orchestra.run.smithi191.stdout:(7/13): python3-cachetools-4.2.4-1.el9.noarch.r 480 kB/s | 32 kB 00:00 2024-09-07T08:11:05.077 INFO:teuthology.orchestra.run.smithi191.stdout:(8/13): python3-pyasn1-modules-0.4.8-6.el9.noar 1.2 MB/s | 279 kB 00:00 2024-09-07T08:11:05.085 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-09-07T08:11:05.103 INFO:teuthology.orchestra.run.smithi191.stdout:(9/13): python3-certifi-2023.05.07-4.el9.noarch 156 kB/s | 14 kB 00:00 2024-09-07T08:11:05.136 INFO:teuthology.orchestra.run.smithi191.stdout:(10/13): python3-rsa-4.9-2.el9.noarch.rpm 2.2 MB/s | 59 kB 00:00 2024-09-07T08:11:05.162 INFO:teuthology.orchestra.run.smithi191.stdout:(11/13): python3-google-auth-2.34.0-1.el9.noarc 1.9 MB/s | 220 kB 00:00 2024-09-07T08:11:05.187 INFO:teuthology.orchestra.run.smithi191.stdout:(12/13): python3-websocket-client-1.2.3-2.el9.n 1.8 MB/s | 90 kB 00:00 2024-09-07T08:11:05.237 INFO:teuthology.orchestra.run.smithi191.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 6.4 MB/s | 1.0 MB 00:00 2024-09-07T08:11:05.240 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:11:05.240 INFO:teuthology.orchestra.run.smithi191.stdout:Total 2.3 MB/s | 2.2 MB 00:00 2024-09-07T08:11:05.308 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-07T08:11:05.324 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-07T08:11:05.324 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-07T08:11:05.411 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-07T08:11:05.411 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-07T08:11:05.542 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-09-07T08:11:05.579 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : ceph-mgr-diskprediction-local-2:18.2.4-812.g03cef2 12/12 2024-09-07T08:11:05.719 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-09-07T08:11:05.840 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-09-07T08:11:05.919 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-07T08:11:06.086 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-09-07T08:11:06.147 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-09-07T08:11:06.202 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-09-07T08:11:06.239 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-09-07T08:11:06.281 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 5/13 2024-09-07T08:11:06.384 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-09-07T08:11:06.494 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-google-auth-1:2.34.0-1.el9.noarch 7/13 2024-09-07T08:11:06.549 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-09-07T08:11:07.047 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-09-07T08:11:07.257 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-09-07T08:11:07.313 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-09-07T08:11:07.347 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-09-07T08:11:07.395 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-09-07T08:11:07.425 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-mgr-rook-2:18.2.4-812.g03cef208.el9.noarch 13/13 2024-09-07T08:11:08.043 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:18.2.4-812.g03cef2 12/12 2024-09-07T08:11:08.043 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : ceph-mgr-diskprediction-local-2:18.2.4-812.g03cef2 1/12 2024-09-07T08:11:08.043 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : libgfortran-11.5.0-2.el9.x86_64 2/12 2024-09-07T08:11:08.043 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : libquadmath-11.5.0-2.el9.x86_64 3/12 2024-09-07T08:11:08.043 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-09-07T08:11:08.043 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-09-07T08:11:08.044 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-09-07T08:11:08.044 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : openblas-0.3.26-2.el9.x86_64 7/12 2024-09-07T08:11:08.044 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : openblas-openmp-0.3.26-2.el9.x86_64 8/12 2024-09-07T08:11:08.044 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-devel-3.9.19-8.el9.x86_64 9/12 2024-09-07T08:11:08.044 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-09-07T08:11:08.044 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-09-07T08:11:08.074 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-09-07T08:11:08.116 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : ceph-mgr-diskprediction-local-2:18.2.4-812.g03cef2 12/12 2024-09-07T08:11:08.196 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-mgr-rook-2:18.2.4-812.g03cef208.el9.noarch 13/13 2024-09-07T08:11:08.196 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-mgr-rook-2:18.2.4-812.g03cef208.el9.noarch 1/13 2024-09-07T08:11:08.196 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-09-07T08:11:08.196 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-09-07T08:11:08.196 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-09-07T08:11:08.196 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-09-07T08:11:08.196 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-09-07T08:11:08.196 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-09-07T08:11:08.196 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-09-07T08:11:08.196 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 9/13 2024-09-07T08:11:08.197 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-google-auth-1:2.34.0-1.el9.noarch 10/13 2024-09-07T08:11:08.197 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-09-07T08:11:08.197 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-09-07T08:11:08.452 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-09-07T08:11:08.452 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:08.452 INFO:teuthology.orchestra.run.smithi018.stdout:Installed: 2024-09-07T08:11:08.452 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-mgr-diskprediction-local-2:18.2.4-812.g03cef208.el9.noarch 2024-09-07T08:11:08.452 INFO:teuthology.orchestra.run.smithi018.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-09-07T08:11:08.453 INFO:teuthology.orchestra.run.smithi018.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-09-07T08:11:08.453 INFO:teuthology.orchestra.run.smithi018.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-09-07T08:11:08.453 INFO:teuthology.orchestra.run.smithi018.stdout: libgfortran-11.5.0-2.el9.x86_64 2024-09-07T08:11:08.453 INFO:teuthology.orchestra.run.smithi018.stdout: libquadmath-11.5.0-2.el9.x86_64 2024-09-07T08:11:08.453 INFO:teuthology.orchestra.run.smithi018.stdout: openblas-0.3.26-2.el9.x86_64 2024-09-07T08:11:08.453 INFO:teuthology.orchestra.run.smithi018.stdout: openblas-openmp-0.3.26-2.el9.x86_64 2024-09-07T08:11:08.453 INFO:teuthology.orchestra.run.smithi018.stdout: python3-devel-3.9.19-8.el9.x86_64 2024-09-07T08:11:08.453 INFO:teuthology.orchestra.run.smithi018.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-09-07T08:11:08.453 INFO:teuthology.orchestra.run.smithi018.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-09-07T08:11:08.453 INFO:teuthology.orchestra.run.smithi018.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-09-07T08:11:08.453 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:08.453 INFO:teuthology.orchestra.run.smithi018.stdout:Complete! 2024-09-07T08:11:08.517 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-09-07T08:11:08.517 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:08.517 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-07T08:11:08.518 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr-rook-2:18.2.4-812.g03cef208.el9.noarch 2024-09-07T08:11:08.518 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-09-07T08:11:08.518 INFO:teuthology.orchestra.run.smithi191.stdout: python3-certifi-2023.05.07-4.el9.noarch 2024-09-07T08:11:08.518 INFO:teuthology.orchestra.run.smithi191.stdout: python3-google-auth-1:2.34.0-1.el9.noarch 2024-09-07T08:11:08.518 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-09-07T08:11:08.518 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-09-07T08:11:08.518 INFO:teuthology.orchestra.run.smithi191.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-09-07T08:11:08.518 INFO:teuthology.orchestra.run.smithi191.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-09-07T08:11:08.518 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-09-07T08:11:08.518 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-09-07T08:11:08.518 INFO:teuthology.orchestra.run.smithi191.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-09-07T08:11:08.518 INFO:teuthology.orchestra.run.smithi191.stdout: python3-rsa-4.9-2.el9.noarch 2024-09-07T08:11:08.518 INFO:teuthology.orchestra.run.smithi191.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-09-07T08:11:08.519 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:08.519 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-07T08:11:08.774 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph-mgr-cephadm 2024-09-07T08:11:08.830 DEBUG:teuthology.orchestra.run.smithi018:> sudo yum -y install ceph-mgr-rook 2024-09-07T08:11:09.347 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:17 ago on Sat 07 Sep 2024 08:09:52 AM UTC. 2024-09-07T08:11:09.400 INFO:teuthology.orchestra.run.smithi018.stdout:Last metadata expiration check: 0:01:13 ago on Sat 07 Sep 2024 08:09:56 AM UTC. 2024-09-07T08:11:09.478 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-07T08:11:09.479 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:11:09.479 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repository Size 2024-09-07T08:11:09.479 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:11:09.479 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-07T08:11:09.479 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr-cephadm noarch 2:18.2.4-812.g03cef208.el9 ceph-noarch 139 k 2024-09-07T08:11:09.479 INFO:teuthology.orchestra.run.smithi191.stdout:Installing dependencies: 2024-09-07T08:11:09.480 INFO:teuthology.orchestra.run.smithi191.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-09-07T08:11:09.480 INFO:teuthology.orchestra.run.smithi191.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-09-07T08:11:09.480 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jinja2 noarch 2.11.3-6.el9 appstream 248 k 2024-09-07T08:11:09.480 INFO:teuthology.orchestra.run.smithi191.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-09-07T08:11:09.480 INFO:teuthology.orchestra.run.smithi191.stdout: python3-typing-extensions noarch 4.12.2-2.el9 epel 74 k 2024-09-07T08:11:09.480 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:09.480 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-07T08:11:09.480 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:11:09.480 INFO:teuthology.orchestra.run.smithi191.stdout:Install 6 Packages 2024-09-07T08:11:09.480 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:09.481 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 7.0 M 2024-09-07T08:11:09.481 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 33 M 2024-09-07T08:11:09.481 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-07T08:11:09.538 INFO:teuthology.orchestra.run.smithi018.stdout:Dependencies resolved. 2024-09-07T08:11:09.539 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:11:09.539 INFO:teuthology.orchestra.run.smithi018.stdout: Package Arch Version Repository Size 2024-09-07T08:11:09.539 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:11:09.539 INFO:teuthology.orchestra.run.smithi018.stdout:Installing: 2024-09-07T08:11:09.539 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-mgr-rook noarch 2:18.2.4-812.g03cef208.el9 ceph-noarch 49 k 2024-09-07T08:11:09.539 INFO:teuthology.orchestra.run.smithi018.stdout:Installing dependencies: 2024-09-07T08:11:09.540 INFO:teuthology.orchestra.run.smithi018.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-09-07T08:11:09.540 INFO:teuthology.orchestra.run.smithi018.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2024-09-07T08:11:09.540 INFO:teuthology.orchestra.run.smithi018.stdout: python3-google-auth noarch 1:2.34.0-1.el9 epel 220 k 2024-09-07T08:11:09.540 INFO:teuthology.orchestra.run.smithi018.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-09-07T08:11:09.540 INFO:teuthology.orchestra.run.smithi018.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-09-07T08:11:09.540 INFO:teuthology.orchestra.run.smithi018.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-09-07T08:11:09.540 INFO:teuthology.orchestra.run.smithi018.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-09-07T08:11:09.540 INFO:teuthology.orchestra.run.smithi018.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-09-07T08:11:09.540 INFO:teuthology.orchestra.run.smithi018.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-09-07T08:11:09.540 INFO:teuthology.orchestra.run.smithi018.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-09-07T08:11:09.540 INFO:teuthology.orchestra.run.smithi018.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-09-07T08:11:09.540 INFO:teuthology.orchestra.run.smithi018.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-09-07T08:11:09.541 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:09.541 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction Summary 2024-09-07T08:11:09.541 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:11:09.541 INFO:teuthology.orchestra.run.smithi018.stdout:Install 13 Packages 2024-09-07T08:11:09.541 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:09.541 INFO:teuthology.orchestra.run.smithi018.stdout:Total download size: 2.2 M 2024-09-07T08:11:09.541 INFO:teuthology.orchestra.run.smithi018.stdout:Installed size: 26 M 2024-09-07T08:11:09.542 INFO:teuthology.orchestra.run.smithi018.stdout:Downloading Packages: 2024-09-07T08:11:09.831 INFO:teuthology.orchestra.run.smithi191.stdout:(1/6): python3-jinja2-2.11.3-6.el9.noarch.rpm 1.6 MB/s | 248 kB 00:00 2024-09-07T08:11:09.890 INFO:teuthology.orchestra.run.smithi191.stdout:(2/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 9.2 MB/s | 548 kB 00:00 2024-09-07T08:11:09.915 INFO:teuthology.orchestra.run.smithi191.stdout:(3/6): ceph-mgr-cephadm-18.2.4-812.g03cef208.el 598 kB/s | 139 kB 00:00 2024-09-07T08:11:09.940 INFO:teuthology.orchestra.run.smithi191.stdout:(4/6): python3-natsort-7.1.1-5.el9.noarch.rpm 1.1 MB/s | 58 kB 00:00 2024-09-07T08:11:09.982 INFO:teuthology.orchestra.run.smithi191.stdout:(5/6): python3-typing-extensions-4.12.2-2.el9.n 1.1 MB/s | 74 kB 00:00 2024-09-07T08:11:10.014 INFO:teuthology.orchestra.run.smithi018.stdout:(1/13): python3-jsonpatch-1.21-16.el9.noarch.rp 268 kB/s | 26 kB 00:00 2024-09-07T08:11:10.039 INFO:teuthology.orchestra.run.smithi018.stdout:(2/13): python3-jsonpointer-2.0-4.el9.noarch.rp 158 kB/s | 19 kB 00:00 2024-09-07T08:11:10.098 INFO:teuthology.orchestra.run.smithi018.stdout:(3/13): ceph-mgr-rook-18.2.4-812.g03cef208.el9. 274 kB/s | 49 kB 00:00 2024-09-07T08:11:10.123 INFO:teuthology.orchestra.run.smithi018.stdout:(4/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 2.0 MB/s | 222 kB 00:00 2024-09-07T08:11:10.149 INFO:teuthology.orchestra.run.smithi018.stdout:(5/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.4 MB/s | 159 kB 00:00 2024-09-07T08:11:10.191 INFO:teuthology.orchestra.run.smithi018.stdout:(6/13): python3-cachetools-4.2.4-1.el9.noarch.r 775 kB/s | 32 kB 00:00 2024-09-07T08:11:10.207 INFO:teuthology.orchestra.run.smithi018.stdout:(7/13): python3-requests-oauthlib-1.3.0-12.el9. 639 kB/s | 54 kB 00:00 2024-09-07T08:11:10.224 INFO:teuthology.orchestra.run.smithi018.stdout:(8/13): python3-certifi-2023.05.07-4.el9.noarch 422 kB/s | 14 kB 00:00 2024-09-07T08:11:10.275 INFO:teuthology.orchestra.run.smithi018.stdout:(9/13): python3-google-auth-2.34.0-1.el9.noarch 3.2 MB/s | 220 kB 00:00 2024-09-07T08:11:10.308 INFO:teuthology.orchestra.run.smithi018.stdout:(10/13): python3-pyasn1-modules-0.4.8-6.el9.noa 1.3 MB/s | 279 kB 00:00 2024-09-07T08:11:10.352 INFO:teuthology.orchestra.run.smithi018.stdout:(11/13): python3-kubernetes-26.1.0-2.el9.noarch 8.7 MB/s | 1.0 MB 00:00 2024-09-07T08:11:10.367 INFO:teuthology.orchestra.run.smithi018.stdout:(12/13): python3-rsa-4.9-2.el9.noarch.rpm 641 kB/s | 59 kB 00:00 2024-09-07T08:11:10.409 INFO:teuthology.orchestra.run.smithi018.stdout:(13/13): python3-websocket-client-1.2.3-2.el9.n 894 kB/s | 90 kB 00:00 2024-09-07T08:11:10.412 INFO:teuthology.orchestra.run.smithi018.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:11:10.412 INFO:teuthology.orchestra.run.smithi018.stdout:Total 2.5 MB/s | 2.2 MB 00:00 2024-09-07T08:11:10.478 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction check 2024-09-07T08:11:10.494 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction check succeeded. 2024-09-07T08:11:10.494 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction test 2024-09-07T08:11:10.566 INFO:teuthology.orchestra.run.smithi191.stdout:(6/6): python3-babel-2.9.1-2.el9.noarch.rpm 6.8 MB/s | 6.0 MB 00:00 2024-09-07T08:11:10.568 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:11:10.569 INFO:teuthology.orchestra.run.smithi191.stdout:Total 6.4 MB/s | 7.0 MB 00:01 2024-09-07T08:11:10.584 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction test succeeded. 2024-09-07T08:11:10.586 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction 2024-09-07T08:11:10.639 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-07T08:11:10.650 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-07T08:11:10.650 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-07T08:11:10.748 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-07T08:11:10.749 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-07T08:11:11.056 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-07T08:11:11.098 INFO:teuthology.orchestra.run.smithi018.stdout: Preparing : 1/1 2024-09-07T08:11:11.115 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:18.2.4-812.g03cef2 12/12 2024-09-07T08:11:11.115 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : ceph-mgr-diskprediction-local-2:18.2.4-812.g03cef2 1/12 2024-09-07T08:11:11.115 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : libgfortran-11.5.0-2.el9.x86_64 2/12 2024-09-07T08:11:11.116 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : libquadmath-11.5.0-2.el9.x86_64 3/12 2024-09-07T08:11:11.116 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-09-07T08:11:11.116 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-09-07T08:11:11.116 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-09-07T08:11:11.116 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : openblas-0.3.26-2.el9.x86_64 7/12 2024-09-07T08:11:11.116 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : openblas-openmp-0.3.26-2.el9.x86_64 8/12 2024-09-07T08:11:11.116 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-devel-3.9.19-8.el9.x86_64 9/12 2024-09-07T08:11:11.116 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-09-07T08:11:11.116 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-09-07T08:11:11.222 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-typing-extensions-4.12.2-2.el9.noarch 1/6 2024-09-07T08:11:11.267 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-09-07T08:11:11.280 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-09-07T08:11:11.337 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-09-07T08:11:11.393 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-09-07T08:11:11.429 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-09-07T08:11:11.470 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 5/13 2024-09-07T08:11:11.529 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-09-07T08:11:11.529 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:11.529 INFO:teuthology.orchestra.run.smithi090.stdout:Installed: 2024-09-07T08:11:11.529 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-mgr-diskprediction-local-2:18.2.4-812.g03cef208.el9.noarch 2024-09-07T08:11:11.529 INFO:teuthology.orchestra.run.smithi090.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-09-07T08:11:11.529 INFO:teuthology.orchestra.run.smithi090.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-09-07T08:11:11.529 INFO:teuthology.orchestra.run.smithi090.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-09-07T08:11:11.530 INFO:teuthology.orchestra.run.smithi090.stdout: libgfortran-11.5.0-2.el9.x86_64 2024-09-07T08:11:11.530 INFO:teuthology.orchestra.run.smithi090.stdout: libquadmath-11.5.0-2.el9.x86_64 2024-09-07T08:11:11.530 INFO:teuthology.orchestra.run.smithi090.stdout: openblas-0.3.26-2.el9.x86_64 2024-09-07T08:11:11.530 INFO:teuthology.orchestra.run.smithi090.stdout: openblas-openmp-0.3.26-2.el9.x86_64 2024-09-07T08:11:11.530 INFO:teuthology.orchestra.run.smithi090.stdout: python3-devel-3.9.19-8.el9.x86_64 2024-09-07T08:11:11.530 INFO:teuthology.orchestra.run.smithi090.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-09-07T08:11:11.530 INFO:teuthology.orchestra.run.smithi090.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-09-07T08:11:11.530 INFO:teuthology.orchestra.run.smithi090.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-09-07T08:11:11.530 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:11.530 INFO:teuthology.orchestra.run.smithi090.stdout:Complete! 2024-09-07T08:11:11.577 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-09-07T08:11:11.686 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-google-auth-1:2.34.0-1.el9.noarch 7/13 2024-09-07T08:11:11.756 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-09-07T08:11:11.798 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-09-07T08:11:11.886 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-09-07T08:11:11.949 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-jinja2-2.11.3-6.el9.noarch 5/6 2024-09-07T08:11:11.974 DEBUG:teuthology.orchestra.run.smithi090:> sudo yum -y install ceph-mgr-rook 2024-09-07T08:11:11.996 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-mgr-cephadm-2:18.2.4-812.g03cef208.el9.noarch 6/6 2024-09-07T08:11:12.514 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-09-07T08:11:12.558 INFO:teuthology.orchestra.run.smithi090.stdout:Last metadata expiration check: 0:01:12 ago on Sat 07 Sep 2024 08:10:00 AM UTC. 2024-09-07T08:11:12.561 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-09-07T08:11:12.603 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-09-07T08:11:12.652 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-09-07T08:11:12.681 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : ceph-mgr-rook-2:18.2.4-812.g03cef208.el9.noarch 13/13 2024-09-07T08:11:12.695 INFO:teuthology.orchestra.run.smithi090.stdout:Dependencies resolved. 2024-09-07T08:11:12.696 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:11:12.696 INFO:teuthology.orchestra.run.smithi090.stdout: Package Arch Version Repository Size 2024-09-07T08:11:12.696 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:11:12.696 INFO:teuthology.orchestra.run.smithi090.stdout:Installing: 2024-09-07T08:11:12.696 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-mgr-rook noarch 2:18.2.4-812.g03cef208.el9 ceph-noarch 49 k 2024-09-07T08:11:12.696 INFO:teuthology.orchestra.run.smithi090.stdout:Installing dependencies: 2024-09-07T08:11:12.696 INFO:teuthology.orchestra.run.smithi090.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-09-07T08:11:12.697 INFO:teuthology.orchestra.run.smithi090.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2024-09-07T08:11:12.697 INFO:teuthology.orchestra.run.smithi090.stdout: python3-google-auth noarch 1:2.34.0-1.el9 epel 220 k 2024-09-07T08:11:12.697 INFO:teuthology.orchestra.run.smithi090.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-09-07T08:11:12.697 INFO:teuthology.orchestra.run.smithi090.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-09-07T08:11:12.697 INFO:teuthology.orchestra.run.smithi090.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-09-07T08:11:12.697 INFO:teuthology.orchestra.run.smithi090.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-09-07T08:11:12.697 INFO:teuthology.orchestra.run.smithi090.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-09-07T08:11:12.697 INFO:teuthology.orchestra.run.smithi090.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-09-07T08:11:12.697 INFO:teuthology.orchestra.run.smithi090.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-09-07T08:11:12.697 INFO:teuthology.orchestra.run.smithi090.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-09-07T08:11:12.697 INFO:teuthology.orchestra.run.smithi090.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-09-07T08:11:12.697 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:12.698 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction Summary 2024-09-07T08:11:12.698 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:11:12.698 INFO:teuthology.orchestra.run.smithi090.stdout:Install 13 Packages 2024-09-07T08:11:12.698 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:12.698 INFO:teuthology.orchestra.run.smithi090.stdout:Total download size: 2.2 M 2024-09-07T08:11:12.698 INFO:teuthology.orchestra.run.smithi090.stdout:Installed size: 26 M 2024-09-07T08:11:12.698 INFO:teuthology.orchestra.run.smithi090.stdout:Downloading Packages: 2024-09-07T08:11:12.769 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-mgr-cephadm-2:18.2.4-812.g03cef208.el9.noarch 6/6 2024-09-07T08:11:12.769 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-mgr-cephadm-2:18.2.4-812.g03cef208.el9.noarch 1/6 2024-09-07T08:11:12.769 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-09-07T08:11:12.769 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-jinja2-2.11.3-6.el9.noarch 3/6 2024-09-07T08:11:12.769 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-09-07T08:11:12.769 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-09-07T08:11:13.047 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-typing-extensions-4.12.2-2.el9.noarch 6/6 2024-09-07T08:11:13.047 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:13.047 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-07T08:11:13.047 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr-cephadm-2:18.2.4-812.g03cef208.el9.noarch 2024-09-07T08:11:13.047 INFO:teuthology.orchestra.run.smithi191.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-09-07T08:11:13.047 INFO:teuthology.orchestra.run.smithi191.stdout: python3-babel-2.9.1-2.el9.noarch 2024-09-07T08:11:13.047 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jinja2-2.11.3-6.el9.noarch 2024-09-07T08:11:13.047 INFO:teuthology.orchestra.run.smithi191.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-09-07T08:11:13.047 INFO:teuthology.orchestra.run.smithi191.stdout: python3-typing-extensions-4.12.2-2.el9.noarch 2024-09-07T08:11:13.048 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:13.048 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-07T08:11:13.214 INFO:teuthology.orchestra.run.smithi090.stdout:(1/13): python3-jsonpointer-2.0-4.el9.noarch.rp 147 kB/s | 19 kB 00:00 2024-09-07T08:11:13.239 INFO:teuthology.orchestra.run.smithi090.stdout:(2/13): python3-jsonpatch-1.21-16.el9.noarch.rp 164 kB/s | 26 kB 00:00 2024-09-07T08:11:13.280 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph-fuse 2024-09-07T08:11:13.314 INFO:teuthology.orchestra.run.smithi090.stdout:(3/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 2.1 MB/s | 159 kB 00:00 2024-09-07T08:11:13.340 INFO:teuthology.orchestra.run.smithi090.stdout:(4/13): ceph-mgr-rook-18.2.4-812.g03cef208.el9. 192 kB/s | 49 kB 00:00 2024-09-07T08:11:13.365 INFO:teuthology.orchestra.run.smithi090.stdout:(5/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 1.4 MB/s | 222 kB 00:00 2024-09-07T08:11:13.407 INFO:teuthology.orchestra.run.smithi090.stdout:(6/13): python3-pyasn1-modules-0.4.8-6.el9.noar 3.0 MB/s | 279 kB 00:00 2024-09-07T08:11:13.433 INFO:teuthology.orchestra.run.smithi090.stdout:(7/13): python3-requests-oauthlib-1.3.0-12.el9. 798 kB/s | 54 kB 00:00 2024-09-07T08:11:13.448 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: ceph-mgr-rook-2:18.2.4-812.g03cef208.el9.noarch 13/13 2024-09-07T08:11:13.448 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : ceph-mgr-rook-2:18.2.4-812.g03cef208.el9.noarch 1/13 2024-09-07T08:11:13.448 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-09-07T08:11:13.448 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-09-07T08:11:13.448 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-09-07T08:11:13.449 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-09-07T08:11:13.449 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-09-07T08:11:13.449 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-09-07T08:11:13.449 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-09-07T08:11:13.449 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 9/13 2024-09-07T08:11:13.449 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-google-auth-1:2.34.0-1.el9.noarch 10/13 2024-09-07T08:11:13.449 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-09-07T08:11:13.449 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-09-07T08:11:13.466 INFO:teuthology.orchestra.run.smithi090.stdout:(8/13): python3-cachetools-4.2.4-1.el9.noarch.r 319 kB/s | 32 kB 00:00 2024-09-07T08:11:13.500 INFO:teuthology.orchestra.run.smithi090.stdout:(9/13): python3-certifi-2023.05.07-4.el9.noarch 156 kB/s | 14 kB 00:00 2024-09-07T08:11:13.533 INFO:teuthology.orchestra.run.smithi090.stdout:(10/13): python3-rsa-4.9-2.el9.noarch.rpm 1.8 MB/s | 59 kB 00:00 2024-09-07T08:11:13.569 INFO:teuthology.orchestra.run.smithi090.stdout:(11/13): python3-websocket-client-1.2.3-2.el9.n 2.5 MB/s | 90 kB 00:00 2024-09-07T08:11:13.593 INFO:teuthology.orchestra.run.smithi090.stdout:(12/13): python3-google-auth-2.34.0-1.el9.noarc 1.4 MB/s | 220 kB 00:00 2024-09-07T08:11:13.635 INFO:teuthology.orchestra.run.smithi090.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 6.4 MB/s | 1.0 MB 00:00 2024-09-07T08:11:13.638 INFO:teuthology.orchestra.run.smithi090.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:11:13.638 INFO:teuthology.orchestra.run.smithi090.stdout:Total 2.4 MB/s | 2.2 MB 00:00 2024-09-07T08:11:13.701 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction check 2024-09-07T08:11:13.716 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction check succeeded. 2024-09-07T08:11:13.716 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction test 2024-09-07T08:11:13.773 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-09-07T08:11:13.774 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:13.774 INFO:teuthology.orchestra.run.smithi018.stdout:Installed: 2024-09-07T08:11:13.774 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-mgr-rook-2:18.2.4-812.g03cef208.el9.noarch 2024-09-07T08:11:13.774 INFO:teuthology.orchestra.run.smithi018.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-09-07T08:11:13.774 INFO:teuthology.orchestra.run.smithi018.stdout: python3-certifi-2023.05.07-4.el9.noarch 2024-09-07T08:11:13.774 INFO:teuthology.orchestra.run.smithi018.stdout: python3-google-auth-1:2.34.0-1.el9.noarch 2024-09-07T08:11:13.774 INFO:teuthology.orchestra.run.smithi018.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-09-07T08:11:13.774 INFO:teuthology.orchestra.run.smithi018.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-09-07T08:11:13.774 INFO:teuthology.orchestra.run.smithi018.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-09-07T08:11:13.774 INFO:teuthology.orchestra.run.smithi018.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-09-07T08:11:13.774 INFO:teuthology.orchestra.run.smithi018.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-09-07T08:11:13.774 INFO:teuthology.orchestra.run.smithi018.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-09-07T08:11:13.774 INFO:teuthology.orchestra.run.smithi018.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-09-07T08:11:13.775 INFO:teuthology.orchestra.run.smithi018.stdout: python3-rsa-4.9-2.el9.noarch 2024-09-07T08:11:13.775 INFO:teuthology.orchestra.run.smithi018.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-09-07T08:11:13.775 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:13.775 INFO:teuthology.orchestra.run.smithi018.stdout:Complete! 2024-09-07T08:11:13.802 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction test succeeded. 2024-09-07T08:11:13.803 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction 2024-09-07T08:11:13.833 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:21 ago on Sat 07 Sep 2024 08:09:52 AM UTC. 2024-09-07T08:11:13.963 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-07T08:11:13.964 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:11:13.964 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repository Size 2024-09-07T08:11:13.964 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:11:13.964 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-07T08:11:13.964 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-fuse x86_64 2:18.2.4-812.g03cef208.el9 ceph 852 k 2024-09-07T08:11:13.964 INFO:teuthology.orchestra.run.smithi191.stdout:Installing dependencies: 2024-09-07T08:11:13.964 INFO:teuthology.orchestra.run.smithi191.stdout: fuse x86_64 2.9.9-16.el9 baseos 80 k 2024-09-07T08:11:13.965 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:13.965 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-07T08:11:13.965 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:11:13.965 INFO:teuthology.orchestra.run.smithi191.stdout:Install 2 Packages 2024-09-07T08:11:13.965 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:13.965 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 932 k 2024-09-07T08:11:13.965 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 2.7 M 2024-09-07T08:11:13.966 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-07T08:11:14.027 DEBUG:teuthology.orchestra.run.smithi018:> sudo yum -y install ceph-mgr-cephadm 2024-09-07T08:11:14.134 INFO:teuthology.orchestra.run.smithi191.stdout:(1/2): fuse-2.9.9-16.el9.x86_64.rpm 541 kB/s | 80 kB 00:00 2024-09-07T08:11:14.300 INFO:teuthology.orchestra.run.smithi090.stdout: Preparing : 1/1 2024-09-07T08:11:14.301 INFO:teuthology.orchestra.run.smithi191.stdout:(2/2): ceph-fuse-18.2.4-812.g03cef208.el9.x86_6 2.6 MB/s | 852 kB 00:00 2024-09-07T08:11:14.302 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:11:14.302 INFO:teuthology.orchestra.run.smithi191.stdout:Total 2.7 MB/s | 932 kB 00:00 2024-09-07T08:11:14.314 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-07T08:11:14.336 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-07T08:11:14.336 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-07T08:11:14.417 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-07T08:11:14.417 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-07T08:11:14.473 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-09-07T08:11:14.529 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-09-07T08:11:14.592 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-09-07T08:11:14.592 INFO:teuthology.orchestra.run.smithi018.stdout:Last metadata expiration check: 0:01:18 ago on Sat 07 Sep 2024 08:09:56 AM UTC. 2024-09-07T08:11:14.599 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-07T08:11:14.630 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-09-07T08:11:14.671 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 5/13 2024-09-07T08:11:14.728 INFO:teuthology.orchestra.run.smithi018.stdout:Dependencies resolved. 2024-09-07T08:11:14.729 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:11:14.729 INFO:teuthology.orchestra.run.smithi018.stdout: Package Arch Version Repository Size 2024-09-07T08:11:14.729 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:11:14.729 INFO:teuthology.orchestra.run.smithi018.stdout:Installing: 2024-09-07T08:11:14.729 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-mgr-cephadm noarch 2:18.2.4-812.g03cef208.el9 ceph-noarch 139 k 2024-09-07T08:11:14.730 INFO:teuthology.orchestra.run.smithi018.stdout:Installing dependencies: 2024-09-07T08:11:14.730 INFO:teuthology.orchestra.run.smithi018.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-09-07T08:11:14.730 INFO:teuthology.orchestra.run.smithi018.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-09-07T08:11:14.730 INFO:teuthology.orchestra.run.smithi018.stdout: python3-jinja2 noarch 2.11.3-6.el9 appstream 248 k 2024-09-07T08:11:14.730 INFO:teuthology.orchestra.run.smithi018.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-09-07T08:11:14.730 INFO:teuthology.orchestra.run.smithi018.stdout: python3-typing-extensions noarch 4.12.2-2.el9 epel 74 k 2024-09-07T08:11:14.730 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:14.730 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction Summary 2024-09-07T08:11:14.730 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:11:14.730 INFO:teuthology.orchestra.run.smithi018.stdout:Install 6 Packages 2024-09-07T08:11:14.730 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:14.731 INFO:teuthology.orchestra.run.smithi018.stdout:Total download size: 7.0 M 2024-09-07T08:11:14.731 INFO:teuthology.orchestra.run.smithi018.stdout:Installed size: 33 M 2024-09-07T08:11:14.731 INFO:teuthology.orchestra.run.smithi018.stdout:Downloading Packages: 2024-09-07T08:11:14.749 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : fuse-2.9.9-16.el9.x86_64 1/2 2024-09-07T08:11:14.773 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-09-07T08:11:14.832 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-fuse-2:18.2.4-812.g03cef208.el9.x86_64 2/2 2024-09-07T08:11:14.874 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-google-auth-1:2.34.0-1.el9.noarch 7/13 2024-09-07T08:11:14.933 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-09-07T08:11:15.062 INFO:teuthology.orchestra.run.smithi018.stdout:(1/6): ceph-mgr-cephadm-18.2.4-812.g03cef208.el 691 kB/s | 139 kB 00:00 2024-09-07T08:11:15.162 INFO:teuthology.orchestra.run.smithi018.stdout:(2/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 5.4 MB/s | 548 kB 00:00 2024-09-07T08:11:15.187 INFO:teuthology.orchestra.run.smithi018.stdout:(3/6): python3-natsort-7.1.1-5.el9.noarch.rpm 2.4 MB/s | 58 kB 00:00 2024-09-07T08:11:15.213 INFO:teuthology.orchestra.run.smithi018.stdout:(4/6): python3-typing-extensions-4.12.2-2.el9.n 2.9 MB/s | 74 kB 00:00 2024-09-07T08:11:15.558 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-fuse-2:18.2.4-812.g03cef208.el9.x86_64 2/2 2024-09-07T08:11:15.558 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-fuse-2:18.2.4-812.g03cef208.el9.x86_64 1/2 2024-09-07T08:11:15.638 INFO:teuthology.orchestra.run.smithi018.stdout:(5/6): python3-jinja2-2.11.3-6.el9.noarch.rpm 319 kB/s | 248 kB 00:00 2024-09-07T08:11:15.645 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-09-07T08:11:15.706 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-09-07T08:11:15.740 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-09-07T08:11:15.796 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-09-07T08:11:15.827 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : ceph-mgr-rook-2:18.2.4-812.g03cef208.el9.noarch 13/13 2024-09-07T08:11:15.830 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : fuse-2.9.9-16.el9.x86_64 2/2 2024-09-07T08:11:15.830 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:15.830 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-07T08:11:15.830 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-fuse-2:18.2.4-812.g03cef208.el9.x86_64 fuse-2.9.9-16.el9.x86_64 2024-09-07T08:11:15.831 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:15.831 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-07T08:11:16.030 INFO:teuthology.orchestra.run.smithi018.stdout:(6/6): python3-babel-2.9.1-2.el9.noarch.rpm 5.1 MB/s | 6.0 MB 00:01 2024-09-07T08:11:16.032 INFO:teuthology.orchestra.run.smithi018.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:11:16.032 INFO:teuthology.orchestra.run.smithi018.stdout:Total 5.4 MB/s | 7.0 MB 00:01 2024-09-07T08:11:16.107 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph-volume 2024-09-07T08:11:16.108 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction check 2024-09-07T08:11:16.120 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction check succeeded. 2024-09-07T08:11:16.120 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction test 2024-09-07T08:11:16.223 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction test succeeded. 2024-09-07T08:11:16.223 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction 2024-09-07T08:11:16.533 INFO:teuthology.orchestra.run.smithi018.stdout: Preparing : 1/1 2024-09-07T08:11:16.682 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:24 ago on Sat 07 Sep 2024 08:09:52 AM UTC. 2024-09-07T08:11:16.690 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: ceph-mgr-rook-2:18.2.4-812.g03cef208.el9.noarch 13/13 2024-09-07T08:11:16.690 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : ceph-mgr-rook-2:18.2.4-812.g03cef208.el9.noarch 1/13 2024-09-07T08:11:16.690 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-09-07T08:11:16.690 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-09-07T08:11:16.690 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-09-07T08:11:16.691 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-09-07T08:11:16.691 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-09-07T08:11:16.691 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-09-07T08:11:16.691 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-09-07T08:11:16.691 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 9/13 2024-09-07T08:11:16.691 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-google-auth-1:2.34.0-1.el9.noarch 10/13 2024-09-07T08:11:16.691 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-09-07T08:11:16.691 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-09-07T08:11:16.710 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-typing-extensions-4.12.2-2.el9.noarch 1/6 2024-09-07T08:11:16.774 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-09-07T08:11:16.817 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-07T08:11:16.818 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:11:16.818 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repository Size 2024-09-07T08:11:16.818 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:11:16.818 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-07T08:11:16.818 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-volume noarch 2:18.2.4-812.g03cef208.el9 ceph-noarch 264 k 2024-09-07T08:11:16.818 INFO:teuthology.orchestra.run.smithi191.stdout:Installing dependencies: 2024-09-07T08:11:16.818 INFO:teuthology.orchestra.run.smithi191.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-09-07T08:11:16.818 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:16.818 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-07T08:11:16.818 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:11:16.818 INFO:teuthology.orchestra.run.smithi191.stdout:Install 2 Packages 2024-09-07T08:11:16.818 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:16.819 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 342 k 2024-09-07T08:11:16.819 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 1.5 M 2024-09-07T08:11:16.819 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-07T08:11:17.004 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-09-07T08:11:17.004 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:17.004 INFO:teuthology.orchestra.run.smithi090.stdout:Installed: 2024-09-07T08:11:17.004 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-mgr-rook-2:18.2.4-812.g03cef208.el9.noarch 2024-09-07T08:11:17.004 INFO:teuthology.orchestra.run.smithi090.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-09-07T08:11:17.004 INFO:teuthology.orchestra.run.smithi090.stdout: python3-certifi-2023.05.07-4.el9.noarch 2024-09-07T08:11:17.004 INFO:teuthology.orchestra.run.smithi090.stdout: python3-google-auth-1:2.34.0-1.el9.noarch 2024-09-07T08:11:17.005 INFO:teuthology.orchestra.run.smithi090.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-09-07T08:11:17.005 INFO:teuthology.orchestra.run.smithi090.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-09-07T08:11:17.005 INFO:teuthology.orchestra.run.smithi090.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-09-07T08:11:17.005 INFO:teuthology.orchestra.run.smithi090.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-09-07T08:11:17.005 INFO:teuthology.orchestra.run.smithi090.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-09-07T08:11:17.005 INFO:teuthology.orchestra.run.smithi090.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-09-07T08:11:17.005 INFO:teuthology.orchestra.run.smithi090.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-09-07T08:11:17.005 INFO:teuthology.orchestra.run.smithi090.stdout: python3-rsa-4.9-2.el9.noarch 2024-09-07T08:11:17.005 INFO:teuthology.orchestra.run.smithi090.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-09-07T08:11:17.005 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:17.005 INFO:teuthology.orchestra.run.smithi090.stdout:Complete! 2024-09-07T08:11:17.206 INFO:teuthology.orchestra.run.smithi191.stdout:(1/2): python3-packaging-20.9-5.el9.noarch.rpm 593 kB/s | 77 kB 00:00 2024-09-07T08:11:17.306 DEBUG:teuthology.orchestra.run.smithi090:> sudo yum -y install ceph-mgr-cephadm 2024-09-07T08:11:17.328 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-09-07T08:11:17.331 INFO:teuthology.orchestra.run.smithi191.stdout:(2/2): ceph-volume-18.2.4-812.g03cef208.el9.noa 1.0 MB/s | 264 kB 00:00 2024-09-07T08:11:17.332 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:11:17.332 INFO:teuthology.orchestra.run.smithi191.stdout:Total 665 kB/s | 342 kB 00:00 2024-09-07T08:11:17.344 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-07T08:11:17.353 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-07T08:11:17.354 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-07T08:11:17.384 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-07T08:11:17.385 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-07T08:11:17.420 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-09-07T08:11:17.489 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-jinja2-2.11.3-6.el9.noarch 5/6 2024-09-07T08:11:17.520 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : ceph-mgr-cephadm-2:18.2.4-812.g03cef208.el9.noarch 6/6 2024-09-07T08:11:17.553 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-07T08:11:17.725 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-packaging-20.9-5.el9.noarch 1/2 2024-09-07T08:11:17.759 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-volume-2:18.2.4-812.g03cef208.el9.noarch 2/2 2024-09-07T08:11:17.774 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-volume-2:18.2.4-812.g03cef208.el9.noarch 2/2 2024-09-07T08:11:17.774 INFO:teuthology.orchestra.run.smithi191.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-07T08:11:17.774 INFO:teuthology.orchestra.run.smithi191.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-09-07T08:11:17.775 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:17.857 INFO:teuthology.orchestra.run.smithi090.stdout:Last metadata expiration check: 0:01:17 ago on Sat 07 Sep 2024 08:10:00 AM UTC. 2024-09-07T08:11:17.991 INFO:teuthology.orchestra.run.smithi090.stdout:Dependencies resolved. 2024-09-07T08:11:17.992 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:11:17.992 INFO:teuthology.orchestra.run.smithi090.stdout: Package Arch Version Repository Size 2024-09-07T08:11:17.992 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:11:17.992 INFO:teuthology.orchestra.run.smithi090.stdout:Installing: 2024-09-07T08:11:17.992 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-mgr-cephadm noarch 2:18.2.4-812.g03cef208.el9 ceph-noarch 139 k 2024-09-07T08:11:17.992 INFO:teuthology.orchestra.run.smithi090.stdout:Installing dependencies: 2024-09-07T08:11:17.992 INFO:teuthology.orchestra.run.smithi090.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-09-07T08:11:17.992 INFO:teuthology.orchestra.run.smithi090.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-09-07T08:11:17.992 INFO:teuthology.orchestra.run.smithi090.stdout: python3-jinja2 noarch 2.11.3-6.el9 appstream 248 k 2024-09-07T08:11:17.993 INFO:teuthology.orchestra.run.smithi090.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-09-07T08:11:17.993 INFO:teuthology.orchestra.run.smithi090.stdout: python3-typing-extensions noarch 4.12.2-2.el9 epel 74 k 2024-09-07T08:11:17.993 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:17.993 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction Summary 2024-09-07T08:11:17.993 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:11:17.993 INFO:teuthology.orchestra.run.smithi090.stdout:Install 6 Packages 2024-09-07T08:11:17.993 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:17.993 INFO:teuthology.orchestra.run.smithi090.stdout:Total download size: 7.0 M 2024-09-07T08:11:17.994 INFO:teuthology.orchestra.run.smithi090.stdout:Installed size: 33 M 2024-09-07T08:11:17.994 INFO:teuthology.orchestra.run.smithi090.stdout:Downloading Packages: 2024-09-07T08:11:18.267 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: ceph-mgr-cephadm-2:18.2.4-812.g03cef208.el9.noarch 6/6 2024-09-07T08:11:18.267 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : ceph-mgr-cephadm-2:18.2.4-812.g03cef208.el9.noarch 1/6 2024-09-07T08:11:18.268 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-09-07T08:11:18.268 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-jinja2-2.11.3-6.el9.noarch 3/6 2024-09-07T08:11:18.268 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-09-07T08:11:18.268 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-09-07T08:11:18.530 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-typing-extensions-4.12.2-2.el9.noarch 6/6 2024-09-07T08:11:18.530 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:18.530 INFO:teuthology.orchestra.run.smithi018.stdout:Installed: 2024-09-07T08:11:18.530 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-mgr-cephadm-2:18.2.4-812.g03cef208.el9.noarch 2024-09-07T08:11:18.530 INFO:teuthology.orchestra.run.smithi018.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-09-07T08:11:18.530 INFO:teuthology.orchestra.run.smithi018.stdout: python3-babel-2.9.1-2.el9.noarch 2024-09-07T08:11:18.530 INFO:teuthology.orchestra.run.smithi018.stdout: python3-jinja2-2.11.3-6.el9.noarch 2024-09-07T08:11:18.531 INFO:teuthology.orchestra.run.smithi018.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-09-07T08:11:18.531 INFO:teuthology.orchestra.run.smithi018.stdout: python3-typing-extensions-4.12.2-2.el9.noarch 2024-09-07T08:11:18.531 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:18.531 INFO:teuthology.orchestra.run.smithi018.stdout:Complete! 2024-09-07T08:11:18.531 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-volume-2:18.2.4-812.g03cef208.el9.noarch 1/2 2024-09-07T08:11:18.660 INFO:teuthology.orchestra.run.smithi090.stdout:(1/6): ceph-mgr-cephadm-18.2.4-812.g03cef208.el 619 kB/s | 139 kB 00:00 2024-09-07T08:11:18.736 INFO:teuthology.orchestra.run.smithi090.stdout:(2/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 8.7 MB/s | 548 kB 00:00 2024-09-07T08:11:18.752 DEBUG:teuthology.orchestra.run.smithi018:> sudo yum -y install ceph-fuse 2024-09-07T08:11:18.761 INFO:teuthology.orchestra.run.smithi090.stdout:(3/6): python3-natsort-7.1.1-5.el9.noarch.rpm 2.3 MB/s | 58 kB 00:00 2024-09-07T08:11:18.786 INFO:teuthology.orchestra.run.smithi090.stdout:(4/6): python3-typing-extensions-4.12.2-2.el9.n 3.1 MB/s | 74 kB 00:00 2024-09-07T08:11:18.844 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 2/2 2024-09-07T08:11:18.845 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:18.845 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-07T08:11:18.845 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-volume-2:18.2.4-812.g03cef208.el9.noarch 2024-09-07T08:11:18.845 INFO:teuthology.orchestra.run.smithi191.stdout: python3-packaging-20.9-5.el9.noarch 2024-09-07T08:11:18.845 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:18.845 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-07T08:11:19.150 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install librados-devel 2024-09-07T08:11:19.228 INFO:teuthology.orchestra.run.smithi090.stdout:(5/6): python3-jinja2-2.11.3-6.el9.noarch.rpm 313 kB/s | 248 kB 00:00 2024-09-07T08:11:19.319 INFO:teuthology.orchestra.run.smithi018.stdout:Last metadata expiration check: 0:01:23 ago on Sat 07 Sep 2024 08:09:56 AM UTC. 2024-09-07T08:11:19.460 INFO:teuthology.orchestra.run.smithi018.stdout:Dependencies resolved. 2024-09-07T08:11:19.460 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:11:19.461 INFO:teuthology.orchestra.run.smithi018.stdout: Package Arch Version Repository Size 2024-09-07T08:11:19.461 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:11:19.461 INFO:teuthology.orchestra.run.smithi018.stdout:Installing: 2024-09-07T08:11:19.461 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-fuse x86_64 2:18.2.4-812.g03cef208.el9 ceph 852 k 2024-09-07T08:11:19.461 INFO:teuthology.orchestra.run.smithi018.stdout:Installing dependencies: 2024-09-07T08:11:19.461 INFO:teuthology.orchestra.run.smithi018.stdout: fuse x86_64 2.9.9-16.el9 baseos 80 k 2024-09-07T08:11:19.461 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:19.461 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction Summary 2024-09-07T08:11:19.461 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:11:19.461 INFO:teuthology.orchestra.run.smithi018.stdout:Install 2 Packages 2024-09-07T08:11:19.461 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:19.462 INFO:teuthology.orchestra.run.smithi018.stdout:Total download size: 932 k 2024-09-07T08:11:19.462 INFO:teuthology.orchestra.run.smithi018.stdout:Installed size: 2.7 M 2024-09-07T08:11:19.462 INFO:teuthology.orchestra.run.smithi018.stdout:Downloading Packages: 2024-09-07T08:11:19.620 INFO:teuthology.orchestra.run.smithi090.stdout:(6/6): python3-babel-2.9.1-2.el9.noarch.rpm 5.0 MB/s | 6.0 MB 00:01 2024-09-07T08:11:19.622 INFO:teuthology.orchestra.run.smithi090.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:11:19.623 INFO:teuthology.orchestra.run.smithi090.stdout:Total 4.3 MB/s | 7.0 MB 00:01 2024-09-07T08:11:19.695 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction check 2024-09-07T08:11:19.707 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction check succeeded. 2024-09-07T08:11:19.707 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction test 2024-09-07T08:11:19.724 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:27 ago on Sat 07 Sep 2024 08:09:52 AM UTC. 2024-09-07T08:11:19.806 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction test succeeded. 2024-09-07T08:11:19.806 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction 2024-09-07T08:11:19.831 INFO:teuthology.orchestra.run.smithi018.stdout:(1/2): fuse-2.9.9-16.el9.x86_64.rpm 699 kB/s | 80 kB 00:00 2024-09-07T08:11:19.862 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-07T08:11:19.863 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:11:19.863 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repo Size 2024-09-07T08:11:19.863 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:11:19.863 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-07T08:11:19.863 INFO:teuthology.orchestra.run.smithi191.stdout: librados-devel x86_64 2:18.2.4-812.g03cef208.el9 ceph 127 k 2024-09-07T08:11:19.863 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:19.863 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-07T08:11:19.863 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:11:19.863 INFO:teuthology.orchestra.run.smithi191.stdout:Install 1 Package 2024-09-07T08:11:19.863 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:19.863 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 127 k 2024-09-07T08:11:19.864 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 456 k 2024-09-07T08:11:19.864 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-07T08:11:20.108 INFO:teuthology.orchestra.run.smithi090.stdout: Preparing : 1/1 2024-09-07T08:11:20.257 INFO:teuthology.orchestra.run.smithi018.stdout:(2/2): ceph-fuse-18.2.4-812.g03cef208.el9.x86_6 1.5 MB/s | 852 kB 00:00 2024-09-07T08:11:20.257 INFO:teuthology.orchestra.run.smithi018.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:11:20.258 INFO:teuthology.orchestra.run.smithi018.stdout:Total 1.1 MB/s | 932 kB 00:00 2024-09-07T08:11:20.270 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction check 2024-09-07T08:11:20.281 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-typing-extensions-4.12.2-2.el9.noarch 1/6 2024-09-07T08:11:20.293 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction check succeeded. 2024-09-07T08:11:20.294 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction test 2024-09-07T08:11:20.332 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-09-07T08:11:20.368 INFO:teuthology.orchestra.run.smithi191.stdout:librados-devel-18.2.4-812.g03cef208.el9.x86_64. 251 kB/s | 127 kB 00:00 2024-09-07T08:11:20.369 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:11:20.369 INFO:teuthology.orchestra.run.smithi191.stdout:Total 250 kB/s | 127 kB 00:00 2024-09-07T08:11:20.369 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-07T08:11:20.375 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-07T08:11:20.375 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-07T08:11:20.377 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction test succeeded. 2024-09-07T08:11:20.378 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction 2024-09-07T08:11:20.440 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-07T08:11:20.440 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-07T08:11:20.577 INFO:teuthology.orchestra.run.smithi018.stdout: Preparing : 1/1 2024-09-07T08:11:20.593 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-07T08:11:20.698 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : librados-devel-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:20.726 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : fuse-2.9.9-16.el9.x86_64 1/2 2024-09-07T08:11:20.799 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : ceph-fuse-2:18.2.4-812.g03cef208.el9.x86_64 2/2 2024-09-07T08:11:20.861 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-09-07T08:11:20.953 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-09-07T08:11:21.022 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-jinja2-2.11.3-6.el9.noarch 5/6 2024-09-07T08:11:21.053 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : ceph-mgr-cephadm-2:18.2.4-812.g03cef208.el9.noarch 6/6 2024-09-07T08:11:21.131 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: librados-devel-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:21.377 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : librados-devel-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:21.378 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:21.378 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-07T08:11:21.378 INFO:teuthology.orchestra.run.smithi191.stdout: librados-devel-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:11:21.378 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:21.378 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-07T08:11:21.430 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: ceph-fuse-2:18.2.4-812.g03cef208.el9.x86_64 2/2 2024-09-07T08:11:21.430 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : ceph-fuse-2:18.2.4-812.g03cef208.el9.x86_64 1/2 2024-09-07T08:11:21.638 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install libcephfs2 2024-09-07T08:11:21.669 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : fuse-2.9.9-16.el9.x86_64 2/2 2024-09-07T08:11:21.669 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:21.669 INFO:teuthology.orchestra.run.smithi018.stdout:Installed: 2024-09-07T08:11:21.669 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-fuse-2:18.2.4-812.g03cef208.el9.x86_64 fuse-2.9.9-16.el9.x86_64 2024-09-07T08:11:21.669 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:21.669 INFO:teuthology.orchestra.run.smithi018.stdout:Complete! 2024-09-07T08:11:21.924 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: ceph-mgr-cephadm-2:18.2.4-812.g03cef208.el9.noarch 6/6 2024-09-07T08:11:21.924 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : ceph-mgr-cephadm-2:18.2.4-812.g03cef208.el9.noarch 1/6 2024-09-07T08:11:21.924 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-09-07T08:11:21.924 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-jinja2-2.11.3-6.el9.noarch 3/6 2024-09-07T08:11:21.924 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-09-07T08:11:21.924 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-09-07T08:11:21.956 DEBUG:teuthology.orchestra.run.smithi018:> sudo yum -y install ceph-volume 2024-09-07T08:11:22.180 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-typing-extensions-4.12.2-2.el9.noarch 6/6 2024-09-07T08:11:22.180 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:22.180 INFO:teuthology.orchestra.run.smithi090.stdout:Installed: 2024-09-07T08:11:22.180 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-mgr-cephadm-2:18.2.4-812.g03cef208.el9.noarch 2024-09-07T08:11:22.180 INFO:teuthology.orchestra.run.smithi090.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-09-07T08:11:22.180 INFO:teuthology.orchestra.run.smithi090.stdout: python3-babel-2.9.1-2.el9.noarch 2024-09-07T08:11:22.180 INFO:teuthology.orchestra.run.smithi090.stdout: python3-jinja2-2.11.3-6.el9.noarch 2024-09-07T08:11:22.180 INFO:teuthology.orchestra.run.smithi090.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-09-07T08:11:22.181 INFO:teuthology.orchestra.run.smithi090.stdout: python3-typing-extensions-4.12.2-2.el9.noarch 2024-09-07T08:11:22.181 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:22.181 INFO:teuthology.orchestra.run.smithi090.stdout:Complete! 2024-09-07T08:11:22.208 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:30 ago on Sat 07 Sep 2024 08:09:52 AM UTC. 2024-09-07T08:11:22.300 INFO:teuthology.orchestra.run.smithi191.stdout:Package libcephfs2-2:18.2.4-812.g03cef208.el9.x86_64 is already installed. 2024-09-07T08:11:22.343 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-07T08:11:22.344 INFO:teuthology.orchestra.run.smithi191.stdout:Nothing to do. 2024-09-07T08:11:22.344 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-07T08:11:22.441 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install libcephfs-devel 2024-09-07T08:11:22.465 DEBUG:teuthology.orchestra.run.smithi090:> sudo yum -y install ceph-fuse 2024-09-07T08:11:22.524 INFO:teuthology.orchestra.run.smithi018.stdout:Last metadata expiration check: 0:01:26 ago on Sat 07 Sep 2024 08:09:56 AM UTC. 2024-09-07T08:11:22.662 INFO:teuthology.orchestra.run.smithi018.stdout:Dependencies resolved. 2024-09-07T08:11:22.663 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:11:22.663 INFO:teuthology.orchestra.run.smithi018.stdout: Package Arch Version Repository Size 2024-09-07T08:11:22.663 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:11:22.663 INFO:teuthology.orchestra.run.smithi018.stdout:Installing: 2024-09-07T08:11:22.663 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-volume noarch 2:18.2.4-812.g03cef208.el9 ceph-noarch 264 k 2024-09-07T08:11:22.663 INFO:teuthology.orchestra.run.smithi018.stdout:Installing dependencies: 2024-09-07T08:11:22.663 INFO:teuthology.orchestra.run.smithi018.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-09-07T08:11:22.663 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:22.663 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction Summary 2024-09-07T08:11:22.663 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:11:22.664 INFO:teuthology.orchestra.run.smithi018.stdout:Install 2 Packages 2024-09-07T08:11:22.664 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:22.664 INFO:teuthology.orchestra.run.smithi018.stdout:Total download size: 342 k 2024-09-07T08:11:22.664 INFO:teuthology.orchestra.run.smithi018.stdout:Installed size: 1.5 M 2024-09-07T08:11:22.664 INFO:teuthology.orchestra.run.smithi018.stdout:Downloading Packages: 2024-09-07T08:11:22.829 INFO:teuthology.orchestra.run.smithi018.stdout:(1/2): python3-packaging-20.9-5.el9.noarch.rpm 539 kB/s | 77 kB 00:00 2024-09-07T08:11:23.021 INFO:teuthology.orchestra.run.smithi090.stdout:Last metadata expiration check: 0:01:23 ago on Sat 07 Sep 2024 08:10:00 AM UTC. 2024-09-07T08:11:23.030 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:31 ago on Sat 07 Sep 2024 08:09:52 AM UTC. 2024-09-07T08:11:23.049 INFO:teuthology.orchestra.run.smithi018.stdout:(2/2): ceph-volume-18.2.4-812.g03cef208.el9.noa 735 kB/s | 264 kB 00:00 2024-09-07T08:11:23.049 INFO:teuthology.orchestra.run.smithi018.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:11:23.049 INFO:teuthology.orchestra.run.smithi018.stdout:Total 892 kB/s | 342 kB 00:00 2024-09-07T08:11:23.058 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction check 2024-09-07T08:11:23.069 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction check succeeded. 2024-09-07T08:11:23.069 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction test 2024-09-07T08:11:23.098 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction test succeeded. 2024-09-07T08:11:23.098 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction 2024-09-07T08:11:23.150 INFO:teuthology.orchestra.run.smithi090.stdout:Dependencies resolved. 2024-09-07T08:11:23.151 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:11:23.151 INFO:teuthology.orchestra.run.smithi090.stdout: Package Arch Version Repository Size 2024-09-07T08:11:23.151 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:11:23.151 INFO:teuthology.orchestra.run.smithi090.stdout:Installing: 2024-09-07T08:11:23.151 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-fuse x86_64 2:18.2.4-812.g03cef208.el9 ceph 852 k 2024-09-07T08:11:23.151 INFO:teuthology.orchestra.run.smithi090.stdout:Installing dependencies: 2024-09-07T08:11:23.151 INFO:teuthology.orchestra.run.smithi090.stdout: fuse x86_64 2.9.9-16.el9 baseos 80 k 2024-09-07T08:11:23.151 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:23.151 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction Summary 2024-09-07T08:11:23.152 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:11:23.152 INFO:teuthology.orchestra.run.smithi090.stdout:Install 2 Packages 2024-09-07T08:11:23.152 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:23.152 INFO:teuthology.orchestra.run.smithi090.stdout:Total download size: 932 k 2024-09-07T08:11:23.152 INFO:teuthology.orchestra.run.smithi090.stdout:Installed size: 2.7 M 2024-09-07T08:11:23.152 INFO:teuthology.orchestra.run.smithi090.stdout:Downloading Packages: 2024-09-07T08:11:23.163 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-07T08:11:23.164 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:11:23.164 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repo Size 2024-09-07T08:11:23.164 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:11:23.164 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-07T08:11:23.164 INFO:teuthology.orchestra.run.smithi191.stdout: libcephfs-devel x86_64 2:18.2.4-812.g03cef208.el9 ceph 31 k 2024-09-07T08:11:23.164 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:23.164 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-07T08:11:23.164 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:11:23.165 INFO:teuthology.orchestra.run.smithi191.stdout:Install 1 Package 2024-09-07T08:11:23.165 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:23.165 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 31 k 2024-09-07T08:11:23.165 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 139 k 2024-09-07T08:11:23.165 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-07T08:11:23.252 INFO:teuthology.orchestra.run.smithi018.stdout: Preparing : 1/1 2024-09-07T08:11:23.337 INFO:teuthology.orchestra.run.smithi191.stdout:libcephfs-devel-18.2.4-812.g03cef208.el9.x86_64 181 kB/s | 31 kB 00:00 2024-09-07T08:11:23.337 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:11:23.338 INFO:teuthology.orchestra.run.smithi191.stdout:Total 180 kB/s | 31 kB 00:00 2024-09-07T08:11:23.338 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-07T08:11:23.341 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-07T08:11:23.341 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-07T08:11:23.345 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-07T08:11:23.346 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-07T08:11:23.377 INFO:teuthology.orchestra.run.smithi090.stdout:(1/2): fuse-2.9.9-16.el9.x86_64.rpm 445 kB/s | 80 kB 00:00 2024-09-07T08:11:23.430 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-07T08:11:23.471 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : python3-packaging-20.9-5.el9.noarch 1/2 2024-09-07T08:11:23.507 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : ceph-volume-2:18.2.4-812.g03cef208.el9.noarch 2/2 2024-09-07T08:11:23.518 INFO:teuthology.orchestra.run.smithi090.stdout:(2/2): ceph-fuse-18.2.4-812.g03cef208.el9.x86_6 2.6 MB/s | 852 kB 00:00 2024-09-07T08:11:23.519 INFO:teuthology.orchestra.run.smithi090.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:11:23.519 INFO:teuthology.orchestra.run.smithi090.stdout:Total 2.5 MB/s | 932 kB 00:00 2024-09-07T08:11:23.522 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: ceph-volume-2:18.2.4-812.g03cef208.el9.noarch 2/2 2024-09-07T08:11:23.522 INFO:teuthology.orchestra.run.smithi018.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-07T08:11:23.522 INFO:teuthology.orchestra.run.smithi018.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-09-07T08:11:23.523 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:23.523 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : libcephfs-devel-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:23.531 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction check 2024-09-07T08:11:23.552 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction check succeeded. 2024-09-07T08:11:23.552 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction test 2024-09-07T08:11:23.631 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction test succeeded. 2024-09-07T08:11:23.631 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction 2024-09-07T08:11:23.809 INFO:teuthology.orchestra.run.smithi090.stdout: Preparing : 1/1 2024-09-07T08:11:23.879 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: libcephfs-devel-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:23.950 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : fuse-2.9.9-16.el9.x86_64 1/2 2024-09-07T08:11:24.015 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : ceph-fuse-2:18.2.4-812.g03cef208.el9.x86_64 2/2 2024-09-07T08:11:24.117 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : libcephfs-devel-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:24.118 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:24.118 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-07T08:11:24.118 INFO:teuthology.orchestra.run.smithi191.stdout: libcephfs-devel-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:11:24.118 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:24.118 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-07T08:11:24.245 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : ceph-volume-2:18.2.4-812.g03cef208.el9.noarch 1/2 2024-09-07T08:11:24.302 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install librados2 2024-09-07T08:11:24.547 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 2/2 2024-09-07T08:11:24.547 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:24.547 INFO:teuthology.orchestra.run.smithi018.stdout:Installed: 2024-09-07T08:11:24.547 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-volume-2:18.2.4-812.g03cef208.el9.noarch 2024-09-07T08:11:24.548 INFO:teuthology.orchestra.run.smithi018.stdout: python3-packaging-20.9-5.el9.noarch 2024-09-07T08:11:24.548 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:24.548 INFO:teuthology.orchestra.run.smithi018.stdout:Complete! 2024-09-07T08:11:24.761 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: ceph-fuse-2:18.2.4-812.g03cef208.el9.x86_64 2/2 2024-09-07T08:11:24.761 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : ceph-fuse-2:18.2.4-812.g03cef208.el9.x86_64 1/2 2024-09-07T08:11:24.836 DEBUG:teuthology.orchestra.run.smithi018:> sudo yum -y install librados-devel 2024-09-07T08:11:24.857 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:32 ago on Sat 07 Sep 2024 08:09:52 AM UTC. 2024-09-07T08:11:24.945 INFO:teuthology.orchestra.run.smithi191.stdout:Package librados2-2:18.2.4-812.g03cef208.el9.x86_64 is already installed. 2024-09-07T08:11:24.988 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-07T08:11:24.989 INFO:teuthology.orchestra.run.smithi191.stdout:Nothing to do. 2024-09-07T08:11:24.989 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-07T08:11:25.004 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : fuse-2.9.9-16.el9.x86_64 2/2 2024-09-07T08:11:25.004 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:25.004 INFO:teuthology.orchestra.run.smithi090.stdout:Installed: 2024-09-07T08:11:25.005 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-fuse-2:18.2.4-812.g03cef208.el9.x86_64 fuse-2.9.9-16.el9.x86_64 2024-09-07T08:11:25.005 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:25.005 INFO:teuthology.orchestra.run.smithi090.stdout:Complete! 2024-09-07T08:11:25.062 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install librbd1 2024-09-07T08:11:25.324 DEBUG:teuthology.orchestra.run.smithi090:> sudo yum -y install ceph-volume 2024-09-07T08:11:25.409 INFO:teuthology.orchestra.run.smithi018.stdout:Last metadata expiration check: 0:01:29 ago on Sat 07 Sep 2024 08:09:56 AM UTC. 2024-09-07T08:11:25.549 INFO:teuthology.orchestra.run.smithi018.stdout:Dependencies resolved. 2024-09-07T08:11:25.550 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:11:25.550 INFO:teuthology.orchestra.run.smithi018.stdout: Package Arch Version Repo Size 2024-09-07T08:11:25.550 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:11:25.550 INFO:teuthology.orchestra.run.smithi018.stdout:Installing: 2024-09-07T08:11:25.550 INFO:teuthology.orchestra.run.smithi018.stdout: librados-devel x86_64 2:18.2.4-812.g03cef208.el9 ceph 127 k 2024-09-07T08:11:25.550 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:25.550 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction Summary 2024-09-07T08:11:25.550 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:11:25.550 INFO:teuthology.orchestra.run.smithi018.stdout:Install 1 Package 2024-09-07T08:11:25.550 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:25.550 INFO:teuthology.orchestra.run.smithi018.stdout:Total download size: 127 k 2024-09-07T08:11:25.551 INFO:teuthology.orchestra.run.smithi018.stdout:Installed size: 456 k 2024-09-07T08:11:25.551 INFO:teuthology.orchestra.run.smithi018.stdout:Downloading Packages: 2024-09-07T08:11:25.613 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:33 ago on Sat 07 Sep 2024 08:09:52 AM UTC. 2024-09-07T08:11:25.702 INFO:teuthology.orchestra.run.smithi191.stdout:Package librbd1-2:18.2.4-812.g03cef208.el9.x86_64 is already installed. 2024-09-07T08:11:25.744 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-07T08:11:25.745 INFO:teuthology.orchestra.run.smithi191.stdout:Nothing to do. 2024-09-07T08:11:25.746 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-07T08:11:25.769 INFO:teuthology.orchestra.run.smithi018.stdout:librados-devel-18.2.4-812.g03cef208.el9.x86_64. 581 kB/s | 127 kB 00:00 2024-09-07T08:11:25.769 INFO:teuthology.orchestra.run.smithi018.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:11:25.770 INFO:teuthology.orchestra.run.smithi018.stdout:Total 577 kB/s | 127 kB 00:00 2024-09-07T08:11:25.770 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction check 2024-09-07T08:11:25.776 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction check succeeded. 2024-09-07T08:11:25.776 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction test 2024-09-07T08:11:25.809 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install python3-rados 2024-09-07T08:11:25.843 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction test succeeded. 2024-09-07T08:11:25.844 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction 2024-09-07T08:11:25.885 INFO:teuthology.orchestra.run.smithi090.stdout:Last metadata expiration check: 0:01:25 ago on Sat 07 Sep 2024 08:10:00 AM UTC. 2024-09-07T08:11:26.001 INFO:teuthology.orchestra.run.smithi018.stdout: Preparing : 1/1 2024-09-07T08:11:26.022 INFO:teuthology.orchestra.run.smithi090.stdout:Dependencies resolved. 2024-09-07T08:11:26.023 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:11:26.023 INFO:teuthology.orchestra.run.smithi090.stdout: Package Arch Version Repository Size 2024-09-07T08:11:26.023 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:11:26.023 INFO:teuthology.orchestra.run.smithi090.stdout:Installing: 2024-09-07T08:11:26.023 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-volume noarch 2:18.2.4-812.g03cef208.el9 ceph-noarch 264 k 2024-09-07T08:11:26.023 INFO:teuthology.orchestra.run.smithi090.stdout:Installing dependencies: 2024-09-07T08:11:26.023 INFO:teuthology.orchestra.run.smithi090.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-09-07T08:11:26.024 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:26.024 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction Summary 2024-09-07T08:11:26.024 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:11:26.024 INFO:teuthology.orchestra.run.smithi090.stdout:Install 2 Packages 2024-09-07T08:11:26.024 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:26.024 INFO:teuthology.orchestra.run.smithi090.stdout:Total download size: 342 k 2024-09-07T08:11:26.024 INFO:teuthology.orchestra.run.smithi090.stdout:Installed size: 1.5 M 2024-09-07T08:11:26.024 INFO:teuthology.orchestra.run.smithi090.stdout:Downloading Packages: 2024-09-07T08:11:26.110 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : librados-devel-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:26.362 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:34 ago on Sat 07 Sep 2024 08:09:52 AM UTC. 2024-09-07T08:11:26.452 INFO:teuthology.orchestra.run.smithi191.stdout:Package python3-rados-2:18.2.4-812.g03cef208.el9.x86_64 is already installed. 2024-09-07T08:11:26.495 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-07T08:11:26.496 INFO:teuthology.orchestra.run.smithi191.stdout:Nothing to do. 2024-09-07T08:11:26.496 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-07T08:11:26.531 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: librados-devel-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:26.545 INFO:teuthology.orchestra.run.smithi090.stdout:(1/2): ceph-volume-18.2.4-812.g03cef208.el9.noa 986 kB/s | 264 kB 00:00 2024-09-07T08:11:26.564 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install python3-rgw 2024-09-07T08:11:26.696 INFO:teuthology.orchestra.run.smithi090.stdout:(2/2): python3-packaging-20.9-5.el9.noarch.rpm 184 kB/s | 77 kB 00:00 2024-09-07T08:11:26.696 INFO:teuthology.orchestra.run.smithi090.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:11:26.697 INFO:teuthology.orchestra.run.smithi090.stdout:Total 507 kB/s | 342 kB 00:00 2024-09-07T08:11:26.708 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction check 2024-09-07T08:11:26.718 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction check succeeded. 2024-09-07T08:11:26.718 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction test 2024-09-07T08:11:26.749 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction test succeeded. 2024-09-07T08:11:26.749 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction 2024-09-07T08:11:26.779 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : librados-devel-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:26.779 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:26.780 INFO:teuthology.orchestra.run.smithi018.stdout:Installed: 2024-09-07T08:11:26.780 INFO:teuthology.orchestra.run.smithi018.stdout: librados-devel-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:11:26.780 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:26.780 INFO:teuthology.orchestra.run.smithi018.stdout:Complete! 2024-09-07T08:11:26.888 INFO:teuthology.orchestra.run.smithi090.stdout: Preparing : 1/1 2024-09-07T08:11:27.046 DEBUG:teuthology.orchestra.run.smithi018:> sudo yum -y install libcephfs2 2024-09-07T08:11:27.063 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : python3-packaging-20.9-5.el9.noarch 1/2 2024-09-07T08:11:27.099 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : ceph-volume-2:18.2.4-812.g03cef208.el9.noarch 2/2 2024-09-07T08:11:27.115 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: ceph-volume-2:18.2.4-812.g03cef208.el9.noarch 2/2 2024-09-07T08:11:27.115 INFO:teuthology.orchestra.run.smithi090.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-07T08:11:27.115 INFO:teuthology.orchestra.run.smithi090.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-09-07T08:11:27.115 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:27.117 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:35 ago on Sat 07 Sep 2024 08:09:52 AM UTC. 2024-09-07T08:11:27.206 INFO:teuthology.orchestra.run.smithi191.stdout:Package python3-rgw-2:18.2.4-812.g03cef208.el9.x86_64 is already installed. 2024-09-07T08:11:27.249 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-07T08:11:27.250 INFO:teuthology.orchestra.run.smithi191.stdout:Nothing to do. 2024-09-07T08:11:27.250 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-07T08:11:27.318 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install python3-cephfs 2024-09-07T08:11:27.614 INFO:teuthology.orchestra.run.smithi018.stdout:Last metadata expiration check: 0:01:31 ago on Sat 07 Sep 2024 08:09:56 AM UTC. 2024-09-07T08:11:27.707 INFO:teuthology.orchestra.run.smithi018.stdout:Package libcephfs2-2:18.2.4-812.g03cef208.el9.x86_64 is already installed. 2024-09-07T08:11:27.751 INFO:teuthology.orchestra.run.smithi018.stdout:Dependencies resolved. 2024-09-07T08:11:27.752 INFO:teuthology.orchestra.run.smithi018.stdout:Nothing to do. 2024-09-07T08:11:27.753 INFO:teuthology.orchestra.run.smithi018.stdout:Complete! 2024-09-07T08:11:27.829 DEBUG:teuthology.orchestra.run.smithi018:> sudo yum -y install libcephfs-devel 2024-09-07T08:11:27.850 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : ceph-volume-2:18.2.4-812.g03cef208.el9.noarch 1/2 2024-09-07T08:11:27.870 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:35 ago on Sat 07 Sep 2024 08:09:52 AM UTC. 2024-09-07T08:11:27.960 INFO:teuthology.orchestra.run.smithi191.stdout:Package python3-cephfs-2:18.2.4-812.g03cef208.el9.x86_64 is already installed. 2024-09-07T08:11:28.003 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-07T08:11:28.004 INFO:teuthology.orchestra.run.smithi191.stdout:Nothing to do. 2024-09-07T08:11:28.005 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-07T08:11:28.072 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install python3-rbd 2024-09-07T08:11:28.139 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 2/2 2024-09-07T08:11:28.140 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:28.140 INFO:teuthology.orchestra.run.smithi090.stdout:Installed: 2024-09-07T08:11:28.140 INFO:teuthology.orchestra.run.smithi090.stdout: ceph-volume-2:18.2.4-812.g03cef208.el9.noarch 2024-09-07T08:11:28.140 INFO:teuthology.orchestra.run.smithi090.stdout: python3-packaging-20.9-5.el9.noarch 2024-09-07T08:11:28.140 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:28.140 INFO:teuthology.orchestra.run.smithi090.stdout:Complete! 2024-09-07T08:11:28.392 INFO:teuthology.orchestra.run.smithi018.stdout:Last metadata expiration check: 0:01:32 ago on Sat 07 Sep 2024 08:09:56 AM UTC. 2024-09-07T08:11:28.477 DEBUG:teuthology.orchestra.run.smithi090:> sudo yum -y install librados-devel 2024-09-07T08:11:28.531 INFO:teuthology.orchestra.run.smithi018.stdout:Dependencies resolved. 2024-09-07T08:11:28.532 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:11:28.532 INFO:teuthology.orchestra.run.smithi018.stdout: Package Arch Version Repo Size 2024-09-07T08:11:28.532 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:11:28.532 INFO:teuthology.orchestra.run.smithi018.stdout:Installing: 2024-09-07T08:11:28.532 INFO:teuthology.orchestra.run.smithi018.stdout: libcephfs-devel x86_64 2:18.2.4-812.g03cef208.el9 ceph 31 k 2024-09-07T08:11:28.532 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:28.532 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction Summary 2024-09-07T08:11:28.532 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:11:28.532 INFO:teuthology.orchestra.run.smithi018.stdout:Install 1 Package 2024-09-07T08:11:28.533 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:28.533 INFO:teuthology.orchestra.run.smithi018.stdout:Total download size: 31 k 2024-09-07T08:11:28.533 INFO:teuthology.orchestra.run.smithi018.stdout:Installed size: 139 k 2024-09-07T08:11:28.533 INFO:teuthology.orchestra.run.smithi018.stdout:Downloading Packages: 2024-09-07T08:11:28.628 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:36 ago on Sat 07 Sep 2024 08:09:52 AM UTC. 2024-09-07T08:11:28.690 INFO:teuthology.orchestra.run.smithi018.stdout:libcephfs-devel-18.2.4-812.g03cef208.el9.x86_64 198 kB/s | 31 kB 00:00 2024-09-07T08:11:28.690 INFO:teuthology.orchestra.run.smithi018.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:11:28.690 INFO:teuthology.orchestra.run.smithi018.stdout:Total 196 kB/s | 31 kB 00:00 2024-09-07T08:11:28.691 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction check 2024-09-07T08:11:28.694 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction check succeeded. 2024-09-07T08:11:28.694 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction test 2024-09-07T08:11:28.699 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction test succeeded. 2024-09-07T08:11:28.699 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction 2024-09-07T08:11:28.718 INFO:teuthology.orchestra.run.smithi191.stdout:Package python3-rbd-2:18.2.4-812.g03cef208.el9.x86_64 is already installed. 2024-09-07T08:11:28.761 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-07T08:11:28.764 INFO:teuthology.orchestra.run.smithi191.stdout:Nothing to do. 2024-09-07T08:11:28.764 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-07T08:11:28.787 INFO:teuthology.orchestra.run.smithi018.stdout: Preparing : 1/1 2024-09-07T08:11:28.830 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install rbd-fuse 2024-09-07T08:11:28.913 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : libcephfs-devel-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:29.046 INFO:teuthology.orchestra.run.smithi090.stdout:Last metadata expiration check: 0:01:29 ago on Sat 07 Sep 2024 08:10:00 AM UTC. 2024-09-07T08:11:29.181 INFO:teuthology.orchestra.run.smithi090.stdout:Dependencies resolved. 2024-09-07T08:11:29.182 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:11:29.182 INFO:teuthology.orchestra.run.smithi090.stdout: Package Arch Version Repo Size 2024-09-07T08:11:29.182 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:11:29.182 INFO:teuthology.orchestra.run.smithi090.stdout:Installing: 2024-09-07T08:11:29.182 INFO:teuthology.orchestra.run.smithi090.stdout: librados-devel x86_64 2:18.2.4-812.g03cef208.el9 ceph 127 k 2024-09-07T08:11:29.182 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:29.182 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction Summary 2024-09-07T08:11:29.182 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:11:29.182 INFO:teuthology.orchestra.run.smithi090.stdout:Install 1 Package 2024-09-07T08:11:29.182 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:29.182 INFO:teuthology.orchestra.run.smithi090.stdout:Total download size: 127 k 2024-09-07T08:11:29.182 INFO:teuthology.orchestra.run.smithi090.stdout:Installed size: 456 k 2024-09-07T08:11:29.182 INFO:teuthology.orchestra.run.smithi090.stdout:Downloading Packages: 2024-09-07T08:11:29.261 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: libcephfs-devel-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:29.384 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:37 ago on Sat 07 Sep 2024 08:09:52 AM UTC. 2024-09-07T08:11:29.390 INFO:teuthology.orchestra.run.smithi090.stdout:librados-devel-18.2.4-812.g03cef208.el9.x86_64. 612 kB/s | 127 kB 00:00 2024-09-07T08:11:29.391 INFO:teuthology.orchestra.run.smithi090.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:11:29.391 INFO:teuthology.orchestra.run.smithi090.stdout:Total 606 kB/s | 127 kB 00:00 2024-09-07T08:11:29.391 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction check 2024-09-07T08:11:29.397 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction check succeeded. 2024-09-07T08:11:29.397 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction test 2024-09-07T08:11:29.462 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction test succeeded. 2024-09-07T08:11:29.462 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction 2024-09-07T08:11:29.487 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : libcephfs-devel-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:29.487 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:29.487 INFO:teuthology.orchestra.run.smithi018.stdout:Installed: 2024-09-07T08:11:29.487 INFO:teuthology.orchestra.run.smithi018.stdout: libcephfs-devel-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:11:29.487 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:29.487 INFO:teuthology.orchestra.run.smithi018.stdout:Complete! 2024-09-07T08:11:29.517 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-07T08:11:29.517 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:11:29.517 INFO:teuthology.orchestra.run.smithi191.stdout: Package Architecture Version Repository Size 2024-09-07T08:11:29.517 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:11:29.518 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-07T08:11:29.518 INFO:teuthology.orchestra.run.smithi191.stdout: rbd-fuse x86_64 2:18.2.4-812.g03cef208.el9 ceph 87 k 2024-09-07T08:11:29.518 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:29.518 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-07T08:11:29.518 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:11:29.518 INFO:teuthology.orchestra.run.smithi191.stdout:Install 1 Package 2024-09-07T08:11:29.518 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:29.519 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 87 k 2024-09-07T08:11:29.519 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 227 k 2024-09-07T08:11:29.519 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-07T08:11:29.611 INFO:teuthology.orchestra.run.smithi090.stdout: Preparing : 1/1 2024-09-07T08:11:29.687 DEBUG:teuthology.orchestra.run.smithi018:> sudo yum -y install librados2 2024-09-07T08:11:29.711 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : librados-devel-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:29.741 INFO:teuthology.orchestra.run.smithi191.stdout:rbd-fuse-18.2.4-812.g03cef208.el9.x86_64.rpm 389 kB/s | 87 kB 00:00 2024-09-07T08:11:29.742 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:11:29.742 INFO:teuthology.orchestra.run.smithi191.stdout:Total 387 kB/s | 87 kB 00:00 2024-09-07T08:11:29.742 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-07T08:11:29.749 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-07T08:11:29.749 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-07T08:11:29.813 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-07T08:11:29.813 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-07T08:11:29.967 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-07T08:11:30.070 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : rbd-fuse-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:30.195 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: librados-devel-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:30.247 INFO:teuthology.orchestra.run.smithi018.stdout:Last metadata expiration check: 0:01:34 ago on Sat 07 Sep 2024 08:09:56 AM UTC. 2024-09-07T08:11:30.338 INFO:teuthology.orchestra.run.smithi018.stdout:Package librados2-2:18.2.4-812.g03cef208.el9.x86_64 is already installed. 2024-09-07T08:11:30.383 INFO:teuthology.orchestra.run.smithi018.stdout:Dependencies resolved. 2024-09-07T08:11:30.384 INFO:teuthology.orchestra.run.smithi018.stdout:Nothing to do. 2024-09-07T08:11:30.384 INFO:teuthology.orchestra.run.smithi018.stdout:Complete! 2024-09-07T08:11:30.422 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: rbd-fuse-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:30.439 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : librados-devel-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:30.440 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:30.440 INFO:teuthology.orchestra.run.smithi090.stdout:Installed: 2024-09-07T08:11:30.440 INFO:teuthology.orchestra.run.smithi090.stdout: librados-devel-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:11:30.440 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:30.440 INFO:teuthology.orchestra.run.smithi090.stdout:Complete! 2024-09-07T08:11:30.451 DEBUG:teuthology.orchestra.run.smithi018:> sudo yum -y install librbd1 2024-09-07T08:11:30.664 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : rbd-fuse-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:30.664 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:30.664 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-07T08:11:30.664 INFO:teuthology.orchestra.run.smithi191.stdout: rbd-fuse-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:11:30.665 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:30.665 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-07T08:11:30.827 DEBUG:teuthology.orchestra.run.smithi090:> sudo yum -y install libcephfs2 2024-09-07T08:11:30.903 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install rbd-mirror 2024-09-07T08:11:31.016 INFO:teuthology.orchestra.run.smithi018.stdout:Last metadata expiration check: 0:01:35 ago on Sat 07 Sep 2024 08:09:56 AM UTC. 2024-09-07T08:11:31.109 INFO:teuthology.orchestra.run.smithi018.stdout:Package librbd1-2:18.2.4-812.g03cef208.el9.x86_64 is already installed. 2024-09-07T08:11:31.154 INFO:teuthology.orchestra.run.smithi018.stdout:Dependencies resolved. 2024-09-07T08:11:31.155 INFO:teuthology.orchestra.run.smithi018.stdout:Nothing to do. 2024-09-07T08:11:31.155 INFO:teuthology.orchestra.run.smithi018.stdout:Complete! 2024-09-07T08:11:31.228 DEBUG:teuthology.orchestra.run.smithi018:> sudo yum -y install python3-rados 2024-09-07T08:11:31.390 INFO:teuthology.orchestra.run.smithi090.stdout:Last metadata expiration check: 0:01:31 ago on Sat 07 Sep 2024 08:10:00 AM UTC. 2024-09-07T08:11:31.474 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:39 ago on Sat 07 Sep 2024 08:09:52 AM UTC. 2024-09-07T08:11:31.480 INFO:teuthology.orchestra.run.smithi090.stdout:Package libcephfs2-2:18.2.4-812.g03cef208.el9.x86_64 is already installed. 2024-09-07T08:11:31.524 INFO:teuthology.orchestra.run.smithi090.stdout:Dependencies resolved. 2024-09-07T08:11:31.525 INFO:teuthology.orchestra.run.smithi090.stdout:Nothing to do. 2024-09-07T08:11:31.525 INFO:teuthology.orchestra.run.smithi090.stdout:Complete! 2024-09-07T08:11:31.609 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-07T08:11:31.610 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:11:31.610 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repo Size 2024-09-07T08:11:31.611 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:11:31.611 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-07T08:11:31.611 INFO:teuthology.orchestra.run.smithi191.stdout: rbd-mirror x86_64 2:18.2.4-812.g03cef208.el9 ceph 3.0 M 2024-09-07T08:11:31.611 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:31.611 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-07T08:11:31.612 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:11:31.612 INFO:teuthology.orchestra.run.smithi191.stdout:Install 1 Package 2024-09-07T08:11:31.612 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:31.612 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 3.0 M 2024-09-07T08:11:31.612 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 12 M 2024-09-07T08:11:31.612 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-07T08:11:31.624 DEBUG:teuthology.orchestra.run.smithi090:> sudo yum -y install libcephfs-devel 2024-09-07T08:11:31.793 INFO:teuthology.orchestra.run.smithi018.stdout:Last metadata expiration check: 0:01:35 ago on Sat 07 Sep 2024 08:09:56 AM UTC. 2024-09-07T08:11:31.886 INFO:teuthology.orchestra.run.smithi018.stdout:Package python3-rados-2:18.2.4-812.g03cef208.el9.x86_64 is already installed. 2024-09-07T08:11:31.931 INFO:teuthology.orchestra.run.smithi018.stdout:Dependencies resolved. 2024-09-07T08:11:31.932 INFO:teuthology.orchestra.run.smithi018.stdout:Nothing to do. 2024-09-07T08:11:31.932 INFO:teuthology.orchestra.run.smithi018.stdout:Complete! 2024-09-07T08:11:31.933 INFO:teuthology.orchestra.run.smithi191.stdout:rbd-mirror-18.2.4-812.g03cef208.el9.x86_64.rpm 9.3 MB/s | 3.0 MB 00:00 2024-09-07T08:11:31.933 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:11:31.934 INFO:teuthology.orchestra.run.smithi191.stdout:Total 9.3 MB/s | 3.0 MB 00:00 2024-09-07T08:11:31.934 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-07T08:11:31.943 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-07T08:11:31.943 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-07T08:11:32.001 DEBUG:teuthology.orchestra.run.smithi018:> sudo yum -y install python3-rgw 2024-09-07T08:11:32.022 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-07T08:11:32.023 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-07T08:11:32.199 INFO:teuthology.orchestra.run.smithi090.stdout:Last metadata expiration check: 0:01:32 ago on Sat 07 Sep 2024 08:10:00 AM UTC. 2024-09-07T08:11:32.330 INFO:teuthology.orchestra.run.smithi090.stdout:Dependencies resolved. 2024-09-07T08:11:32.331 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:11:32.331 INFO:teuthology.orchestra.run.smithi090.stdout: Package Arch Version Repo Size 2024-09-07T08:11:32.331 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:11:32.331 INFO:teuthology.orchestra.run.smithi090.stdout:Installing: 2024-09-07T08:11:32.331 INFO:teuthology.orchestra.run.smithi090.stdout: libcephfs-devel x86_64 2:18.2.4-812.g03cef208.el9 ceph 31 k 2024-09-07T08:11:32.331 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:32.331 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction Summary 2024-09-07T08:11:32.331 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:11:32.331 INFO:teuthology.orchestra.run.smithi090.stdout:Install 1 Package 2024-09-07T08:11:32.332 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:32.332 INFO:teuthology.orchestra.run.smithi090.stdout:Total download size: 31 k 2024-09-07T08:11:32.332 INFO:teuthology.orchestra.run.smithi090.stdout:Installed size: 139 k 2024-09-07T08:11:32.332 INFO:teuthology.orchestra.run.smithi090.stdout:Downloading Packages: 2024-09-07T08:11:32.447 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-07T08:11:32.491 INFO:teuthology.orchestra.run.smithi090.stdout:libcephfs-devel-18.2.4-812.g03cef208.el9.x86_64 194 kB/s | 31 kB 00:00 2024-09-07T08:11:32.492 INFO:teuthology.orchestra.run.smithi090.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:11:32.492 INFO:teuthology.orchestra.run.smithi090.stdout:Total 193 kB/s | 31 kB 00:00 2024-09-07T08:11:32.492 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction check 2024-09-07T08:11:32.495 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction check succeeded. 2024-09-07T08:11:32.495 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction test 2024-09-07T08:11:32.500 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction test succeeded. 2024-09-07T08:11:32.500 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction 2024-09-07T08:11:32.509 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : rbd-mirror-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:32.535 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: rbd-mirror-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:32.535 INFO:teuthology.orchestra.run.smithi191.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-07T08:11:32.535 INFO:teuthology.orchestra.run.smithi191.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-09-07T08:11:32.535 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-07T08:11:32.535 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-07T08:11:32.535 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:32.572 INFO:teuthology.orchestra.run.smithi018.stdout:Last metadata expiration check: 0:01:36 ago on Sat 07 Sep 2024 08:09:56 AM UTC. 2024-09-07T08:11:32.585 INFO:teuthology.orchestra.run.smithi090.stdout: Preparing : 1/1 2024-09-07T08:11:32.665 INFO:teuthology.orchestra.run.smithi018.stdout:Package python3-rgw-2:18.2.4-812.g03cef208.el9.x86_64 is already installed. 2024-09-07T08:11:32.703 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : libcephfs-devel-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:32.709 INFO:teuthology.orchestra.run.smithi018.stdout:Dependencies resolved. 2024-09-07T08:11:32.711 INFO:teuthology.orchestra.run.smithi018.stdout:Nothing to do. 2024-09-07T08:11:32.711 INFO:teuthology.orchestra.run.smithi018.stdout:Complete! 2024-09-07T08:11:32.776 DEBUG:teuthology.orchestra.run.smithi018:> sudo yum -y install python3-cephfs 2024-09-07T08:11:33.126 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: libcephfs-devel-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:33.337 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : libcephfs-devel-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:33.337 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:33.337 INFO:teuthology.orchestra.run.smithi090.stdout:Installed: 2024-09-07T08:11:33.337 INFO:teuthology.orchestra.run.smithi090.stdout: libcephfs-devel-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:11:33.337 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:33.337 INFO:teuthology.orchestra.run.smithi090.stdout:Complete! 2024-09-07T08:11:33.338 INFO:teuthology.orchestra.run.smithi018.stdout:Last metadata expiration check: 0:01:37 ago on Sat 07 Sep 2024 08:09:56 AM UTC. 2024-09-07T08:11:33.431 INFO:teuthology.orchestra.run.smithi018.stdout:Package python3-cephfs-2:18.2.4-812.g03cef208.el9.x86_64 is already installed. 2024-09-07T08:11:33.476 INFO:teuthology.orchestra.run.smithi018.stdout:Dependencies resolved. 2024-09-07T08:11:33.477 INFO:teuthology.orchestra.run.smithi018.stdout:Nothing to do. 2024-09-07T08:11:33.477 INFO:teuthology.orchestra.run.smithi018.stdout:Complete! 2024-09-07T08:11:33.542 DEBUG:teuthology.orchestra.run.smithi018:> sudo yum -y install python3-rbd 2024-09-07T08:11:33.592 DEBUG:teuthology.orchestra.run.smithi090:> sudo yum -y install librados2 2024-09-07T08:11:33.599 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : rbd-mirror-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:33.599 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:33.599 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-07T08:11:33.599 INFO:teuthology.orchestra.run.smithi191.stdout: rbd-mirror-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:11:33.599 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:33.599 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-07T08:11:33.823 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install rbd-nbd 2024-09-07T08:11:34.109 INFO:teuthology.orchestra.run.smithi018.stdout:Last metadata expiration check: 0:01:38 ago on Sat 07 Sep 2024 08:09:56 AM UTC. 2024-09-07T08:11:34.149 INFO:teuthology.orchestra.run.smithi090.stdout:Last metadata expiration check: 0:01:34 ago on Sat 07 Sep 2024 08:10:00 AM UTC. 2024-09-07T08:11:34.200 INFO:teuthology.orchestra.run.smithi018.stdout:Package python3-rbd-2:18.2.4-812.g03cef208.el9.x86_64 is already installed. 2024-09-07T08:11:34.237 INFO:teuthology.orchestra.run.smithi090.stdout:Package librados2-2:18.2.4-812.g03cef208.el9.x86_64 is already installed. 2024-09-07T08:11:34.244 INFO:teuthology.orchestra.run.smithi018.stdout:Dependencies resolved. 2024-09-07T08:11:34.245 INFO:teuthology.orchestra.run.smithi018.stdout:Nothing to do. 2024-09-07T08:11:34.245 INFO:teuthology.orchestra.run.smithi018.stdout:Complete! 2024-09-07T08:11:34.280 INFO:teuthology.orchestra.run.smithi090.stdout:Dependencies resolved. 2024-09-07T08:11:34.280 INFO:teuthology.orchestra.run.smithi090.stdout:Nothing to do. 2024-09-07T08:11:34.281 INFO:teuthology.orchestra.run.smithi090.stdout:Complete! 2024-09-07T08:11:34.321 DEBUG:teuthology.orchestra.run.smithi018:> sudo yum -y install rbd-fuse 2024-09-07T08:11:34.390 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:42 ago on Sat 07 Sep 2024 08:09:52 AM UTC. 2024-09-07T08:11:34.408 DEBUG:teuthology.orchestra.run.smithi090:> sudo yum -y install librbd1 2024-09-07T08:11:34.526 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-07T08:11:34.527 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:11:34.527 INFO:teuthology.orchestra.run.smithi191.stdout: Package Architecture Version Repository Size 2024-09-07T08:11:34.527 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:11:34.527 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-07T08:11:34.527 INFO:teuthology.orchestra.run.smithi191.stdout: rbd-nbd x86_64 2:18.2.4-812.g03cef208.el9 ceph 172 k 2024-09-07T08:11:34.527 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:34.527 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-07T08:11:34.527 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-07T08:11:34.527 INFO:teuthology.orchestra.run.smithi191.stdout:Install 1 Package 2024-09-07T08:11:34.528 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:34.528 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 172 k 2024-09-07T08:11:34.528 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 494 k 2024-09-07T08:11:34.528 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-07T08:11:34.759 INFO:teuthology.orchestra.run.smithi191.stdout:rbd-nbd-18.2.4-812.g03cef208.el9.x86_64.rpm 745 kB/s | 172 kB 00:00 2024-09-07T08:11:34.759 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:11:34.760 INFO:teuthology.orchestra.run.smithi191.stdout:Total 740 kB/s | 172 kB 00:00 2024-09-07T08:11:34.760 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-07T08:11:34.767 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-07T08:11:34.768 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-07T08:11:34.833 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-07T08:11:34.833 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-07T08:11:34.885 INFO:teuthology.orchestra.run.smithi018.stdout:Last metadata expiration check: 0:01:38 ago on Sat 07 Sep 2024 08:09:56 AM UTC. 2024-09-07T08:11:34.955 INFO:teuthology.orchestra.run.smithi090.stdout:Last metadata expiration check: 0:01:34 ago on Sat 07 Sep 2024 08:10:00 AM UTC. 2024-09-07T08:11:34.984 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-07T08:11:35.021 INFO:teuthology.orchestra.run.smithi018.stdout:Dependencies resolved. 2024-09-07T08:11:35.022 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:11:35.022 INFO:teuthology.orchestra.run.smithi018.stdout: Package Architecture Version Repository Size 2024-09-07T08:11:35.022 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:11:35.022 INFO:teuthology.orchestra.run.smithi018.stdout:Installing: 2024-09-07T08:11:35.022 INFO:teuthology.orchestra.run.smithi018.stdout: rbd-fuse x86_64 2:18.2.4-812.g03cef208.el9 ceph 87 k 2024-09-07T08:11:35.022 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:35.022 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction Summary 2024-09-07T08:11:35.023 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:11:35.023 INFO:teuthology.orchestra.run.smithi018.stdout:Install 1 Package 2024-09-07T08:11:35.023 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:35.023 INFO:teuthology.orchestra.run.smithi018.stdout:Total download size: 87 k 2024-09-07T08:11:35.023 INFO:teuthology.orchestra.run.smithi018.stdout:Installed size: 227 k 2024-09-07T08:11:35.023 INFO:teuthology.orchestra.run.smithi018.stdout:Downloading Packages: 2024-09-07T08:11:35.043 INFO:teuthology.orchestra.run.smithi090.stdout:Package librbd1-2:18.2.4-812.g03cef208.el9.x86_64 is already installed. 2024-09-07T08:11:35.086 INFO:teuthology.orchestra.run.smithi090.stdout:Dependencies resolved. 2024-09-07T08:11:35.087 INFO:teuthology.orchestra.run.smithi090.stdout:Nothing to do. 2024-09-07T08:11:35.087 INFO:teuthology.orchestra.run.smithi090.stdout:Complete! 2024-09-07T08:11:35.095 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : rbd-nbd-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:35.173 DEBUG:teuthology.orchestra.run.smithi090:> sudo yum -y install python3-rados 2024-09-07T08:11:35.206 INFO:teuthology.orchestra.run.smithi018.stdout:rbd-fuse-18.2.4-812.g03cef208.el9.x86_64.rpm 474 kB/s | 87 kB 00:00 2024-09-07T08:11:35.206 INFO:teuthology.orchestra.run.smithi018.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:11:35.206 INFO:teuthology.orchestra.run.smithi018.stdout:Total 471 kB/s | 87 kB 00:00 2024-09-07T08:11:35.207 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction check 2024-09-07T08:11:35.214 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction check succeeded. 2024-09-07T08:11:35.214 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction test 2024-09-07T08:11:35.280 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction test succeeded. 2024-09-07T08:11:35.280 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction 2024-09-07T08:11:35.426 INFO:teuthology.orchestra.run.smithi018.stdout: Preparing : 1/1 2024-09-07T08:11:35.525 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: rbd-nbd-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:35.533 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : rbd-fuse-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:35.724 INFO:teuthology.orchestra.run.smithi090.stdout:Last metadata expiration check: 0:01:35 ago on Sat 07 Sep 2024 08:10:00 AM UTC. 2024-09-07T08:11:35.811 INFO:teuthology.orchestra.run.smithi090.stdout:Package python3-rados-2:18.2.4-812.g03cef208.el9.x86_64 is already installed. 2024-09-07T08:11:35.819 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : rbd-nbd-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:35.819 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:35.819 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-07T08:11:35.819 INFO:teuthology.orchestra.run.smithi191.stdout: rbd-nbd-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:11:35.819 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:11:35.819 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-07T08:11:35.850 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: rbd-fuse-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:35.854 INFO:teuthology.orchestra.run.smithi090.stdout:Dependencies resolved. 2024-09-07T08:11:35.855 INFO:teuthology.orchestra.run.smithi090.stdout:Nothing to do. 2024-09-07T08:11:35.855 INFO:teuthology.orchestra.run.smithi090.stdout:Complete! 2024-09-07T08:11:35.965 DEBUG:teuthology.orchestra.run.smithi090:> sudo yum -y install python3-rgw 2024-09-07T08:11:36.072 DEBUG:teuthology.parallel:result is None 2024-09-07T08:11:36.104 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : rbd-fuse-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:36.104 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:36.104 INFO:teuthology.orchestra.run.smithi018.stdout:Installed: 2024-09-07T08:11:36.104 INFO:teuthology.orchestra.run.smithi018.stdout: rbd-fuse-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:11:36.104 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:36.104 INFO:teuthology.orchestra.run.smithi018.stdout:Complete! 2024-09-07T08:11:36.338 DEBUG:teuthology.orchestra.run.smithi018:> sudo yum -y install rbd-mirror 2024-09-07T08:11:36.514 INFO:teuthology.orchestra.run.smithi090.stdout:Last metadata expiration check: 0:01:36 ago on Sat 07 Sep 2024 08:10:00 AM UTC. 2024-09-07T08:11:36.603 INFO:teuthology.orchestra.run.smithi090.stdout:Package python3-rgw-2:18.2.4-812.g03cef208.el9.x86_64 is already installed. 2024-09-07T08:11:36.646 INFO:teuthology.orchestra.run.smithi090.stdout:Dependencies resolved. 2024-09-07T08:11:36.647 INFO:teuthology.orchestra.run.smithi090.stdout:Nothing to do. 2024-09-07T08:11:36.647 INFO:teuthology.orchestra.run.smithi090.stdout:Complete! 2024-09-07T08:11:36.749 DEBUG:teuthology.orchestra.run.smithi090:> sudo yum -y install python3-cephfs 2024-09-07T08:11:36.913 INFO:teuthology.orchestra.run.smithi018.stdout:Last metadata expiration check: 0:01:40 ago on Sat 07 Sep 2024 08:09:56 AM UTC. 2024-09-07T08:11:37.053 INFO:teuthology.orchestra.run.smithi018.stdout:Dependencies resolved. 2024-09-07T08:11:37.054 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:11:37.054 INFO:teuthology.orchestra.run.smithi018.stdout: Package Arch Version Repo Size 2024-09-07T08:11:37.054 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:11:37.054 INFO:teuthology.orchestra.run.smithi018.stdout:Installing: 2024-09-07T08:11:37.054 INFO:teuthology.orchestra.run.smithi018.stdout: rbd-mirror x86_64 2:18.2.4-812.g03cef208.el9 ceph 3.0 M 2024-09-07T08:11:37.054 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:37.054 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction Summary 2024-09-07T08:11:37.054 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:11:37.054 INFO:teuthology.orchestra.run.smithi018.stdout:Install 1 Package 2024-09-07T08:11:37.055 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:37.055 INFO:teuthology.orchestra.run.smithi018.stdout:Total download size: 3.0 M 2024-09-07T08:11:37.055 INFO:teuthology.orchestra.run.smithi018.stdout:Installed size: 12 M 2024-09-07T08:11:37.055 INFO:teuthology.orchestra.run.smithi018.stdout:Downloading Packages: 2024-09-07T08:11:37.318 INFO:teuthology.orchestra.run.smithi090.stdout:Last metadata expiration check: 0:01:37 ago on Sat 07 Sep 2024 08:10:00 AM UTC. 2024-09-07T08:11:37.397 INFO:teuthology.orchestra.run.smithi018.stdout:rbd-mirror-18.2.4-812.g03cef208.el9.x86_64.rpm 8.7 MB/s | 3.0 MB 00:00 2024-09-07T08:11:37.398 INFO:teuthology.orchestra.run.smithi018.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:11:37.398 INFO:teuthology.orchestra.run.smithi018.stdout:Total 8.7 MB/s | 3.0 MB 00:00 2024-09-07T08:11:37.398 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction check 2024-09-07T08:11:37.408 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction check succeeded. 2024-09-07T08:11:37.408 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction test 2024-09-07T08:11:37.414 INFO:teuthology.orchestra.run.smithi090.stdout:Package python3-cephfs-2:18.2.4-812.g03cef208.el9.x86_64 is already installed. 2024-09-07T08:11:37.457 INFO:teuthology.orchestra.run.smithi090.stdout:Dependencies resolved. 2024-09-07T08:11:37.458 INFO:teuthology.orchestra.run.smithi090.stdout:Nothing to do. 2024-09-07T08:11:37.458 INFO:teuthology.orchestra.run.smithi090.stdout:Complete! 2024-09-07T08:11:37.492 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction test succeeded. 2024-09-07T08:11:37.493 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction 2024-09-07T08:11:37.579 DEBUG:teuthology.orchestra.run.smithi090:> sudo yum -y install python3-rbd 2024-09-07T08:11:37.937 INFO:teuthology.orchestra.run.smithi018.stdout: Preparing : 1/1 2024-09-07T08:11:38.015 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : rbd-mirror-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:38.040 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: rbd-mirror-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:38.040 INFO:teuthology.orchestra.run.smithi018.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-07T08:11:38.040 INFO:teuthology.orchestra.run.smithi018.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-09-07T08:11:38.040 INFO:teuthology.orchestra.run.smithi018.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-07T08:11:38.040 INFO:teuthology.orchestra.run.smithi018.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-07T08:11:38.041 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:38.131 INFO:teuthology.orchestra.run.smithi090.stdout:Last metadata expiration check: 0:01:38 ago on Sat 07 Sep 2024 08:10:00 AM UTC. 2024-09-07T08:11:38.219 INFO:teuthology.orchestra.run.smithi090.stdout:Package python3-rbd-2:18.2.4-812.g03cef208.el9.x86_64 is already installed. 2024-09-07T08:11:38.263 INFO:teuthology.orchestra.run.smithi090.stdout:Dependencies resolved. 2024-09-07T08:11:38.264 INFO:teuthology.orchestra.run.smithi090.stdout:Nothing to do. 2024-09-07T08:11:38.264 INFO:teuthology.orchestra.run.smithi090.stdout:Complete! 2024-09-07T08:11:38.354 DEBUG:teuthology.orchestra.run.smithi090:> sudo yum -y install rbd-fuse 2024-09-07T08:11:38.905 INFO:teuthology.orchestra.run.smithi090.stdout:Last metadata expiration check: 0:01:38 ago on Sat 07 Sep 2024 08:10:00 AM UTC. 2024-09-07T08:11:39.035 INFO:teuthology.orchestra.run.smithi090.stdout:Dependencies resolved. 2024-09-07T08:11:39.035 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:11:39.035 INFO:teuthology.orchestra.run.smithi090.stdout: Package Architecture Version Repository Size 2024-09-07T08:11:39.036 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:11:39.036 INFO:teuthology.orchestra.run.smithi090.stdout:Installing: 2024-09-07T08:11:39.036 INFO:teuthology.orchestra.run.smithi090.stdout: rbd-fuse x86_64 2:18.2.4-812.g03cef208.el9 ceph 87 k 2024-09-07T08:11:39.036 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:39.036 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction Summary 2024-09-07T08:11:39.036 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:11:39.036 INFO:teuthology.orchestra.run.smithi090.stdout:Install 1 Package 2024-09-07T08:11:39.036 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:39.036 INFO:teuthology.orchestra.run.smithi090.stdout:Total download size: 87 k 2024-09-07T08:11:39.036 INFO:teuthology.orchestra.run.smithi090.stdout:Installed size: 227 k 2024-09-07T08:11:39.036 INFO:teuthology.orchestra.run.smithi090.stdout:Downloading Packages: 2024-09-07T08:11:39.037 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : rbd-mirror-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:39.037 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:39.037 INFO:teuthology.orchestra.run.smithi018.stdout:Installed: 2024-09-07T08:11:39.037 INFO:teuthology.orchestra.run.smithi018.stdout: rbd-mirror-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:11:39.037 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:39.037 INFO:teuthology.orchestra.run.smithi018.stdout:Complete! 2024-09-07T08:11:39.229 INFO:teuthology.orchestra.run.smithi090.stdout:rbd-fuse-18.2.4-812.g03cef208.el9.x86_64.rpm 450 kB/s | 87 kB 00:00 2024-09-07T08:11:39.230 INFO:teuthology.orchestra.run.smithi090.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:11:39.230 INFO:teuthology.orchestra.run.smithi090.stdout:Total 446 kB/s | 87 kB 00:00 2024-09-07T08:11:39.230 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction check 2024-09-07T08:11:39.237 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction check succeeded. 2024-09-07T08:11:39.237 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction test 2024-09-07T08:11:39.286 DEBUG:teuthology.orchestra.run.smithi018:> sudo yum -y install rbd-nbd 2024-09-07T08:11:39.299 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction test succeeded. 2024-09-07T08:11:39.300 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction 2024-09-07T08:11:39.437 INFO:teuthology.orchestra.run.smithi090.stdout: Preparing : 1/1 2024-09-07T08:11:39.542 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : rbd-fuse-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:39.856 INFO:teuthology.orchestra.run.smithi018.stdout:Last metadata expiration check: 0:01:43 ago on Sat 07 Sep 2024 08:09:56 AM UTC. 2024-09-07T08:11:39.973 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: rbd-fuse-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:39.994 INFO:teuthology.orchestra.run.smithi018.stdout:Dependencies resolved. 2024-09-07T08:11:39.995 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:11:39.995 INFO:teuthology.orchestra.run.smithi018.stdout: Package Architecture Version Repository Size 2024-09-07T08:11:39.995 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:11:39.995 INFO:teuthology.orchestra.run.smithi018.stdout:Installing: 2024-09-07T08:11:39.995 INFO:teuthology.orchestra.run.smithi018.stdout: rbd-nbd x86_64 2:18.2.4-812.g03cef208.el9 ceph 172 k 2024-09-07T08:11:39.995 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:39.995 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction Summary 2024-09-07T08:11:39.996 INFO:teuthology.orchestra.run.smithi018.stdout:================================================================================ 2024-09-07T08:11:39.996 INFO:teuthology.orchestra.run.smithi018.stdout:Install 1 Package 2024-09-07T08:11:39.996 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:39.996 INFO:teuthology.orchestra.run.smithi018.stdout:Total download size: 172 k 2024-09-07T08:11:39.996 INFO:teuthology.orchestra.run.smithi018.stdout:Installed size: 494 k 2024-09-07T08:11:39.996 INFO:teuthology.orchestra.run.smithi018.stdout:Downloading Packages: 2024-09-07T08:11:40.209 INFO:teuthology.orchestra.run.smithi018.stdout:rbd-nbd-18.2.4-812.g03cef208.el9.x86_64.rpm 807 kB/s | 172 kB 00:00 2024-09-07T08:11:40.210 INFO:teuthology.orchestra.run.smithi018.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:11:40.210 INFO:teuthology.orchestra.run.smithi018.stdout:Total 802 kB/s | 172 kB 00:00 2024-09-07T08:11:40.210 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction check 2024-09-07T08:11:40.218 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction check succeeded. 2024-09-07T08:11:40.218 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction test 2024-09-07T08:11:40.274 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : rbd-fuse-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:40.275 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:40.275 INFO:teuthology.orchestra.run.smithi090.stdout:Installed: 2024-09-07T08:11:40.275 INFO:teuthology.orchestra.run.smithi090.stdout: rbd-fuse-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:11:40.275 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:40.275 INFO:teuthology.orchestra.run.smithi090.stdout:Complete! 2024-09-07T08:11:40.288 INFO:teuthology.orchestra.run.smithi018.stdout:Transaction test succeeded. 2024-09-07T08:11:40.288 INFO:teuthology.orchestra.run.smithi018.stdout:Running transaction 2024-09-07T08:11:40.445 INFO:teuthology.orchestra.run.smithi018.stdout: Preparing : 1/1 2024-09-07T08:11:40.559 INFO:teuthology.orchestra.run.smithi018.stdout: Installing : rbd-nbd-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:40.589 DEBUG:teuthology.orchestra.run.smithi090:> sudo yum -y install rbd-mirror 2024-09-07T08:11:40.961 INFO:teuthology.orchestra.run.smithi018.stdout: Running scriptlet: rbd-nbd-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:41.152 INFO:teuthology.orchestra.run.smithi090.stdout:Last metadata expiration check: 0:01:41 ago on Sat 07 Sep 2024 08:10:00 AM UTC. 2024-09-07T08:11:41.202 INFO:teuthology.orchestra.run.smithi018.stdout: Verifying : rbd-nbd-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:41.202 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:41.202 INFO:teuthology.orchestra.run.smithi018.stdout:Installed: 2024-09-07T08:11:41.202 INFO:teuthology.orchestra.run.smithi018.stdout: rbd-nbd-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:11:41.202 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:11:41.203 INFO:teuthology.orchestra.run.smithi018.stdout:Complete! 2024-09-07T08:11:41.288 INFO:teuthology.orchestra.run.smithi090.stdout:Dependencies resolved. 2024-09-07T08:11:41.288 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:11:41.288 INFO:teuthology.orchestra.run.smithi090.stdout: Package Arch Version Repo Size 2024-09-07T08:11:41.288 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:11:41.289 INFO:teuthology.orchestra.run.smithi090.stdout:Installing: 2024-09-07T08:11:41.289 INFO:teuthology.orchestra.run.smithi090.stdout: rbd-mirror x86_64 2:18.2.4-812.g03cef208.el9 ceph 3.0 M 2024-09-07T08:11:41.289 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:41.289 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction Summary 2024-09-07T08:11:41.289 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:11:41.289 INFO:teuthology.orchestra.run.smithi090.stdout:Install 1 Package 2024-09-07T08:11:41.289 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:41.289 INFO:teuthology.orchestra.run.smithi090.stdout:Total download size: 3.0 M 2024-09-07T08:11:41.289 INFO:teuthology.orchestra.run.smithi090.stdout:Installed size: 12 M 2024-09-07T08:11:41.289 INFO:teuthology.orchestra.run.smithi090.stdout:Downloading Packages: 2024-09-07T08:11:41.455 DEBUG:teuthology.parallel:result is None 2024-09-07T08:11:41.637 INFO:teuthology.orchestra.run.smithi090.stdout:rbd-mirror-18.2.4-812.g03cef208.el9.x86_64.rpm 8.6 MB/s | 3.0 MB 00:00 2024-09-07T08:11:41.638 INFO:teuthology.orchestra.run.smithi090.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:11:41.638 INFO:teuthology.orchestra.run.smithi090.stdout:Total 8.6 MB/s | 3.0 MB 00:00 2024-09-07T08:11:41.639 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction check 2024-09-07T08:11:41.647 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction check succeeded. 2024-09-07T08:11:41.647 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction test 2024-09-07T08:11:41.727 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction test succeeded. 2024-09-07T08:11:41.728 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction 2024-09-07T08:11:42.145 INFO:teuthology.orchestra.run.smithi090.stdout: Preparing : 1/1 2024-09-07T08:11:42.213 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : rbd-mirror-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:42.238 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: rbd-mirror-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:42.238 INFO:teuthology.orchestra.run.smithi090.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-07T08:11:42.239 INFO:teuthology.orchestra.run.smithi090.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-09-07T08:11:42.239 INFO:teuthology.orchestra.run.smithi090.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-07T08:11:42.239 INFO:teuthology.orchestra.run.smithi090.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-07T08:11:42.239 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:43.383 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : rbd-mirror-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:43.383 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:43.383 INFO:teuthology.orchestra.run.smithi090.stdout:Installed: 2024-09-07T08:11:43.383 INFO:teuthology.orchestra.run.smithi090.stdout: rbd-mirror-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:11:43.383 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:43.384 INFO:teuthology.orchestra.run.smithi090.stdout:Complete! 2024-09-07T08:11:43.671 DEBUG:teuthology.orchestra.run.smithi090:> sudo yum -y install rbd-nbd 2024-09-07T08:11:44.237 INFO:teuthology.orchestra.run.smithi090.stdout:Last metadata expiration check: 0:01:44 ago on Sat 07 Sep 2024 08:10:00 AM UTC. 2024-09-07T08:11:44.376 INFO:teuthology.orchestra.run.smithi090.stdout:Dependencies resolved. 2024-09-07T08:11:44.377 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:11:44.377 INFO:teuthology.orchestra.run.smithi090.stdout: Package Architecture Version Repository Size 2024-09-07T08:11:44.377 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:11:44.378 INFO:teuthology.orchestra.run.smithi090.stdout:Installing: 2024-09-07T08:11:44.378 INFO:teuthology.orchestra.run.smithi090.stdout: rbd-nbd x86_64 2:18.2.4-812.g03cef208.el9 ceph 172 k 2024-09-07T08:11:44.378 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:44.378 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction Summary 2024-09-07T08:11:44.378 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-09-07T08:11:44.378 INFO:teuthology.orchestra.run.smithi090.stdout:Install 1 Package 2024-09-07T08:11:44.378 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:44.378 INFO:teuthology.orchestra.run.smithi090.stdout:Total download size: 172 k 2024-09-07T08:11:44.378 INFO:teuthology.orchestra.run.smithi090.stdout:Installed size: 494 k 2024-09-07T08:11:44.378 INFO:teuthology.orchestra.run.smithi090.stdout:Downloading Packages: 2024-09-07T08:11:44.597 INFO:teuthology.orchestra.run.smithi090.stdout:rbd-nbd-18.2.4-812.g03cef208.el9.x86_64.rpm 789 kB/s | 172 kB 00:00 2024-09-07T08:11:44.597 INFO:teuthology.orchestra.run.smithi090.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:11:44.598 INFO:teuthology.orchestra.run.smithi090.stdout:Total 781 kB/s | 172 kB 00:00 2024-09-07T08:11:44.598 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction check 2024-09-07T08:11:44.606 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction check succeeded. 2024-09-07T08:11:44.606 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction test 2024-09-07T08:11:44.673 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction test succeeded. 2024-09-07T08:11:44.673 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction 2024-09-07T08:11:44.829 INFO:teuthology.orchestra.run.smithi090.stdout: Preparing : 1/1 2024-09-07T08:11:44.928 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : rbd-nbd-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:45.456 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: rbd-nbd-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:45.711 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : rbd-nbd-2:18.2.4-812.g03cef208.el9.x86_64 1/1 2024-09-07T08:11:45.711 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:45.711 INFO:teuthology.orchestra.run.smithi090.stdout:Installed: 2024-09-07T08:11:45.711 INFO:teuthology.orchestra.run.smithi090.stdout: rbd-nbd-2:18.2.4-812.g03cef208.el9.x86_64 2024-09-07T08:11:45.711 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-09-07T08:11:45.711 INFO:teuthology.orchestra.run.smithi090.stdout:Complete! 2024-09-07T08:11:46.022 DEBUG:teuthology.parallel:result is None 2024-09-07T08:11:46.023 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=03cef208dc8a39e0b8a1806b4763767a2ff62439 2024-09-07T08:11:46.179 DEBUG:teuthology.orchestra.run.smithi018:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-09-07T08:11:46.204 INFO:teuthology.orchestra.run.smithi018.stdout:18.2.4-812.g03cef208.el9 2024-09-07T08:11:46.205 INFO:teuthology.packaging:The installed version of ceph is 18.2.4-812.g03cef208.el9 2024-09-07T08:11:46.205 INFO:teuthology.task.install:The correct ceph version 18.2.4-812.g03cef208 is installed. 2024-09-07T08:11:46.207 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=03cef208dc8a39e0b8a1806b4763767a2ff62439 2024-09-07T08:11:46.364 DEBUG:teuthology.orchestra.run.smithi090:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-09-07T08:11:46.388 INFO:teuthology.orchestra.run.smithi090.stdout:18.2.4-812.g03cef208.el9 2024-09-07T08:11:46.388 INFO:teuthology.packaging:The installed version of ceph is 18.2.4-812.g03cef208.el9 2024-09-07T08:11:46.388 INFO:teuthology.task.install:The correct ceph version 18.2.4-812.g03cef208 is installed. 2024-09-07T08:11:46.390 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=03cef208dc8a39e0b8a1806b4763767a2ff62439 2024-09-07T08:11:46.541 DEBUG:teuthology.orchestra.run.smithi191:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-09-07T08:11:46.567 INFO:teuthology.orchestra.run.smithi191.stdout:18.2.4-812.g03cef208.el9 2024-09-07T08:11:46.567 INFO:teuthology.packaging:The installed version of ceph is 18.2.4-812.g03cef208.el9 2024-09-07T08:11:46.568 INFO:teuthology.task.install:The correct ceph version 18.2.4-812.g03cef208 is installed. 2024-09-07T08:11:46.570 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2024-09-07T08:11:46.570 DEBUG:teuthology.orchestra.run.smithi018:> set -ex 2024-09-07T08:11:46.570 DEBUG:teuthology.orchestra.run.smithi018:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-07T08:11:46.600 DEBUG:teuthology.orchestra.run.smithi090:> set -ex 2024-09-07T08:11:46.601 DEBUG:teuthology.orchestra.run.smithi090:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-07T08:11:46.631 DEBUG:teuthology.orchestra.run.smithi191:> set -ex 2024-09-07T08:11:46.631 DEBUG:teuthology.orchestra.run.smithi191:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-07T08:11:46.662 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2024-09-07T08:11:46.662 DEBUG:teuthology.orchestra.run.smithi018:> set -ex 2024-09-07T08:11:46.662 DEBUG:teuthology.orchestra.run.smithi018:> sudo dd of=/usr/bin/daemon-helper 2024-09-07T08:11:46.690 DEBUG:teuthology.orchestra.run.smithi018:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-07T08:11:46.758 DEBUG:teuthology.orchestra.run.smithi090:> set -ex 2024-09-07T08:11:46.758 DEBUG:teuthology.orchestra.run.smithi090:> sudo dd of=/usr/bin/daemon-helper 2024-09-07T08:11:46.788 DEBUG:teuthology.orchestra.run.smithi090:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-07T08:11:46.856 DEBUG:teuthology.orchestra.run.smithi191:> set -ex 2024-09-07T08:11:46.857 DEBUG:teuthology.orchestra.run.smithi191:> sudo dd of=/usr/bin/daemon-helper 2024-09-07T08:11:46.886 DEBUG:teuthology.orchestra.run.smithi191:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-07T08:11:46.955 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2024-09-07T08:11:46.955 DEBUG:teuthology.orchestra.run.smithi018:> set -ex 2024-09-07T08:11:46.955 DEBUG:teuthology.orchestra.run.smithi018:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-07T08:11:46.981 DEBUG:teuthology.orchestra.run.smithi018:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-07T08:11:47.046 DEBUG:teuthology.orchestra.run.smithi090:> set -ex 2024-09-07T08:11:47.046 DEBUG:teuthology.orchestra.run.smithi090:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-07T08:11:47.074 DEBUG:teuthology.orchestra.run.smithi090:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-07T08:11:47.142 DEBUG:teuthology.orchestra.run.smithi191:> set -ex 2024-09-07T08:11:47.142 DEBUG:teuthology.orchestra.run.smithi191:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-07T08:11:47.170 DEBUG:teuthology.orchestra.run.smithi191:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-07T08:11:47.238 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2024-09-07T08:11:47.239 DEBUG:teuthology.orchestra.run.smithi018:> set -ex 2024-09-07T08:11:47.239 DEBUG:teuthology.orchestra.run.smithi018:> sudo dd of=/usr/bin/stdin-killer 2024-09-07T08:11:47.264 DEBUG:teuthology.orchestra.run.smithi018:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-07T08:11:47.329 DEBUG:teuthology.orchestra.run.smithi090:> set -ex 2024-09-07T08:11:47.330 DEBUG:teuthology.orchestra.run.smithi090:> sudo dd of=/usr/bin/stdin-killer 2024-09-07T08:11:47.359 DEBUG:teuthology.orchestra.run.smithi090:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-07T08:11:47.426 DEBUG:teuthology.orchestra.run.smithi191:> set -ex 2024-09-07T08:11:47.426 DEBUG:teuthology.orchestra.run.smithi191:> sudo dd of=/usr/bin/stdin-killer 2024-09-07T08:11:47.454 DEBUG:teuthology.orchestra.run.smithi191:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-07T08:11:47.522 INFO:teuthology.run_tasks:Running task cephadm... 2024-09-07T08:11:47.614 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': '03cef208dc8a39e0b8a1806b4763767a2ff62439'} 2024-09-07T08:11:47.615 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 2024-09-07T08:11:47.615 INFO:tasks.cephadm:Cluster fsid is d3fad026-6cf0-11ef-bcea-c7b262605968 2024-09-07T08:11:47.615 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-09-07T08:11:47.615 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '172.21.15.18', 'mon.b': '172.21.15.90', 'mon.c': '172.21.15.191'} 2024-09-07T08:11:47.616 INFO:tasks.cephadm:First mon is mon.a on smithi018 2024-09-07T08:11:47.616 INFO:tasks.cephadm:First mgr is a 2024-09-07T08:11:47.616 INFO:tasks.cephadm:Normalizing hostnames... 2024-09-07T08:11:47.616 DEBUG:teuthology.orchestra.run.smithi018:> sudo hostname $(hostname -s) 2024-09-07T08:11:47.643 DEBUG:teuthology.orchestra.run.smithi090:> sudo hostname $(hostname -s) 2024-09-07T08:11:47.672 DEBUG:teuthology.orchestra.run.smithi191:> sudo hostname $(hostname -s) 2024-09-07T08:11:47.700 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-09-07T08:11:47.700 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=03cef208dc8a39e0b8a1806b4763767a2ff62439 2024-09-07T08:11:47.848 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': '03cef208dc8a39e0b8a1806b4763767a2ff62439', 'extra': {'build_url': 'https://jenkins.ceph.com/job/ceph-dev-new-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic/82833/', 'root_build_cause': 'SCMTRIGGER', 'version': '18.2.4-812-g03cef208', 'node_name': '172.21.5.40+adami10', 'job_name': 'ceph-dev-new-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic', 'package_manager_version': '18.2.4-812.g03cef208'}, 'url': 'https://1.chacra.ceph.com/r/ceph/wip-guits-reef-2024-09-06-1902/03cef208dc8a39e0b8a1806b4763767a2ff62439/centos/9/flavors/default/', 'distro_codename': None, 'modified': '2024-09-06 20:34:54.190000', 'distro_version': '9', 'project': 'ceph', 'flavor': 'default', 'ref': 'wip-guits-reef-2024-09-06-1902', 'chacra_url': 'https://1.chacra.ceph.com/repos/ceph/wip-guits-reef-2024-09-06-1902/03cef208dc8a39e0b8a1806b4763767a2ff62439/centos/9/flavors/default/', 'archs': ['x86_64', 'source'], 'distro': 'centos'}] 2024-09-07T08:11:47.997 INFO:tasks.util.chacra:got chacra host 1.chacra.ceph.com, ref wip-guits-reef-2024-09-06-1902, sha1 03cef208dc8a39e0b8a1806b4763767a2ff62439 from https://shaman.ceph.com/api/search/?project=ceph&distros=centos%2F9%2Fx86_64&flavor=default&sha1=03cef208dc8a39e0b8a1806b4763767a2ff62439 2024-09-07T08:11:47.999 INFO:tasks.cephadm:Discovered cachra url: https://1.chacra.ceph.com/binaries/ceph/wip-guits-reef-2024-09-06-1902/03cef208dc8a39e0b8a1806b4763767a2ff62439/centos/9/x86_64/flavors/default/cephadm 2024-09-07T08:11:47.999 DEBUG:teuthology.orchestra.run.smithi018:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/wip-guits-reef-2024-09-06-1902/03cef208dc8a39e0b8a1806b4763767a2ff62439/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-07T08:11:48.622 INFO:teuthology.orchestra.run.smithi018.stdout:-rw-r--r--. 1 ubuntu ubuntu 217040 Sep 7 08:11 /home/ubuntu/cephtest/cephadm 2024-09-07T08:11:48.622 DEBUG:teuthology.orchestra.run.smithi090:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/wip-guits-reef-2024-09-06-1902/03cef208dc8a39e0b8a1806b4763767a2ff62439/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-07T08:11:49.260 INFO:teuthology.orchestra.run.smithi090.stdout:-rw-r--r--. 1 ubuntu ubuntu 217040 Sep 7 08:11 /home/ubuntu/cephtest/cephadm 2024-09-07T08:11:49.261 DEBUG:teuthology.orchestra.run.smithi191:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/wip-guits-reef-2024-09-06-1902/03cef208dc8a39e0b8a1806b4763767a2ff62439/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-07T08:11:49.885 INFO:teuthology.orchestra.run.smithi191.stdout:-rw-r--r--. 1 ubuntu ubuntu 217040 Sep 7 08:11 /home/ubuntu/cephtest/cephadm 2024-09-07T08:11:49.885 DEBUG:teuthology.orchestra.run.smithi018:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-07T08:11:49.905 DEBUG:teuthology.orchestra.run.smithi090:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-07T08:11:49.924 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-07T08:11:49.955 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 on all hosts... 2024-09-07T08:11:49.955 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 pull 2024-09-07T08:11:49.958 DEBUG:teuthology.orchestra.run.smithi090:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 pull 2024-09-07T08:11:49.967 DEBUG:teuthology.orchestra.run.smithi191:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 pull 2024-09-07T08:11:51.436 INFO:teuthology.orchestra.run.smithi191.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439... 2024-09-07T08:11:51.597 INFO:teuthology.orchestra.run.smithi018.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439... 2024-09-07T08:11:52.271 INFO:teuthology.orchestra.run.smithi090.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439... 2024-09-07T08:12:20.390 INFO:teuthology.orchestra.run.smithi018.stdout:{ 2024-09-07T08:12:20.390 INFO:teuthology.orchestra.run.smithi018.stdout: "ceph_version": "ceph version 18.2.4-812-g03cef208 (03cef208dc8a39e0b8a1806b4763767a2ff62439) reef (stable)", 2024-09-07T08:12:20.391 INFO:teuthology.orchestra.run.smithi018.stdout: "image_id": "6d221832e1054b498e2b9f082020222573577791586fe066468034523d6f813b", 2024-09-07T08:12:20.391 INFO:teuthology.orchestra.run.smithi018.stdout: "repo_digests": [ 2024-09-07T08:12:20.391 INFO:teuthology.orchestra.run.smithi018.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055" 2024-09-07T08:12:20.391 INFO:teuthology.orchestra.run.smithi018.stdout: ] 2024-09-07T08:12:20.391 INFO:teuthology.orchestra.run.smithi018.stdout:} 2024-09-07T08:12:20.623 INFO:teuthology.orchestra.run.smithi191.stdout:{ 2024-09-07T08:12:20.623 INFO:teuthology.orchestra.run.smithi191.stdout: "ceph_version": "ceph version 18.2.4-812-g03cef208 (03cef208dc8a39e0b8a1806b4763767a2ff62439) reef (stable)", 2024-09-07T08:12:20.623 INFO:teuthology.orchestra.run.smithi191.stdout: "image_id": "6d221832e1054b498e2b9f082020222573577791586fe066468034523d6f813b", 2024-09-07T08:12:20.623 INFO:teuthology.orchestra.run.smithi191.stdout: "repo_digests": [ 2024-09-07T08:12:20.623 INFO:teuthology.orchestra.run.smithi191.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055" 2024-09-07T08:12:20.624 INFO:teuthology.orchestra.run.smithi191.stdout: ] 2024-09-07T08:12:20.624 INFO:teuthology.orchestra.run.smithi191.stdout:} 2024-09-07T08:12:21.422 INFO:teuthology.orchestra.run.smithi090.stdout:{ 2024-09-07T08:12:21.422 INFO:teuthology.orchestra.run.smithi090.stdout: "ceph_version": "ceph version 18.2.4-812-g03cef208 (03cef208dc8a39e0b8a1806b4763767a2ff62439) reef (stable)", 2024-09-07T08:12:21.422 INFO:teuthology.orchestra.run.smithi090.stdout: "image_id": "6d221832e1054b498e2b9f082020222573577791586fe066468034523d6f813b", 2024-09-07T08:12:21.422 INFO:teuthology.orchestra.run.smithi090.stdout: "repo_digests": [ 2024-09-07T08:12:21.422 INFO:teuthology.orchestra.run.smithi090.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055" 2024-09-07T08:12:21.422 INFO:teuthology.orchestra.run.smithi090.stdout: ] 2024-09-07T08:12:21.422 INFO:teuthology.orchestra.run.smithi090.stdout:} 2024-09-07T08:12:21.440 DEBUG:teuthology.orchestra.run.smithi018:> sudo mkdir -p /etc/ceph 2024-09-07T08:12:21.473 DEBUG:teuthology.orchestra.run.smithi090:> sudo mkdir -p /etc/ceph 2024-09-07T08:12:21.500 DEBUG:teuthology.orchestra.run.smithi191:> sudo mkdir -p /etc/ceph 2024-09-07T08:12:21.533 DEBUG:teuthology.orchestra.run.smithi018:> sudo chmod 777 /etc/ceph 2024-09-07T08:12:21.560 DEBUG:teuthology.orchestra.run.smithi090:> sudo chmod 777 /etc/ceph 2024-09-07T08:12:21.588 DEBUG:teuthology.orchestra.run.smithi191:> sudo chmod 777 /etc/ceph 2024-09-07T08:12:21.617 INFO:tasks.cephadm:Writing seed config... 2024-09-07T08:12:21.618 INFO:tasks.cephadm: override: [global] mon election default strategy = 1 2024-09-07T08:12:21.618 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-09-07T08:12:21.619 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-09-07T08:12:21.619 INFO:tasks.cephadm: override: [mgr] mgr/cephadm/use_agent = False 2024-09-07T08:12:21.619 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-09-07T08:12:21.619 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-09-07T08:12:21.619 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-09-07T08:12:21.619 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-09-07T08:12:21.619 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-09-07T08:12:21.620 DEBUG:teuthology.orchestra.run.smithi018:> set -ex 2024-09-07T08:12:21.620 DEBUG:teuthology.orchestra.run.smithi018:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-09-07T08:12:21.637 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 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 = d3fad026-6cf0-11ef-bcea-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-07T08:12:21.638 DEBUG:teuthology.orchestra.run.smithi018:mon.a> sudo journalctl -f -n 0 -u ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@mon.a.service 2024-09-07T08:12:21.681 DEBUG:teuthology.orchestra.run.smithi018:mgr.a> sudo journalctl -f -n 0 -u ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@mgr.a.service 2024-09-07T08:12:21.723 INFO:tasks.cephadm:Bootstrapping... 2024-09-07T08:12:21.723 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 -v bootstrap --fsid d3fad026-6cf0-11ef-bcea-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.18 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-09-07T08:12:21.883 INFO:teuthology.orchestra.run.smithi018.stdout:-------------------------------------------------------------------------------- 2024-09-07T08:12:21.883 INFO:teuthology.orchestra.run.smithi018.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439', '-v', 'bootstrap', '--fsid', 'd3fad026-6cf0-11ef-bcea-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.18', '--skip-admin-label'] 2024-09-07T08:12:21.907 INFO:teuthology.orchestra.run.smithi018.stdout:/bin/podman: stdout 5.2.2 2024-09-07T08:12:21.907 INFO:teuthology.orchestra.run.smithi018.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-09-07T08:12:21.908 INFO:teuthology.orchestra.run.smithi018.stdout:Verifying podman|docker is present... 2024-09-07T08:12:21.930 INFO:teuthology.orchestra.run.smithi018.stdout:/bin/podman: stdout 5.2.2 2024-09-07T08:12:21.930 INFO:teuthology.orchestra.run.smithi018.stdout:Verifying lvm2 is present... 2024-09-07T08:12:21.930 INFO:teuthology.orchestra.run.smithi018.stdout:Verifying time synchronization is in place... 2024-09-07T08:12:21.938 INFO:teuthology.orchestra.run.smithi018.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-07T08:12:21.938 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-07T08:12:21.943 INFO:teuthology.orchestra.run.smithi018.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-07T08:12:21.943 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stdout inactive 2024-09-07T08:12:21.950 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stdout enabled 2024-09-07T08:12:21.956 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stdout active 2024-09-07T08:12:21.956 INFO:teuthology.orchestra.run.smithi018.stdout:Unit chronyd.service is enabled and running 2024-09-07T08:12:21.956 INFO:teuthology.orchestra.run.smithi018.stdout:Repeating the final host check... 2024-09-07T08:12:21.979 INFO:teuthology.orchestra.run.smithi018.stdout:/bin/podman: stdout 5.2.2 2024-09-07T08:12:21.979 INFO:teuthology.orchestra.run.smithi018.stdout:podman (/bin/podman) version 5.2.2 is present 2024-09-07T08:12:21.979 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl is present 2024-09-07T08:12:21.979 INFO:teuthology.orchestra.run.smithi018.stdout:lvcreate is present 2024-09-07T08:12:21.985 INFO:teuthology.orchestra.run.smithi018.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-07T08:12:21.985 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-07T08:12:21.991 INFO:teuthology.orchestra.run.smithi018.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-07T08:12:21.991 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stdout inactive 2024-09-07T08:12:21.997 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stdout enabled 2024-09-07T08:12:22.004 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stdout active 2024-09-07T08:12:22.004 INFO:teuthology.orchestra.run.smithi018.stdout:Unit chronyd.service is enabled and running 2024-09-07T08:12:22.004 INFO:teuthology.orchestra.run.smithi018.stdout:Host looks OK 2024-09-07T08:12:22.005 INFO:teuthology.orchestra.run.smithi018.stdout:Cluster fsid: d3fad026-6cf0-11ef-bcea-c7b262605968 2024-09-07T08:12:22.005 INFO:teuthology.orchestra.run.smithi018.stdout:Acquiring lock 140379341356864 on /run/cephadm/d3fad026-6cf0-11ef-bcea-c7b262605968.lock 2024-09-07T08:12:22.005 INFO:teuthology.orchestra.run.smithi018.stdout:Lock 140379341356864 acquired on /run/cephadm/d3fad026-6cf0-11ef-bcea-c7b262605968.lock 2024-09-07T08:12:22.005 INFO:teuthology.orchestra.run.smithi018.stdout:Verifying IP 172.21.15.18 port 3300 ... 2024-09-07T08:12:22.005 INFO:teuthology.orchestra.run.smithi018.stdout:Verifying IP 172.21.15.18 port 6789 ... 2024-09-07T08:12:22.005 INFO:teuthology.orchestra.run.smithi018.stdout:Base mon IP(s) is [172.21.15.18:3300, 172.21.15.18:6789], mon addrv is [v2:172.21.15.18:3300,v1:172.21.15.18:6789] 2024-09-07T08:12:22.008 INFO:teuthology.orchestra.run.smithi018.stdout:/sbin/ip: stdout default via 172.21.15.254 dev ens1f0 proto dhcp src 172.21.15.18 metric 100 2024-09-07T08:12:22.008 INFO:teuthology.orchestra.run.smithi018.stdout:/sbin/ip: stdout 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.18 metric 100 2024-09-07T08:12:22.010 INFO:teuthology.orchestra.run.smithi018.stdout:/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-09-07T08:12:22.011 INFO:teuthology.orchestra.run.smithi018.stdout:/sbin/ip: stdout fe80::/64 dev ens1f0 proto kernel metric 1024 pref medium 2024-09-07T08:12:22.011 INFO:teuthology.orchestra.run.smithi018.stdout:/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 100 pref medium 2024-09-07T08:12:22.013 INFO:teuthology.orchestra.run.smithi018.stdout:/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-09-07T08:12:22.013 INFO:teuthology.orchestra.run.smithi018.stdout:/sbin/ip: stdout inet6 ::1/128 scope host 2024-09-07T08:12:22.013 INFO:teuthology.orchestra.run.smithi018.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-07T08:12:22.013 INFO:teuthology.orchestra.run.smithi018.stdout:/sbin/ip: stdout 4: ens1f0: mtu 1500 state UP qlen 1000 2024-09-07T08:12:22.013 INFO:teuthology.orchestra.run.smithi018.stdout:/sbin/ip: stdout inet6 fe80::babd:f3da:9d24:ed19/64 scope link noprefixroute 2024-09-07T08:12:22.013 INFO:teuthology.orchestra.run.smithi018.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-07T08:12:22.014 INFO:teuthology.orchestra.run.smithi018.stdout:Mon IP `172.21.15.18` is in CIDR network `172.21.0.0/20` 2024-09-07T08:12:22.014 INFO:teuthology.orchestra.run.smithi018.stdout:Mon IP `172.21.15.18` is in CIDR network `172.21.0.0/20` 2024-09-07T08:12:22.014 INFO:teuthology.orchestra.run.smithi018.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-09-07T08:12:22.014 INFO:teuthology.orchestra.run.smithi018.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-09-07T08:12:22.015 INFO:teuthology.orchestra.run.smithi018.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439... 2024-09-07T08:12:22.501 INFO:teuthology.orchestra.run.smithi018.stdout:/bin/podman: stdout 6d221832e1054b498e2b9f082020222573577791586fe066468034523d6f813b 2024-09-07T08:12:22.501 INFO:teuthology.orchestra.run.smithi018.stdout:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439... 2024-09-07T08:12:22.501 INFO:teuthology.orchestra.run.smithi018.stdout:/bin/podman: stderr Getting image source signatures 2024-09-07T08:12:22.501 INFO:teuthology.orchestra.run.smithi018.stdout:/bin/podman: stderr Copying blob sha256:bafcd72c4faf39c9cb9076aca71b1e730a43301ab3436d773226ce6d417f18a6 2024-09-07T08:12:22.501 INFO:teuthology.orchestra.run.smithi018.stdout:/bin/podman: stderr Copying blob sha256:e8b54c863393b7a8216a71737771b73b16a8e43ec7acf927c7faa175c255e551 2024-09-07T08:12:22.501 INFO:teuthology.orchestra.run.smithi018.stdout:/bin/podman: stderr Copying config sha256:6d221832e1054b498e2b9f082020222573577791586fe066468034523d6f813b 2024-09-07T08:12:22.502 INFO:teuthology.orchestra.run.smithi018.stdout:/bin/podman: stderr Writing manifest to image destination 2024-09-07T08:12:23.414 INFO:teuthology.orchestra.run.smithi018.stdout:ceph: stdout ceph version 18.2.4-812-g03cef208 (03cef208dc8a39e0b8a1806b4763767a2ff62439) reef (stable) 2024-09-07T08:12:23.414 INFO:teuthology.orchestra.run.smithi018.stdout:Ceph version: ceph version 18.2.4-812-g03cef208 (03cef208dc8a39e0b8a1806b4763767a2ff62439) reef (stable) 2024-09-07T08:12:23.414 INFO:teuthology.orchestra.run.smithi018.stdout:Extracting ceph user uid/gid from container image... 2024-09-07T08:12:24.418 INFO:teuthology.orchestra.run.smithi018.stdout:stat: stdout 167 167 2024-09-07T08:12:24.418 INFO:teuthology.orchestra.run.smithi018.stdout:Creating initial keys... 2024-09-07T08:12:33.388 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-authtool: stdout AQDrCtxmcDWeCxAAlAabcYm2vWjOMcaB3Vlcqg== 2024-09-07T08:12:36.166 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-authtool: stdout AQDzCtxmG3TiHRAAd4AGJLkTo9Q/IBzE5tY3ow== 2024-09-07T08:12:37.112 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-authtool: stdout AQD0CtxmdSulHhAAUG7Jz+l6k1ZRlwZDvT1IAA== 2024-09-07T08:12:37.113 INFO:teuthology.orchestra.run.smithi018.stdout:Creating initial monmap... 2024-09-07T08:12:38.069 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-07T08:12:38.069 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = pacific 2024-09-07T08:12:38.069 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to d3fad026-6cf0-11ef-bcea-c7b262605968 2024-09-07T08:12:38.069 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-07T08:12:38.069 INFO:teuthology.orchestra.run.smithi018.stdout:monmaptool for a [v2:172.21.15.18:3300,v1:172.21.15.18:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-07T08:12:38.069 INFO:teuthology.orchestra.run.smithi018.stdout:setting min_mon_release = pacific 2024-09-07T08:12:38.069 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/monmaptool: set fsid to d3fad026-6cf0-11ef-bcea-c7b262605968 2024-09-07T08:12:38.069 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-07T08:12:38.070 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:12:38.070 INFO:teuthology.orchestra.run.smithi018.stdout:Creating mon... 2024-09-07T08:12:39.024 INFO:teuthology.orchestra.run.smithi018.stdout:create mon.a on 2024-09-07T08:12:39.230 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stderr Removed "/etc/systemd/system/multi-user.target.wants/ceph.target". 2024-09-07T08:12:39.387 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2024-09-07T08:12:39.572 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-d3fad026-6cf0-11ef-bcea-c7b262605968.target → /etc/systemd/system/ceph-d3fad026-6cf0-11ef-bcea-c7b262605968.target. 2024-09-07T08:12:39.573 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-d3fad026-6cf0-11ef-bcea-c7b262605968.target → /etc/systemd/system/ceph-d3fad026-6cf0-11ef-bcea-c7b262605968.target. 2024-09-07T08:12:39.835 INFO:teuthology.orchestra.run.smithi018.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@mon.a 2024-09-07T08:12:39.835 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stderr Failed to reset failed state of unit ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@mon.a.service: Unit ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@mon.a.service not loaded. 2024-09-07T08:12:40.006 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-d3fad026-6cf0-11ef-bcea-c7b262605968.target.wants/ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@mon.a.service → /etc/systemd/system/ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@.service. 2024-09-07T08:12:40.549 INFO:teuthology.orchestra.run.smithi018.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-07T08:12:40.550 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stdout disabled 2024-09-07T08:12:40.557 INFO:teuthology.orchestra.run.smithi018.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-07T08:12:40.557 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stdout inactive 2024-09-07T08:12:40.557 INFO:teuthology.orchestra.run.smithi018.stdout:firewalld.service is not enabled 2024-09-07T08:12:40.557 INFO:teuthology.orchestra.run.smithi018.stdout:Not possible to enable service . firewalld.service is not available 2024-09-07T08:12:40.558 INFO:teuthology.orchestra.run.smithi018.stdout:Waiting for mon to start... 2024-09-07T08:12:40.558 INFO:teuthology.orchestra.run.smithi018.stdout:Waiting for mon... 2024-09-07T08:12:42.800 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout cluster: 2024-09-07T08:12:42.801 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout id: d3fad026-6cf0-11ef-bcea-c7b262605968 2024-09-07T08:12:42.801 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-09-07T08:12:42.801 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout 2024-09-07T08:12:42.801 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout services: 2024-09-07T08:12:42.801 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum a (age 1.74746s) 2024-09-07T08:12:42.801 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-09-07T08:12:42.801 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-09-07T08:12:42.801 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout 2024-09-07T08:12:42.801 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout data: 2024-09-07T08:12:42.801 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-09-07T08:12:42.801 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-09-07T08:12:42.801 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-09-07T08:12:42.801 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout pgs: 2024-09-07T08:12:42.801 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout 2024-09-07T08:12:42.801 INFO:teuthology.orchestra.run.smithi018.stdout:mon is available 2024-09-07T08:12:42.802 INFO:teuthology.orchestra.run.smithi018.stdout:Assimilating anything we can from ceph.conf... 2024-09-07T08:12:43.798 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout 2024-09-07T08:12:43.798 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout [global] 2024-09-07T08:12:43.798 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout fsid = d3fad026-6cf0-11ef-bcea-c7b262605968 2024-09-07T08:12:43.798 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.18:3300,v1:172.21.15.18:6789] 2024-09-07T08:12:43.798 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-07T08:12:43.799 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-07T08:12:43.799 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-07T08:12:43.799 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-07T08:12:43.799 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout 2024-09-07T08:12:43.799 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-07T08:12:43.799 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout mgr/cephadm/use_agent = False 2024-09-07T08:12:43.799 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-07T08:12:43.799 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout 2024-09-07T08:12:43.799 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout [osd] 2024-09-07T08:12:43.799 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-07T08:12:43.799 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-07T08:12:43.799 INFO:teuthology.orchestra.run.smithi018.stdout:Generating new minimal ceph.conf... 2024-09-07T08:12:44.836 INFO:teuthology.orchestra.run.smithi018.stdout:Restarting the monitor... 2024-09-07T08:12:45.103 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:44 smithi018 systemd[1]: Stopping Ceph mon.a for d3fad026-6cf0-11ef-bcea-c7b262605968... 2024-09-07T08:12:45.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:45 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mon-a[29948]: 2024-09-07T08:12:45.100+0000 7f816c971640 -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-07T08:12:45.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:45 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mon-a[29948]: 2024-09-07T08:12:45.100+0000 7f816c971640 -1 mon.a@0(leader) e1 *** Got Signal Terminated *** 2024-09-07T08:12:45.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:45 smithi018 podman[30198]: 2024-09-07 08:12:45.21451854 +0000 UTC m=+0.212149807 container died 07e0eee09ce6415f97d3aad38d7a063cf5169d5398b7fd543f8068faa063399f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mon-a, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, ceph=True, org.label-schema.schema-version=1.0, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, GIT_CLEAN=True, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2) 2024-09-07T08:12:46.022 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:45 smithi018 podman[30198]: 2024-09-07 08:12:45.812424965 +0000 UTC m=+0.810056230 container cleanup 07e0eee09ce6415f97d3aad38d7a063cf5169d5398b7fd543f8068faa063399f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mon-a, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, ceph=True, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_BRANCH=HEAD, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, GIT_CLEAN=True, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, org.label-schema.license=GPLv2) 2024-09-07T08:12:46.022 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:45 smithi018 bash[30198]: ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mon-a 2024-09-07T08:12:46.331 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 podman[30210]: 2024-09-07 08:12:46.021449585 +0000 UTC m=+0.808695974 container remove 07e0eee09ce6415f97d3aad38d7a063cf5169d5398b7fd543f8068faa063399f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mon-a, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, GIT_CLEAN=True, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-07T08:12:46.332 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 systemd[1]: ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@mon.a.service: Deactivated successfully. 2024-09-07T08:12:46.332 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 systemd[1]: Stopped Ceph mon.a for d3fad026-6cf0-11ef-bcea-c7b262605968. 2024-09-07T08:12:46.332 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 systemd[1]: Starting Ceph mon.a for d3fad026-6cf0-11ef-bcea-c7b262605968... 2024-09-07T08:12:46.593 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 podman[30303]: 2024-09-07 08:12:46.330559576 +0000 UTC m=+0.097506996 container create 3508e801eae828f5e4cb929b18b531c920364481af8240c2ad6b86aa97036382 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mon-a, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, ceph=True, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, maintainer=Guillaume Abrioux , GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.license=GPLv2) 2024-09-07T08:12:46.593 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 podman[30303]: 2024-09-07 08:12:46.248990639 +0000 UTC m=+0.015938067 image pull 6d221832e1054b498e2b9f082020222573577791586fe066468034523d6f813b quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 2024-09-07T08:12:46.593 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 podman[30303]: 2024-09-07 08:12:46.516363759 +0000 UTC m=+0.283311175 container init 3508e801eae828f5e4cb929b18b531c920364481af8240c2ad6b86aa97036382 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mon-a, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, maintainer=Guillaume Abrioux , GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, ceph=True, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, CEPH_POINT_RELEASE=) 2024-09-07T08:12:46.593 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 podman[30303]: 2024-09-07 08:12:46.519351399 +0000 UTC m=+0.286298816 container start 3508e801eae828f5e4cb929b18b531c920364481af8240c2ad6b86aa97036382 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mon-a, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, io.buildah.version=1.37.2, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, ceph=True, GIT_CLEAN=True, org.label-schema.vendor=CentOS) 2024-09-07T08:12:46.593 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: set uid:gid to 167:167 (ceph:ceph) 2024-09-07T08:12:46.593 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: ceph version 18.2.4-812-g03cef208 (03cef208dc8a39e0b8a1806b4763767a2ff62439) reef (stable), process ceph-mon, pid 2 2024-09-07T08:12:46.594 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: pidfile_write: ignore empty --pid-file 2024-09-07T08:12:46.594 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: load: jerasure load: lrc 2024-09-07T08:12:46.594 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: RocksDB version: 7.9.2 2024-09-07T08:12:46.594 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Git sha 0 2024-09-07T08:12:46.594 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Compile date 2024-09-06 19:38:05 2024-09-07T08:12:46.594 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: DB SUMMARY 2024-09-07T08:12:46.594 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: DB Session ID: LGZCS0MRYGLZ6SNAKH14 2024-09-07T08:12:46.594 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: CURRENT file: CURRENT 2024-09-07T08:12:46.594 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: IDENTITY file: IDENTITY 2024-09-07T08:12:46.594 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-09-07T08:12:46.594 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 1, files: 000008.sst 2024-09-07T08:12:46.594 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 000009.log size: 84031 ; 2024-09-07T08:12:46.595 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.error_if_exists: 0 2024-09-07T08:12:46.595 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.create_if_missing: 0 2024-09-07T08:12:46.595 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.paranoid_checks: 1 2024-09-07T08:12:46.595 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.flush_verify_memtable_count: 1 2024-09-07T08:12:46.596 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-07T08:12:46.596 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-07T08:12:46.596 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.env: 0x5567013e1bc0 2024-09-07T08:12:46.596 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.fs: PosixFileSystem 2024-09-07T08:12:46.596 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.info_log: 0x5567024ecbe0 2024-09-07T08:12:46.596 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.max_file_opening_threads: 16 2024-09-07T08:12:46.596 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.statistics: (nil) 2024-09-07T08:12:46.596 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.use_fsync: 0 2024-09-07T08:12:46.596 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.max_log_file_size: 0 2024-09-07T08:12:46.596 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-07T08:12:46.597 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.log_file_time_to_roll: 0 2024-09-07T08:12:46.597 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.keep_log_file_num: 1000 2024-09-07T08:12:46.597 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.recycle_log_file_num: 0 2024-09-07T08:12:46.597 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.allow_fallocate: 1 2024-09-07T08:12:46.597 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.allow_mmap_reads: 0 2024-09-07T08:12:46.597 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.allow_mmap_writes: 0 2024-09-07T08:12:46.597 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.use_direct_reads: 0 2024-09-07T08:12:46.597 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-07T08:12:46.597 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.create_missing_column_families: 0 2024-09-07T08:12:46.597 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.db_log_dir: 2024-09-07T08:12:46.597 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.wal_dir: 2024-09-07T08:12:46.597 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.table_cache_numshardbits: 6 2024-09-07T08:12:46.598 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.WAL_ttl_seconds: 0 2024-09-07T08:12:46.598 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.WAL_size_limit_MB: 0 2024-09-07T08:12:46.598 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-07T08:12:46.598 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-07T08:12:46.598 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.is_fd_close_on_exec: 1 2024-09-07T08:12:46.598 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.advise_random_on_open: 1 2024-09-07T08:12:46.598 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.db_write_buffer_size: 0 2024-09-07T08:12:46.598 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.write_buffer_manager: 0x5567024fa320 2024-09-07T08:12:46.598 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-07T08:12:46.598 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-07T08:12:46.598 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.use_adaptive_mutex: 0 2024-09-07T08:12:46.598 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.rate_limiter: (nil) 2024-09-07T08:12:46.599 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-07T08:12:46.599 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.wal_recovery_mode: 2 2024-09-07T08:12:46.599 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.enable_thread_tracking: 0 2024-09-07T08:12:46.599 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.enable_pipelined_write: 0 2024-09-07T08:12:46.599 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.unordered_write: 0 2024-09-07T08:12:46.599 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-07T08:12:46.599 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-07T08:12:46.599 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-07T08:12:46.599 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-07T08:12:46.599 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.row_cache: None 2024-09-07T08:12:46.599 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.wal_filter: None 2024-09-07T08:12:46.599 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-07T08:12:46.599 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.allow_ingest_behind: 0 2024-09-07T08:12:46.600 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.two_write_queues: 0 2024-09-07T08:12:46.600 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.manual_wal_flush: 0 2024-09-07T08:12:46.600 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.wal_compression: 0 2024-09-07T08:12:46.600 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.atomic_flush: 0 2024-09-07T08:12:46.600 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-07T08:12:46.600 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.persist_stats_to_disk: 0 2024-09-07T08:12:46.600 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.write_dbid_to_manifest: 0 2024-09-07T08:12:46.600 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.log_readahead_size: 0 2024-09-07T08:12:46.600 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-07T08:12:46.600 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.best_efforts_recovery: 0 2024-09-07T08:12:46.600 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-07T08:12:46.600 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-07T08:12:46.601 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.allow_data_in_errors: 0 2024-09-07T08:12:46.601 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.db_host_id: __hostname__ 2024-09-07T08:12:46.601 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.enforce_single_del_contracts: true 2024-09-07T08:12:46.601 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.max_background_jobs: 2 2024-09-07T08:12:46.601 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.max_background_compactions: -1 2024-09-07T08:12:46.601 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.max_subcompactions: 1 2024-09-07T08:12:46.601 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-07T08:12:46.601 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-07T08:12:46.601 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.delayed_write_rate : 16777216 2024-09-07T08:12:46.601 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.max_total_wal_size: 0 2024-09-07T08:12:46.601 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-07T08:12:46.601 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.stats_dump_period_sec: 600 2024-09-07T08:12:46.601 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.stats_persist_period_sec: 600 2024-09-07T08:12:46.601 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-07T08:12:46.602 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.max_open_files: -1 2024-09-07T08:12:46.602 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.bytes_per_sync: 0 2024-09-07T08:12:46.602 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.wal_bytes_per_sync: 0 2024-09-07T08:12:46.602 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.strict_bytes_per_sync: 0 2024-09-07T08:12:46.602 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.compaction_readahead_size: 0 2024-09-07T08:12:46.602 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.max_background_flushes: -1 2024-09-07T08:12:46.602 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Compression algorithms supported: 2024-09-07T08:12:46.602 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: kZSTD supported: 0 2024-09-07T08:12:46.602 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: kXpressCompression supported: 0 2024-09-07T08:12:46.602 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: kBZip2Compression supported: 0 2024-09-07T08:12:46.602 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-07T08:12:46.602 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: kLZ4Compression supported: 1 2024-09-07T08:12:46.602 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: kZlibCompression supported: 1 2024-09-07T08:12:46.602 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: kLZ4HCCompression supported: 1 2024-09-07T08:12:46.603 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: kSnappyCompression supported: 1 2024-09-07T08:12:46.603 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Fast CRC32 supported: Supported on x86 2024-09-07T08:12:46.603 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: DMutex implementation: pthread_mutex_t 2024-09-07T08:12:46.603 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 2024-09-07T08:12:46.603 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-07T08:12:46.603 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-07T08:12:46.603 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.merge_operator: 2024-09-07T08:12:46.603 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.compaction_filter: None 2024-09-07T08:12:46.603 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.compaction_filter_factory: None 2024-09-07T08:12:46.603 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.sst_partitioner_factory: None 2024-09-07T08:12:46.603 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.memtable_factory: SkipListFactory 2024-09-07T08:12:46.603 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.table_factory: BlockBasedTable 2024-09-07T08:12:46.604 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x5567024ec7e0) 2024-09-07T08:12:46.604 INFO:journalctl@ceph.mon.a.smithi018.stdout: cache_index_and_filter_blocks: 1 2024-09-07T08:12:46.604 INFO:journalctl@ceph.mon.a.smithi018.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-07T08:12:46.604 INFO:journalctl@ceph.mon.a.smithi018.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-07T08:12:46.604 INFO:journalctl@ceph.mon.a.smithi018.stdout: pin_top_level_index_and_filter: 1 2024-09-07T08:12:46.604 INFO:journalctl@ceph.mon.a.smithi018.stdout: index_type: 0 2024-09-07T08:12:46.604 INFO:journalctl@ceph.mon.a.smithi018.stdout: data_block_index_type: 0 2024-09-07T08:12:46.604 INFO:journalctl@ceph.mon.a.smithi018.stdout: index_shortening: 1 2024-09-07T08:12:46.604 INFO:journalctl@ceph.mon.a.smithi018.stdout: data_block_hash_table_util_ratio: 0.750000 2024-09-07T08:12:46.604 INFO:journalctl@ceph.mon.a.smithi018.stdout: checksum: 4 2024-09-07T08:12:46.604 INFO:journalctl@ceph.mon.a.smithi018.stdout: no_block_cache: 0 2024-09-07T08:12:46.604 INFO:journalctl@ceph.mon.a.smithi018.stdout: block_cache: 0x5567024e1350 2024-09-07T08:12:46.604 INFO:journalctl@ceph.mon.a.smithi018.stdout: block_cache_name: BinnedLRUCache 2024-09-07T08:12:46.605 INFO:journalctl@ceph.mon.a.smithi018.stdout: block_cache_options: 2024-09-07T08:12:46.605 INFO:journalctl@ceph.mon.a.smithi018.stdout: capacity : 536870912 2024-09-07T08:12:46.605 INFO:journalctl@ceph.mon.a.smithi018.stdout: num_shard_bits : 4 2024-09-07T08:12:46.605 INFO:journalctl@ceph.mon.a.smithi018.stdout: strict_capacity_limit : 0 2024-09-07T08:12:46.605 INFO:journalctl@ceph.mon.a.smithi018.stdout: high_pri_pool_ratio: 0.000 2024-09-07T08:12:46.605 INFO:journalctl@ceph.mon.a.smithi018.stdout: block_cache_compressed: (nil) 2024-09-07T08:12:46.605 INFO:journalctl@ceph.mon.a.smithi018.stdout: persistent_cache: (nil) 2024-09-07T08:12:46.605 INFO:journalctl@ceph.mon.a.smithi018.stdout: block_size: 4096 2024-09-07T08:12:46.605 INFO:journalctl@ceph.mon.a.smithi018.stdout: block_size_deviation: 10 2024-09-07T08:12:46.605 INFO:journalctl@ceph.mon.a.smithi018.stdout: block_restart_interval: 16 2024-09-07T08:12:46.606 INFO:journalctl@ceph.mon.a.smithi018.stdout: index_block_restart_interval: 1 2024-09-07T08:12:46.606 INFO:journalctl@ceph.mon.a.smithi018.stdout: metadata_block_size: 4096 2024-09-07T08:12:46.606 INFO:journalctl@ceph.mon.a.smithi018.stdout: partition_filters: 0 2024-09-07T08:12:46.606 INFO:journalctl@ceph.mon.a.smithi018.stdout: use_delta_encoding: 1 2024-09-07T08:12:46.606 INFO:journalctl@ceph.mon.a.smithi018.stdout: filter_policy: bloomfilter 2024-09-07T08:12:46.606 INFO:journalctl@ceph.mon.a.smithi018.stdout: whole_key_filtering: 1 2024-09-07T08:12:46.606 INFO:journalctl@ceph.mon.a.smithi018.stdout: verify_compression: 0 2024-09-07T08:12:46.606 INFO:journalctl@ceph.mon.a.smithi018.stdout: read_amp_bytes_per_bit: 0 2024-09-07T08:12:46.606 INFO:journalctl@ceph.mon.a.smithi018.stdout: format_version: 5 2024-09-07T08:12:46.606 INFO:journalctl@ceph.mon.a.smithi018.stdout: enable_index_compression: 1 2024-09-07T08:12:46.607 INFO:journalctl@ceph.mon.a.smithi018.stdout: block_align: 0 2024-09-07T08:12:46.607 INFO:journalctl@ceph.mon.a.smithi018.stdout: max_auto_readahead_size: 262144 2024-09-07T08:12:46.607 INFO:journalctl@ceph.mon.a.smithi018.stdout: prepopulate_block_cache: 0 2024-09-07T08:12:46.607 INFO:journalctl@ceph.mon.a.smithi018.stdout: initial_auto_readahead_size: 8192 2024-09-07T08:12:46.607 INFO:journalctl@ceph.mon.a.smithi018.stdout: num_file_reads_for_auto_readahead: 2 2024-09-07T08:12:46.607 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.write_buffer_size: 33554432 2024-09-07T08:12:46.607 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.max_write_buffer_number: 2 2024-09-07T08:12:46.607 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.compression: NoCompression 2024-09-07T08:12:46.607 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.bottommost_compression: Disabled 2024-09-07T08:12:46.607 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.prefix_extractor: nullptr 2024-09-07T08:12:46.607 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-07T08:12:46.607 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.num_levels: 7 2024-09-07T08:12:46.607 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-07T08:12:46.607 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-07T08:12:46.608 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-07T08:12:46.608 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-07T08:12:46.608 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-07T08:12:46.608 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-07T08:12:46.608 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-07T08:12:46.608 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-07T08:12:46.608 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-07T08:12:46.608 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-07T08:12:46.608 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-07T08:12:46.608 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-07T08:12:46.608 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.compression_opts.window_bits: -14 2024-09-07T08:12:46.608 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.compression_opts.level: 32767 2024-09-07T08:12:46.608 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.compression_opts.strategy: 0 2024-09-07T08:12:46.609 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-07T08:12:46.609 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-07T08:12:46.609 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-07T08:12:46.609 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-07T08:12:46.609 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.compression_opts.enabled: false 2024-09-07T08:12:46.609 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-07T08:12:46.609 INFO:teuthology.orchestra.run.smithi018.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-09-07T08:12:46.610 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-07T08:12:46.610 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-07T08:12:46.610 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-07T08:12:46.610 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.target_file_size_base: 67108864 2024-09-07T08:12:46.610 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.target_file_size_multiplier: 1 2024-09-07T08:12:46.610 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-07T08:12:46.611 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-07T08:12:46.611 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-07T08:12:46.611 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-07T08:12:46.611 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-07T08:12:46.611 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-07T08:12:46.611 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-07T08:12:46.611 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-07T08:12:46.611 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-07T08:12:46.611 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-07T08:12:46.612 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-07T08:12:46.612 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-07T08:12:46.612 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-07T08:12:46.612 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.arena_block_size: 1048576 2024-09-07T08:12:46.612 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-07T08:12:46.612 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-07T08:12:46.612 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.disable_auto_compactions: 0 2024-09-07T08:12:46.612 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-07T08:12:46.612 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-07T08:12:46.612 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-07T08:12:46.612 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-07T08:12:46.612 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-07T08:12:46.612 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-07T08:12:46.613 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-07T08:12:46.613 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-07T08:12:46.613 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-07T08:12:46.613 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-07T08:12:46.613 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-07T08:12:46.613 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.inplace_update_support: 0 2024-09-07T08:12:46.613 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.inplace_update_num_locks: 10000 2024-09-07T08:12:46.613 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-07T08:12:46.613 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-07T08:12:46.613 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.memtable_huge_page_size: 0 2024-09-07T08:12:46.613 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.bloom_locality: 0 2024-09-07T08:12:46.613 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.max_successive_merges: 0 2024-09-07T08:12:46.614 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.optimize_filters_for_hits: 0 2024-09-07T08:12:46.614 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.paranoid_file_checks: 0 2024-09-07T08:12:46.614 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.force_consistency_checks: 1 2024-09-07T08:12:46.614 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.report_bg_io_stats: 0 2024-09-07T08:12:46.614 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.ttl: 2592000 2024-09-07T08:12:46.614 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.periodic_compaction_seconds: 0 2024-09-07T08:12:46.614 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-07T08:12:46.614 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-07T08:12:46.614 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.enable_blob_files: false 2024-09-07T08:12:46.614 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.min_blob_size: 0 2024-09-07T08:12:46.614 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.blob_file_size: 268435456 2024-09-07T08:12:46.614 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.blob_compression_type: NoCompression 2024-09-07T08:12:46.615 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.enable_blob_garbage_collection: false 2024-09-07T08:12:46.615 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-07T08:12:46.615 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-07T08:12:46.615 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-07T08:12:46.615 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.blob_file_starting_level: 0 2024-09-07T08:12:46.615 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-07T08:12:46.615 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: 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-07T08:12:46.615 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-09-07T08:12:46.615 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: fc56a7c3-deb4-44ce-b11f-feb5014b20ef 2024-09-07T08:12:46.615 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: EVENT_LOG_v1 {"time_micros": 1725696766546231, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-09-07T08:12:46.615 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-09-07T08:12:46.615 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: EVENT_LOG_v1 {"time_micros": 1725696766547070, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 80693, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 256, "table_properties": {"data_size": 78836, "index_size": 241, "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": 9926, "raw_average_key_size": 47, "raw_value_size": 73099, "raw_average_value_size": 346, "num_data_blocks": 11, "num_entries": 211, "num_filter_entries": 211, "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": 1725696766, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "fc56a7c3-deb4-44ce-b11f-feb5014b20ef", "db_session_id": "LGZCS0MRYGLZ6SNAKH14", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-09-07T08:12:46.616 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: EVENT_LOG_v1 {"time_micros": 1725696766547166, "job": 1, "event": "recovery_finished"} 2024-09-07T08:12:46.616 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-09-07T08:12:46.616 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: 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-07T08:12:46.616 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55670250ce00 2024-09-07T08:12:46.616 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: DB pointer 0x556702600000 2024-09-07T08:12:46.616 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-07T08:12:46.616 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-07T08:12:46.616 INFO:journalctl@ceph.mon.a.smithi018.stdout: ** DB Stats ** 2024-09-07T08:12:46.616 INFO:journalctl@ceph.mon.a.smithi018.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-07T08:12:46.616 INFO:journalctl@ceph.mon.a.smithi018.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-07T08:12:46.616 INFO:journalctl@ceph.mon.a.smithi018.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-07T08:12:46.617 INFO:journalctl@ceph.mon.a.smithi018.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-07T08:12:46.617 INFO:journalctl@ceph.mon.a.smithi018.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-07T08:12:46.617 INFO:journalctl@ceph.mon.a.smithi018.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-07T08:12:46.617 INFO:journalctl@ceph.mon.a.smithi018.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-07T08:12:46.617 INFO:journalctl@ceph.mon.a.smithi018.stdout: 2024-09-07T08:12:46.617 INFO:journalctl@ceph.mon.a.smithi018.stdout: ** Compaction Stats [default] ** 2024-09-07T08:12:46.617 INFO:journalctl@ceph.mon.a.smithi018.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-07T08:12:46.617 INFO:journalctl@ceph.mon.a.smithi018.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-07T08:12:46.617 INFO:journalctl@ceph.mon.a.smithi018.stdout: L0 2/0 80.66 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 143.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-07T08:12:46.617 INFO:journalctl@ceph.mon.a.smithi018.stdout: Sum 2/0 80.66 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 143.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-07T08:12:46.617 INFO:journalctl@ceph.mon.a.smithi018.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 143.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-07T08:12:46.618 INFO:journalctl@ceph.mon.a.smithi018.stdout: 2024-09-07T08:12:46.618 INFO:journalctl@ceph.mon.a.smithi018.stdout: ** Compaction Stats [default] ** 2024-09-07T08:12:46.618 INFO:journalctl@ceph.mon.a.smithi018.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-07T08:12:46.618 INFO:journalctl@ceph.mon.a.smithi018.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-07T08:12:46.618 INFO:journalctl@ceph.mon.a.smithi018.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 143.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-07T08:12:46.618 INFO:journalctl@ceph.mon.a.smithi018.stdout: 2024-09-07T08:12:46.618 INFO:journalctl@ceph.mon.a.smithi018.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-07T08:12:46.618 INFO:journalctl@ceph.mon.a.smithi018.stdout: 2024-09-07T08:12:46.618 INFO:journalctl@ceph.mon.a.smithi018.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-07T08:12:46.618 INFO:journalctl@ceph.mon.a.smithi018.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-09-07T08:12:46.618 INFO:journalctl@ceph.mon.a.smithi018.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-07T08:12:46.618 INFO:journalctl@ceph.mon.a.smithi018.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-09-07T08:12:46.618 INFO:journalctl@ceph.mon.a.smithi018.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-09-07T08:12:46.619 INFO:journalctl@ceph.mon.a.smithi018.stdout: AddFile(Keys): cumulative 0, interval 0 2024-09-07T08:12:46.619 INFO:journalctl@ceph.mon.a.smithi018.stdout: Cumulative compaction: 0.00 GB write, 25.61 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-07T08:12:46.619 INFO:journalctl@ceph.mon.a.smithi018.stdout: Interval compaction: 0.00 GB write, 25.61 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-07T08:12:46.619 INFO:journalctl@ceph.mon.a.smithi018.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-07T08:12:46.619 INFO:journalctl@ceph.mon.a.smithi018.stdout: Block cache BinnedLRUCache@0x5567024e1350#2 capacity: 512.00 MB usage: 1.20 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1e-05 secs_since: 0 2024-09-07T08:12:46.619 INFO:journalctl@ceph.mon.a.smithi018.stdout: Block cache entry stats(count,size,portion): FilterBlock(2,0.77 KB,0.000146031%) IndexBlock(2,0.44 KB,8.34465e-05%) Misc(1,0.00 KB,0%) 2024-09-07T08:12:46.619 INFO:journalctl@ceph.mon.a.smithi018.stdout: 2024-09-07T08:12:46.619 INFO:journalctl@ceph.mon.a.smithi018.stdout: ** File Read Latency Histogram By Level [default] ** 2024-09-07T08:12:46.619 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: starting mon.a rank 0 at public addrs [v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0] at bind addrs [v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0] mon_data /var/lib/ceph/mon/ceph-a fsid d3fad026-6cf0-11ef-bcea-c7b262605968 2024-09-07T08:12:46.619 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: mon.a@-1(???) e1 preinit fsid d3fad026-6cf0-11ef-bcea-c7b262605968 2024-09-07T08:12:46.619 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: mon.a@-1(???).mds e1 new map 2024-09-07T08:12:46.619 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: mon.a@-1(???).mds e1 print_map 2024-09-07T08:12:46.619 INFO:journalctl@ceph.mon.a.smithi018.stdout: e1 2024-09-07T08:12:46.619 INFO:journalctl@ceph.mon.a.smithi018.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-09-07T08:12:46.620 INFO:journalctl@ceph.mon.a.smithi018.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} 2024-09-07T08:12:46.620 INFO:journalctl@ceph.mon.a.smithi018.stdout: legacy client fscid: -1 2024-09-07T08:12:46.620 INFO:journalctl@ceph.mon.a.smithi018.stdout: 2024-09-07T08:12:46.620 INFO:journalctl@ceph.mon.a.smithi018.stdout: No filesystems configured 2024-09-07T08:12:46.620 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: mon.a@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-07T08:12:46.620 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-07T08:12:46.620 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-07T08:12:46.620 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-07T08:12:46.620 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: mon.a@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-09-07T08:12:46.620 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 bash[30303]: 3508e801eae828f5e4cb929b18b531c920364481af8240c2ad6b86aa97036382 2024-09-07T08:12:46.620 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 systemd[1]: Started Ceph mon.a for d3fad026-6cf0-11ef-bcea-c7b262605968. 2024-09-07T08:12:46.845 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: mon.a is new leader, mons a in quorum (ranks 0) 2024-09-07T08:12:46.846 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: monmap e1: 1 mons at {a=[v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-07T08:12:46.846 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: fsmap 2024-09-07T08:12:46.846 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: osdmap e1: 0 total, 0 up, 0 in 2024-09-07T08:12:46.846 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:46 smithi018 ceph-mon[30322]: mgrmap e1: no daemons active 2024-09-07T08:12:47.660 INFO:teuthology.orchestra.run.smithi018.stdout:Wrote config to /etc/ceph/ceph.conf 2024-09-07T08:12:47.681 INFO:teuthology.orchestra.run.smithi018.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-09-07T08:12:47.682 INFO:teuthology.orchestra.run.smithi018.stdout:Creating mgr... 2024-09-07T08:12:47.682 INFO:teuthology.orchestra.run.smithi018.stdout:Verifying port 0.0.0.0:9283 ... 2024-09-07T08:12:47.682 INFO:teuthology.orchestra.run.smithi018.stdout:Verifying port 0.0.0.0:8765 ... 2024-09-07T08:12:47.939 INFO:teuthology.orchestra.run.smithi018.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@mgr.a 2024-09-07T08:12:47.939 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stderr Failed to reset failed state of unit ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@mgr.a.service: Unit ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@mgr.a.service not loaded. 2024-09-07T08:12:48.091 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-d3fad026-6cf0-11ef-bcea-c7b262605968.target.wants/ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@mgr.a.service → /etc/systemd/system/ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@.service. 2024-09-07T08:12:48.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:48 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/282294537' entity='client.admin' 2024-09-07T08:12:48.207 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:48 smithi018 systemd[1]: Starting Ceph mgr.a for d3fad026-6cf0-11ef-bcea-c7b262605968... 2024-09-07T08:12:48.636 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:48 smithi018 podman[30535]: 2024-09-07 08:12:48.316098905 +0000 UTC m=+0.104418066 container create f4de2b916e673ad245a01bc52e125fb1cd8e8899549d51033fe927c142f14b6a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a, GIT_CLEAN=True, org.label-schema.license=GPLv2, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, ceph=True, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS) 2024-09-07T08:12:48.636 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:48 smithi018 podman[30535]: 2024-09-07 08:12:48.227489357 +0000 UTC m=+0.015808529 image pull 6d221832e1054b498e2b9f082020222573577791586fe066468034523d6f813b quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 2024-09-07T08:12:48.637 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:48 smithi018 podman[30535]: 2024-09-07 08:12:48.526735794 +0000 UTC m=+0.315054948 container init f4de2b916e673ad245a01bc52e125fb1cd8e8899549d51033fe927c142f14b6a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a, ceph=True, org.label-schema.build-date=20240731, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD) 2024-09-07T08:12:48.637 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:48 smithi018 podman[30535]: 2024-09-07 08:12:48.529368795 +0000 UTC m=+0.317687949 container start f4de2b916e673ad245a01bc52e125fb1cd8e8899549d51033fe927c142f14b6a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a, ceph=True, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, 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, CEPH_POINT_RELEASE=, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_CLEAN=True, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0) 2024-09-07T08:12:48.637 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:48 smithi018 bash[30535]: f4de2b916e673ad245a01bc52e125fb1cd8e8899549d51033fe927c142f14b6a 2024-09-07T08:12:48.650 INFO:teuthology.orchestra.run.smithi018.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-07T08:12:48.650 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stdout disabled 2024-09-07T08:12:48.657 INFO:teuthology.orchestra.run.smithi018.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-07T08:12:48.657 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stdout inactive 2024-09-07T08:12:48.658 INFO:teuthology.orchestra.run.smithi018.stdout:firewalld.service is not enabled 2024-09-07T08:12:48.658 INFO:teuthology.orchestra.run.smithi018.stdout:Not possible to enable service . firewalld.service is not available 2024-09-07T08:12:48.665 INFO:teuthology.orchestra.run.smithi018.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-07T08:12:48.666 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stdout disabled 2024-09-07T08:12:48.673 INFO:teuthology.orchestra.run.smithi018.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-07T08:12:48.673 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stdout inactive 2024-09-07T08:12:48.673 INFO:teuthology.orchestra.run.smithi018.stdout:firewalld.service is not enabled 2024-09-07T08:12:48.674 INFO:teuthology.orchestra.run.smithi018.stdout:Not possible to open ports <[9283, 8765]>. firewalld.service is not available 2024-09-07T08:12:48.674 INFO:teuthology.orchestra.run.smithi018.stdout:Waiting for mgr to start... 2024-09-07T08:12:48.674 INFO:teuthology.orchestra.run.smithi018.stdout:Waiting for mgr... 2024-09-07T08:12:48.921 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:48 smithi018 systemd[1]: Started Ceph mgr.a for d3fad026-6cf0-11ef-bcea-c7b262605968. 2024-09-07T08:12:48.922 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:48 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:12:48.649+0000 7fea33d56040 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-07T08:12:48.922 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:48 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:12:48.712+0000 7fea33d56040 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-07T08:12:48.922 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:48 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:12:48.867+0000 7fea33d56040 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-09-07T08:12:49.206 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:48 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:12:48.937+0000 7fea33d56040 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-07T08:12:49.206 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:49 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:12:49.089+0000 7fea33d56040 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-07T08:12:49.505 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:49 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:12:49.234+0000 7fea33d56040 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-07T08:12:49.826 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:49 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/803208043' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-07T08:12:49.826 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:49 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:12:49.570+0000 7fea33d56040 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-07T08:12:49.827 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:49 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:12:49.633+0000 7fea33d56040 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-07T08:12:50.087 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:49 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:12:49.823+0000 7fea33d56040 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-07T08:12:50.119 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout 2024-09-07T08:12:50.119 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout { 2024-09-07T08:12:50.119 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "fsid": "d3fad026-6cf0-11ef-bcea-c7b262605968", 2024-09-07T08:12:50.119 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "health": { 2024-09-07T08:12:50.119 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-07T08:12:50.119 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-07T08:12:50.119 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-07T08:12:50.119 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-07T08:12:50.119 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-07T08:12:50.119 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-07T08:12:50.119 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout 0 2024-09-07T08:12:50.120 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout ], 2024-09-07T08:12:50.120 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-07T08:12:50.120 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "a" 2024-09-07T08:12:50.120 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout ], 2024-09-07T08:12:50.120 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "quorum_age": 2, 2024-09-07T08:12:50.120 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-07T08:12:50.120 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-07T08:12:50.120 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "reef", 2024-09-07T08:12:50.120 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-07T08:12:50.120 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-07T08:12:50.120 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-07T08:12:50.120 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-07T08:12:50.120 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-07T08:12:50.120 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-07T08:12:50.120 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-07T08:12:50.121 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-07T08:12:50.121 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-07T08:12:50.121 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-07T08:12:50.121 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-07T08:12:50.121 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-07T08:12:50.121 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-07T08:12:50.121 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-07T08:12:50.121 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-07T08:12:50.121 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-07T08:12:50.121 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-07T08:12:50.121 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-07T08:12:50.121 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-07T08:12:50.121 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-07T08:12:50.121 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-07T08:12:50.122 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-07T08:12:50.122 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-07T08:12:50.122 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-07T08:12:50.122 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-07T08:12:50.122 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-07T08:12:50.122 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-07T08:12:50.122 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-07T08:12:50.122 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-07T08:12:50.122 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-07T08:12:50.122 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-07T08:12:50.122 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-07T08:12:50.122 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "restful" 2024-09-07T08:12:50.122 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout ], 2024-09-07T08:12:50.122 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-07T08:12:50.122 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-07T08:12:50.123 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-07T08:12:50.123 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-07T08:12:50.123 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "modified": "2024-09-07T08:12:40.489437+0000", 2024-09-07T08:12:50.123 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-07T08:12:50.123 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-07T08:12:50.123 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-07T08:12:50.123 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout } 2024-09-07T08:12:50.123 INFO:teuthology.orchestra.run.smithi018.stdout:mgr not available, waiting (1/15)... 2024-09-07T08:12:51.206 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:50 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:12:50.738+0000 7fea33d56040 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-07T08:12:51.206 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:50 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:12:50.807+0000 7fea33d56040 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-07T08:12:51.831 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:51 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:12:51.564+0000 7fea33d56040 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-07T08:12:51.832 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:51 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:12:51.683+0000 7fea33d56040 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-07T08:12:51.832 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:51 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:12:51.829+0000 7fea33d56040 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-07T08:12:52.116 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:51 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:12:51.892+0000 7fea33d56040 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-07T08:12:52.116 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:52 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:12:52.043+0000 7fea33d56040 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-07T08:12:52.116 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:52 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:12:52.113+0000 7fea33d56040 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-07T08:12:52.410 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:52 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:12:52.178+0000 7fea33d56040 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-07T08:12:52.410 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:52 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:12:52.340+0000 7fea33d56040 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-07T08:12:52.663 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:52 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:12:52.407+0000 7fea33d56040 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-07T08:12:52.663 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:52 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:12:52.478+0000 7fea33d56040 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-07T08:12:52.663 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:52 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:12:52.564+0000 7fea33d56040 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-07T08:12:52.663 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:52 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:12:52.626+0000 7fea33d56040 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-07T08:12:52.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:52 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/2870707966' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-07T08:12:52.956 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:52 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:12:52.689+0000 7fea33d56040 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-07T08:12:53.266 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout 2024-09-07T08:12:53.266 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout { 2024-09-07T08:12:53.266 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "fsid": "d3fad026-6cf0-11ef-bcea-c7b262605968", 2024-09-07T08:12:53.266 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "health": { 2024-09-07T08:12:53.266 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-07T08:12:53.266 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-07T08:12:53.266 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-07T08:12:53.266 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-07T08:12:53.267 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-07T08:12:53.267 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-07T08:12:53.267 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout 0 2024-09-07T08:12:53.267 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout ], 2024-09-07T08:12:53.267 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-07T08:12:53.267 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "a" 2024-09-07T08:12:53.267 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout ], 2024-09-07T08:12:53.267 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "quorum_age": 6, 2024-09-07T08:12:53.267 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-07T08:12:53.267 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-07T08:12:53.267 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "reef", 2024-09-07T08:12:53.267 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-07T08:12:53.268 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-07T08:12:53.268 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-07T08:12:53.268 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-07T08:12:53.268 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-07T08:12:53.268 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-07T08:12:53.268 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-07T08:12:53.268 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-07T08:12:53.268 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-07T08:12:53.268 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-07T08:12:53.268 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-07T08:12:53.268 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-07T08:12:53.268 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-07T08:12:53.268 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-07T08:12:53.269 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-07T08:12:53.269 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-07T08:12:53.269 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-07T08:12:53.269 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-07T08:12:53.269 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-07T08:12:53.269 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-07T08:12:53.269 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-07T08:12:53.269 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-07T08:12:53.269 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-07T08:12:53.269 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-07T08:12:53.269 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-07T08:12:53.269 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-07T08:12:53.269 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-07T08:12:53.270 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-07T08:12:53.270 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-07T08:12:53.270 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-07T08:12:53.270 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-07T08:12:53.270 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-07T08:12:53.270 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "restful" 2024-09-07T08:12:53.270 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout ], 2024-09-07T08:12:53.270 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-07T08:12:53.270 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-07T08:12:53.270 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-07T08:12:53.270 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-07T08:12:53.270 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "modified": "2024-09-07T08:12:40.489437+0000", 2024-09-07T08:12:53.270 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-07T08:12:53.270 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-07T08:12:53.270 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-07T08:12:53.271 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout } 2024-09-07T08:12:53.271 INFO:teuthology.orchestra.run.smithi018.stdout:mgr not available, waiting (2/15)... 2024-09-07T08:12:53.785 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:53 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:12:53.508+0000 7fea33d56040 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-07T08:12:54.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:53 smithi018 ceph-mon[30322]: Activating manager daemon a 2024-09-07T08:12:54.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:53 smithi018 ceph-mon[30322]: mgrmap e2: a(active, starting, since 0.00300628s) 2024-09-07T08:12:54.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:53 smithi018 ceph-mon[30322]: from='mgr.14100 172.21.15.18:0/2322240779' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-07T08:12:54.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:53 smithi018 ceph-mon[30322]: from='mgr.14100 172.21.15.18:0/2322240779' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-07T08:12:54.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:53 smithi018 ceph-mon[30322]: from='mgr.14100 172.21.15.18:0/2322240779' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-07T08:12:54.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:53 smithi018 ceph-mon[30322]: from='mgr.14100 172.21.15.18:0/2322240779' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-07T08:12:54.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:53 smithi018 ceph-mon[30322]: from='mgr.14100 172.21.15.18:0/2322240779' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-09-07T08:12:54.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:53 smithi018 ceph-mon[30322]: Manager daemon a is now available 2024-09-07T08:12:54.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:53 smithi018 ceph-mon[30322]: from='mgr.14100 172.21.15.18:0/2322240779' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-09-07T08:12:54.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:53 smithi018 ceph-mon[30322]: from='mgr.14100 172.21.15.18:0/2322240779' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-09-07T08:12:54.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:53 smithi018 ceph-mon[30322]: from='mgr.14100 172.21.15.18:0/2322240779' entity='mgr.a' 2024-09-07T08:12:54.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:53 smithi018 ceph-mon[30322]: from='mgr.14100 172.21.15.18:0/2322240779' entity='mgr.a' 2024-09-07T08:12:54.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:53 smithi018 ceph-mon[30322]: from='mgr.14100 172.21.15.18:0/2322240779' entity='mgr.a' 2024-09-07T08:12:55.644 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:55 smithi018 ceph-mon[30322]: mgrmap e3: a(active, since 1.00682s) 2024-09-07T08:12:56.469 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout 2024-09-07T08:12:56.469 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout { 2024-09-07T08:12:56.469 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "fsid": "d3fad026-6cf0-11ef-bcea-c7b262605968", 2024-09-07T08:12:56.469 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "health": { 2024-09-07T08:12:56.469 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-07T08:12:56.469 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-07T08:12:56.470 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-07T08:12:56.470 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-07T08:12:56.470 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-07T08:12:56.470 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-07T08:12:56.470 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout 0 2024-09-07T08:12:56.470 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout ], 2024-09-07T08:12:56.470 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-07T08:12:56.470 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "a" 2024-09-07T08:12:56.470 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout ], 2024-09-07T08:12:56.470 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "quorum_age": 9, 2024-09-07T08:12:56.470 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-07T08:12:56.470 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-07T08:12:56.470 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "reef", 2024-09-07T08:12:56.470 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-07T08:12:56.470 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-07T08:12:56.471 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-07T08:12:56.471 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-07T08:12:56.471 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-07T08:12:56.471 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-07T08:12:56.471 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-07T08:12:56.474 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-07T08:12:56.474 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-07T08:12:56.474 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-07T08:12:56.474 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-07T08:12:56.474 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-07T08:12:56.474 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-07T08:12:56.474 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-07T08:12:56.474 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-07T08:12:56.474 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-07T08:12:56.475 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-07T08:12:56.475 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-07T08:12:56.475 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-07T08:12:56.475 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-07T08:12:56.475 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-07T08:12:56.475 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-07T08:12:56.475 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-07T08:12:56.475 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-07T08:12:56.475 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-07T08:12:56.475 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-07T08:12:56.475 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-07T08:12:56.475 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-07T08:12:56.475 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-07T08:12:56.475 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-07T08:12:56.475 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-07T08:12:56.476 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-07T08:12:56.476 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "restful" 2024-09-07T08:12:56.476 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout ], 2024-09-07T08:12:56.476 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-07T08:12:56.476 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-07T08:12:56.476 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-07T08:12:56.476 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-07T08:12:56.476 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "modified": "2024-09-07T08:12:40.489437+0000", 2024-09-07T08:12:56.476 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-07T08:12:56.476 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-07T08:12:56.476 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-07T08:12:56.476 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout } 2024-09-07T08:12:56.476 INFO:teuthology.orchestra.run.smithi018.stdout:mgr is available 2024-09-07T08:12:56.784 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:56 smithi018 ceph-mon[30322]: mgrmap e4: a(active, since 2s) 2024-09-07T08:12:56.784 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:56 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/4010187246' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-07T08:12:57.696 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:57 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/512911233' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-09-07T08:12:57.696 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:57 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/512911233' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-07T08:12:57.700 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout 2024-09-07T08:12:57.700 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout [global] 2024-09-07T08:12:57.700 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout fsid = d3fad026-6cf0-11ef-bcea-c7b262605968 2024-09-07T08:12:57.700 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-07T08:12:57.700 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-07T08:12:57.701 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-07T08:12:57.701 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-07T08:12:57.701 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout 2024-09-07T08:12:57.701 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-07T08:12:57.701 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-07T08:12:57.701 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout 2024-09-07T08:12:57.701 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout [osd] 2024-09-07T08:12:57.701 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-07T08:12:57.701 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-07T08:12:57.701 INFO:teuthology.orchestra.run.smithi018.stdout:Enabling cephadm module... 2024-09-07T08:12:58.870 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:58 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/2687298091' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-09-07T08:12:58.871 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:58 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: ignoring --setuser ceph since I am not root 2024-09-07T08:12:58.871 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:58 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: ignoring --setgroup ceph since I am not root 2024-09-07T08:12:58.871 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:58 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:12:58.656+0000 7f91bded2040 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-07T08:12:58.871 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:58 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:12:58.714+0000 7f91bded2040 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-07T08:12:58.871 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:58 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:12:58.868+0000 7f91bded2040 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-09-07T08:12:59.136 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:58 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:12:58.936+0000 7f91bded2040 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-07T08:12:59.136 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:59 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:12:59.086+0000 7f91bded2040 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-07T08:12:59.456 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:59 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:12:59.234+0000 7f91bded2040 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-07T08:12:59.770 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:59 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/2687298091' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-07T08:12:59.770 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:12:59 smithi018 ceph-mon[30322]: mgrmap e5: a(active, since 5s) 2024-09-07T08:12:59.770 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:59 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:12:59.557+0000 7f91bded2040 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-07T08:12:59.770 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:59 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:12:59.619+0000 7f91bded2040 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-07T08:13:00.125 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:12:59 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:12:59.813+0000 7f91bded2040 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-07T08:13:00.387 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout { 2024-09-07T08:13:00.387 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-09-07T08:13:00.387 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-07T08:13:00.387 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-09-07T08:13:00.387 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-07T08:13:00.387 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout } 2024-09-07T08:13:00.387 INFO:teuthology.orchestra.run.smithi018.stdout:Waiting for the mgr to restart... 2024-09-07T08:13:00.387 INFO:teuthology.orchestra.run.smithi018.stdout:Waiting for mgr epoch 5... 2024-09-07T08:13:00.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:00 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/581371705' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-09-07T08:13:01.206 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:00 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:00.721+0000 7f91bded2040 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-07T08:13:01.206 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:00 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:00.791+0000 7f91bded2040 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-07T08:13:01.796 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:01 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:01.529+0000 7f91bded2040 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-07T08:13:01.796 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:01 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:01.647+0000 7f91bded2040 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-07T08:13:02.080 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:01 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:01.793+0000 7f91bded2040 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-07T08:13:02.080 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:01 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:01.856+0000 7f91bded2040 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-07T08:13:02.080 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:02 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:02.007+0000 7f91bded2040 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-07T08:13:02.080 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:02 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:02.077+0000 7f91bded2040 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-07T08:13:02.369 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:02 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:02.138+0000 7f91bded2040 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-07T08:13:02.369 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:02 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:02.300+0000 7f91bded2040 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-07T08:13:02.369 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:02 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:02.366+0000 7f91bded2040 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-07T08:13:02.644 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:02 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:02.435+0000 7f91bded2040 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-07T08:13:02.644 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:02 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:02.519+0000 7f91bded2040 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-07T08:13:02.644 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:02 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:02.580+0000 7f91bded2040 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-07T08:13:02.644 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:02 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:02.641+0000 7f91bded2040 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-07T08:13:03.706 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:03 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:03.446+0000 7f91bded2040 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-07T08:13:03.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:03 smithi018 ceph-mon[30322]: Active manager daemon a restarted 2024-09-07T08:13:03.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:03 smithi018 ceph-mon[30322]: Activating manager daemon a 2024-09-07T08:13:03.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:03 smithi018 ceph-mon[30322]: osdmap e2: 0 total, 0 up, 0 in 2024-09-07T08:13:03.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:03 smithi018 ceph-mon[30322]: mgrmap e6: a(active, starting, since 0.00309895s) 2024-09-07T08:13:03.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:03 smithi018 ceph-mon[30322]: from='mgr.14118 172.21.15.18:0/3195317720' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-07T08:13:03.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:03 smithi018 ceph-mon[30322]: from='mgr.14118 172.21.15.18:0/3195317720' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-09-07T08:13:03.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:03 smithi018 ceph-mon[30322]: from='mgr.14118 172.21.15.18:0/3195317720' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-07T08:13:03.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:03 smithi018 ceph-mon[30322]: from='mgr.14118 172.21.15.18:0/3195317720' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-07T08:13:03.707 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:03 smithi018 ceph-mon[30322]: from='mgr.14118 172.21.15.18:0/3195317720' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-07T08:13:03.707 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:03 smithi018 ceph-mon[30322]: Manager daemon a is now available 2024-09-07T08:13:03.707 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:03 smithi018 ceph-mon[30322]: from='mgr.14118 172.21.15.18:0/3195317720' entity='mgr.a' 2024-09-07T08:13:03.707 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:03 smithi018 ceph-mon[30322]: from='mgr.14118 172.21.15.18:0/3195317720' entity='mgr.a' 2024-09-07T08:13:03.707 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:03 smithi018 ceph-mon[30322]: from='mgr.14118 172.21.15.18:0/3195317720' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:13:03.707 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:03 smithi018 ceph-mon[30322]: from='mgr.14118 172.21.15.18:0/3195317720' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:13:03.707 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:03 smithi018 ceph-mon[30322]: from='mgr.14118 172.21.15.18:0/3195317720' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-09-07T08:13:03.707 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:03 smithi018 ceph-mon[30322]: from='mgr.14118 172.21.15.18:0/3195317720' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-09-07T08:13:04.740 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:04 smithi018 ceph-mon[30322]: Found migration_current of "None". Setting to last migration. 2024-09-07T08:13:04.740 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:04 smithi018 ceph-mon[30322]: from='mgr.14118 172.21.15.18:0/3195317720' entity='mgr.a' 2024-09-07T08:13:04.740 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:04 smithi018 ceph-mon[30322]: from='mgr.14118 172.21.15.18:0/3195317720' entity='mgr.a' 2024-09-07T08:13:04.740 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:04 smithi018 ceph-mon[30322]: mgrmap e7: a(active, since 1.00479s) 2024-09-07T08:13:04.968 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout { 2024-09-07T08:13:04.968 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-09-07T08:13:04.968 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-07T08:13:04.968 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout } 2024-09-07T08:13:04.969 INFO:teuthology.orchestra.run.smithi018.stdout:mgr epoch 5 is available 2024-09-07T08:13:04.969 INFO:teuthology.orchestra.run.smithi018.stdout:Setting orchestrator backend to cephadm... 2024-09-07T08:13:05.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:05 smithi018 ceph-mon[30322]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-07T08:13:05.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:05 smithi018 ceph-mon[30322]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-07T08:13:05.956 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:05 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:05.671+0000 7f9125bb3640 -1 log_channel(cephadm) log [ERR] : [07/Sep/2024:08:13:05] ENGINE Error in HTTPServer.serve 2024-09-07T08:13:05.956 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:05 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: Traceback (most recent call last): 2024-09-07T08:13:05.957 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:05 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-07T08:13:05.957 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:05 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: self._connections.run(self.expiration_interval) 2024-09-07T08:13:05.957 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:05 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-07T08:13:05.957 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:05 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: self._run(expiration_interval) 2024-09-07T08:13:05.957 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:05 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-07T08:13:05.957 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:05 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: new_conn = self._from_server_socket(self.server.socket) 2024-09-07T08:13:05.957 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:05 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-07T08:13:05.957 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:05 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-07T08:13:05.957 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:05 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-07T08:13:05.957 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:05 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: s = self.context.wrap_socket( 2024-09-07T08:13:05.957 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:05 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-07T08:13:05.957 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:05 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: return self.sslsocket_class._create( 2024-09-07T08:13:05.957 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:05 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-07T08:13:05.958 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:05 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: self.do_handshake() 2024-09-07T08:13:05.958 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:05 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-07T08:13:05.958 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:05 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: self._sslobj.do_handshake() 2024-09-07T08:13:05.958 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:05 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-07T08:13:05.958 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:05 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:06.702 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:06 smithi018 ceph-mon[30322]: [07/Sep/2024:08:13:05] ENGINE Bus STARTING 2024-09-07T08:13:06.702 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:06 smithi018 ceph-mon[30322]: mgrmap e8: a(active, since 2s) 2024-09-07T08:13:06.702 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:06 smithi018 ceph-mon[30322]: [07/Sep/2024:08:13:05] ENGINE Serving on http://172.21.15.18:8765 2024-09-07T08:13:06.702 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:06 smithi018 ceph-mon[30322]: from='mgr.14118 172.21.15.18:0/3195317720' entity='mgr.a' 2024-09-07T08:13:06.702 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:06 smithi018 ceph-mon[30322]: from='mgr.14118 172.21.15.18:0/3195317720' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:13:06.702 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:06 smithi018 ceph-mon[30322]: from='mgr.14118 172.21.15.18:0/3195317720' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:13:07.231 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout value unchanged 2024-09-07T08:13:07.231 INFO:teuthology.orchestra.run.smithi018.stdout:Generating ssh key... 2024-09-07T08:13:07.664 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:07 smithi018 ceph-mon[30322]: from='client.14130 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:13:07.664 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:07 smithi018 ceph-mon[30322]: [07/Sep/2024:08:13:05] ENGINE Serving on https://172.21.15.18:7150 2024-09-07T08:13:07.665 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:07 smithi018 ceph-mon[30322]: [07/Sep/2024:08:13:05] ENGINE Bus STARTED 2024-09-07T08:13:07.665 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:07 smithi018 ceph-mon[30322]: [07/Sep/2024:08:13:05] ENGINE Error in HTTPServer.serve 2024-09-07T08:13:07.665 INFO:journalctl@ceph.mon.a.smithi018.stdout: Traceback (most recent call last): 2024-09-07T08:13:07.665 INFO:journalctl@ceph.mon.a.smithi018.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-07T08:13:07.665 INFO:journalctl@ceph.mon.a.smithi018.stdout: self._connections.run(self.expiration_interval) 2024-09-07T08:13:07.665 INFO:journalctl@ceph.mon.a.smithi018.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-07T08:13:07.665 INFO:journalctl@ceph.mon.a.smithi018.stdout: self._run(expiration_interval) 2024-09-07T08:13:07.665 INFO:journalctl@ceph.mon.a.smithi018.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-07T08:13:07.665 INFO:journalctl@ceph.mon.a.smithi018.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-07T08:13:07.665 INFO:journalctl@ceph.mon.a.smithi018.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-07T08:13:07.665 INFO:journalctl@ceph.mon.a.smithi018.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-07T08:13:07.665 INFO:journalctl@ceph.mon.a.smithi018.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-07T08:13:07.666 INFO:journalctl@ceph.mon.a.smithi018.stdout: s = self.context.wrap_socket( 2024-09-07T08:13:07.666 INFO:journalctl@ceph.mon.a.smithi018.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-07T08:13:07.666 INFO:journalctl@ceph.mon.a.smithi018.stdout: return self.sslsocket_class._create( 2024-09-07T08:13:07.666 INFO:journalctl@ceph.mon.a.smithi018.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-07T08:13:07.666 INFO:journalctl@ceph.mon.a.smithi018.stdout: self.do_handshake() 2024-09-07T08:13:07.666 INFO:journalctl@ceph.mon.a.smithi018.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-07T08:13:07.666 INFO:journalctl@ceph.mon.a.smithi018.stdout: self._sslobj.do_handshake() 2024-09-07T08:13:07.666 INFO:journalctl@ceph.mon.a.smithi018.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-07T08:13:08.375 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:08 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: Generating public/private rsa key pair. 2024-09-07T08:13:08.376 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:08 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: Your identification has been saved in /tmp/tmpg27u1v3p/key 2024-09-07T08:13:08.376 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:08 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: Your public key has been saved in /tmp/tmpg27u1v3p/key.pub 2024-09-07T08:13:08.376 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:08 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: The key fingerprint is: 2024-09-07T08:13:08.376 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:08 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: SHA256:OmgKQbsCb07I76Mz6MmBvtGf+uLY9TJiEqaitVwOg9s ceph-d3fad026-6cf0-11ef-bcea-c7b262605968 2024-09-07T08:13:08.376 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:08 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: The key's randomart image is: 2024-09-07T08:13:08.376 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:08 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: +---[RSA 3072]----+ 2024-09-07T08:13:08.376 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:08 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: | | 2024-09-07T08:13:08.376 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:08 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: | | 2024-09-07T08:13:08.376 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:08 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: | . | 2024-09-07T08:13:08.376 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:08 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: |. . | 2024-09-07T08:13:08.377 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:08 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: |o. S | 2024-09-07T08:13:08.377 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:08 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: |+Bo . . | 2024-09-07T08:13:08.377 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:08 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: |X=O.+.o | 2024-09-07T08:13:08.377 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:08 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: |B&B&ooo. | 2024-09-07T08:13:08.377 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:08 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: |*OE*B+o. | 2024-09-07T08:13:08.377 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:08 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: +----[SHA256]-----+ 2024-09-07T08:13:08.660 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:08 smithi018 ceph-mon[30322]: from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:13:08.660 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:08 smithi018 ceph-mon[30322]: from='mgr.14118 172.21.15.18:0/3195317720' entity='mgr.a' 2024-09-07T08:13:08.660 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:08 smithi018 ceph-mon[30322]: from='mgr.14118 172.21.15.18:0/3195317720' entity='mgr.a' 2024-09-07T08:13:09.824 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:09 smithi018 ceph-mon[30322]: from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:13:09.825 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:09 smithi018 ceph-mon[30322]: Generating ssh key... 2024-09-07T08:13:09.826 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDmyikg8vOynGVteow/oTAIujfJZ+4CPxXtL1JQ/G5dPnJs5JxL3u/imXUpt3QLRwJHj9mKKGJPSEGW7y7EQaVZ7063D6+e5FYtdeqaRiTVtF20N0gR0GcSaiU47If8BFVaKnx3Oa/GoqEvYcuaAoN8HRbjoZiIycowLs0brtcGKuCrt5QtXzvgWBKjFGvAjfbB5EtZ2aGE7maM60uPqX0fXc377rrkUmCgCSfduFVvgZvYdY1trTUBQgpKnL9wfaMOT+qSdww4bfbTjiDGljfTxYhLzY7dmR94km81I97vhVbhJUINSsn61hSIBq8ShNDHmj/Gwc//9vL6iYODUIKrAc7IWtF+eAd1UqOi8OIsjQVn40DYFw7Gu3yRJTySm9x2aKin5qiDY+htSZPDClqGBLvRDUjdSWwWE0xdxZ/eysaxYGQIzk1S5psluO15FylO3s+NgzYXRXfGvqAYESwco/f6l0U5jvYnW106INdzYS+AV2i0LYeIkGO07btTsxU= ceph-d3fad026-6cf0-11ef-bcea-c7b262605968 2024-09-07T08:13:09.827 INFO:teuthology.orchestra.run.smithi018.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-09-07T08:13:09.827 INFO:teuthology.orchestra.run.smithi018.stdout:Adding key to root@localhost authorized_keys... 2024-09-07T08:13:09.827 INFO:teuthology.orchestra.run.smithi018.stdout:Adding host smithi018... 2024-09-07T08:13:10.759 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:10 smithi018 ceph-mon[30322]: from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:13:11.762 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:11 smithi018 ceph-mon[30322]: from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi018", "addr": "172.21.15.18", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:13:12.668 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:12 smithi018 ceph-mon[30322]: Deploying cephadm binary to smithi018 2024-09-07T08:13:14.301 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout Added host 'smithi018' with addr '172.21.15.18' 2024-09-07T08:13:14.301 INFO:teuthology.orchestra.run.smithi018.stdout:Deploying unmanaged mon service... 2024-09-07T08:13:14.888 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:14 smithi018 ceph-mon[30322]: from='mgr.14118 172.21.15.18:0/3195317720' entity='mgr.a' 2024-09-07T08:13:14.888 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:14 smithi018 ceph-mon[30322]: Added host smithi018 2024-09-07T08:13:14.889 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:14 smithi018 ceph-mon[30322]: from='mgr.14118 172.21.15.18:0/3195317720' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:13:15.510 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-09-07T08:13:15.510 INFO:teuthology.orchestra.run.smithi018.stdout:Deploying unmanaged mgr service... 2024-09-07T08:13:16.121 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:15 smithi018 ceph-mon[30322]: from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:13:16.121 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:15 smithi018 ceph-mon[30322]: Saving service mon spec with placement count:5 2024-09-07T08:13:16.121 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:15 smithi018 ceph-mon[30322]: from='mgr.14118 172.21.15.18:0/3195317720' entity='mgr.a' 2024-09-07T08:13:17.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:17 smithi018 ceph-mon[30322]: from='mgr.14118 172.21.15.18:0/3195317720' entity='mgr.a' 2024-09-07T08:13:17.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:17 smithi018 ceph-mon[30322]: from='mgr.14118 172.21.15.18:0/3195317720' entity='mgr.a' 2024-09-07T08:13:17.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:17 smithi018 ceph-mon[30322]: from='mgr.14118 172.21.15.18:0/3195317720' entity='mgr.a' 2024-09-07T08:13:18.308 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-09-07T08:13:18.557 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:18 smithi018 ceph-mon[30322]: from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:13:18.558 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:18 smithi018 ceph-mon[30322]: Saving service mgr spec with placement count:2 2024-09-07T08:13:18.558 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:18 smithi018 ceph-mon[30322]: from='mgr.14118 172.21.15.18:0/3195317720' entity='mgr.a' 2024-09-07T08:13:18.558 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:18 smithi018 ceph-mon[30322]: from='mgr.14118 172.21.15.18:0/3195317720' entity='mgr.a' 2024-09-07T08:13:20.169 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:19 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/2381401746' entity='client.admin' 2024-09-07T08:13:21.253 INFO:teuthology.orchestra.run.smithi018.stdout:Enabling the dashboard module... 2024-09-07T08:13:21.653 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:21 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/4125036352' entity='client.admin' 2024-09-07T08:13:22.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:22 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/3790219518' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-09-07T08:13:22.706 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:22 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: ignoring --setuser ceph since I am not root 2024-09-07T08:13:22.706 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:22 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: ignoring --setgroup ceph since I am not root 2024-09-07T08:13:22.706 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:22 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:22.597+0000 7fc41a386040 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-07T08:13:22.706 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:22 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:22.655+0000 7fc41a386040 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-07T08:13:23.140 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:22 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:22.812+0000 7fc41a386040 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-09-07T08:13:23.141 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:22 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:22.880+0000 7fc41a386040 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-07T08:13:23.141 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:23 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:23.033+0000 7fc41a386040 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-07T08:13:23.443 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:23 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:23.179+0000 7fc41a386040 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-07T08:13:23.703 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:23 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/3790219518' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-09-07T08:13:23.703 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:23 smithi018 ceph-mon[30322]: mgrmap e9: a(active, since 18s) 2024-09-07T08:13:23.703 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:23 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:23.505+0000 7fc41a386040 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-07T08:13:23.703 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:23 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:23.568+0000 7fc41a386040 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-07T08:13:23.956 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:23 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:23.760+0000 7fc41a386040 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-07T08:13:24.241 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout { 2024-09-07T08:13:24.241 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-09-07T08:13:24.241 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-07T08:13:24.241 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-09-07T08:13:24.241 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-07T08:13:24.241 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout } 2024-09-07T08:13:24.241 INFO:teuthology.orchestra.run.smithi018.stdout:Waiting for the mgr to restart... 2024-09-07T08:13:24.241 INFO:teuthology.orchestra.run.smithi018.stdout:Waiting for mgr epoch 9... 2024-09-07T08:13:24.669 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:24 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/1371892441' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-09-07T08:13:24.956 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:24 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:24.668+0000 7fc41a386040 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-07T08:13:24.956 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:24 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:24.736+0000 7fc41a386040 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-07T08:13:25.730 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:25 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:25.465+0000 7fc41a386040 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-07T08:13:25.730 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:25 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:25.583+0000 7fc41a386040 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-07T08:13:26.012 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:25 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:25.728+0000 7fc41a386040 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-07T08:13:26.013 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:25 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:25.791+0000 7fc41a386040 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-07T08:13:26.013 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:25 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:25.941+0000 7fc41a386040 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-07T08:13:26.013 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:26 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:26.011+0000 7fc41a386040 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-07T08:13:26.301 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:26 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:26.072+0000 7fc41a386040 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-07T08:13:26.301 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:26 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:26.233+0000 7fc41a386040 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-07T08:13:26.301 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:26 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:26.299+0000 7fc41a386040 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-07T08:13:26.575 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:26 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:26.367+0000 7fc41a386040 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-07T08:13:26.575 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:26 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:26.452+0000 7fc41a386040 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-07T08:13:26.575 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:26 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:26.513+0000 7fc41a386040 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-07T08:13:26.575 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:26 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:26.573+0000 7fc41a386040 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-07T08:13:27.639 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:27 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:27.376+0000 7fc41a386040 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-07T08:13:27.639 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:27 smithi018 ceph-mon[30322]: Active manager daemon a restarted 2024-09-07T08:13:27.639 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:27 smithi018 ceph-mon[30322]: Activating manager daemon a 2024-09-07T08:13:27.639 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:27 smithi018 ceph-mon[30322]: osdmap e3: 0 total, 0 up, 0 in 2024-09-07T08:13:27.639 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:27 smithi018 ceph-mon[30322]: mgrmap e10: a(active, starting, since 0.00315079s) 2024-09-07T08:13:27.639 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:27 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-07T08:13:27.639 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:27 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-09-07T08:13:27.640 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:27 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-07T08:13:27.640 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:27 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-07T08:13:27.640 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:27 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-07T08:13:27.640 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:27 smithi018 ceph-mon[30322]: Manager daemon a is now available 2024-09-07T08:13:27.640 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:27 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:13:27.640 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:27 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-09-07T08:13:27.640 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:27 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-09-07T08:13:29.100 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout { 2024-09-07T08:13:29.100 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-09-07T08:13:29.100 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-07T08:13:29.101 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout } 2024-09-07T08:13:29.101 INFO:teuthology.orchestra.run.smithi018.stdout:mgr epoch 9 is available 2024-09-07T08:13:29.101 INFO:teuthology.orchestra.run.smithi018.stdout:Generating a dashboard self-signed certificate... 2024-09-07T08:13:29.500 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:29 smithi018 ceph-mon[30322]: from='client.14154 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-07T08:13:29.500 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:29 smithi018 ceph-mon[30322]: mgrmap e11: a(active, since 1.00558s) 2024-09-07T08:13:29.500 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:29 smithi018 ceph-mon[30322]: from='client.14154 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-07T08:13:29.501 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:29 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:29.436+0000 7fc38601c640 -1 log_channel(cephadm) log [ERR] : [07/Sep/2024:08:13:29] ENGINE Error in HTTPServer.serve 2024-09-07T08:13:29.501 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:29 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: Traceback (most recent call last): 2024-09-07T08:13:29.501 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:29 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-07T08:13:29.501 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:29 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: self._connections.run(self.expiration_interval) 2024-09-07T08:13:29.501 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:29 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-07T08:13:29.501 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:29 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: self._run(expiration_interval) 2024-09-07T08:13:29.501 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:29 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-07T08:13:29.501 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:29 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: new_conn = self._from_server_socket(self.server.socket) 2024-09-07T08:13:29.501 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:29 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-07T08:13:29.501 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:29 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-07T08:13:29.501 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:29 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-07T08:13:29.501 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:29 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: s = self.context.wrap_socket( 2024-09-07T08:13:29.502 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:29 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-07T08:13:29.502 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:29 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: return self.sslsocket_class._create( 2024-09-07T08:13:29.502 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:29 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-07T08:13:29.502 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:29 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: self.do_handshake() 2024-09-07T08:13:29.502 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:29 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-07T08:13:29.502 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:29 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: self._sslobj.do_handshake() 2024-09-07T08:13:29.502 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:29 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-07T08:13:29.502 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:13:29 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:13:30.306 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout Self-signed certificate created 2024-09-07T08:13:30.306 INFO:teuthology.orchestra.run.smithi018.stdout:Creating initial admin user... 2024-09-07T08:13:30.542 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:30 smithi018 ceph-mon[30322]: [07/Sep/2024:08:13:29] ENGINE Bus STARTING 2024-09-07T08:13:30.543 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:30 smithi018 ceph-mon[30322]: mgrmap e12: a(active, since 2s) 2024-09-07T08:13:30.543 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:30 smithi018 ceph-mon[30322]: [07/Sep/2024:08:13:29] ENGINE Serving on https://172.21.15.18:7150 2024-09-07T08:13:30.543 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:30 smithi018 ceph-mon[30322]: [07/Sep/2024:08:13:29] ENGINE Error in HTTPServer.serve 2024-09-07T08:13:30.543 INFO:journalctl@ceph.mon.a.smithi018.stdout: Traceback (most recent call last): 2024-09-07T08:13:30.543 INFO:journalctl@ceph.mon.a.smithi018.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-07T08:13:30.543 INFO:journalctl@ceph.mon.a.smithi018.stdout: self._connections.run(self.expiration_interval) 2024-09-07T08:13:30.543 INFO:journalctl@ceph.mon.a.smithi018.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-07T08:13:30.543 INFO:journalctl@ceph.mon.a.smithi018.stdout: self._run(expiration_interval) 2024-09-07T08:13:30.543 INFO:journalctl@ceph.mon.a.smithi018.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-07T08:13:30.543 INFO:journalctl@ceph.mon.a.smithi018.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-07T08:13:30.543 INFO:journalctl@ceph.mon.a.smithi018.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-07T08:13:30.543 INFO:journalctl@ceph.mon.a.smithi018.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-07T08:13:30.543 INFO:journalctl@ceph.mon.a.smithi018.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-07T08:13:30.544 INFO:journalctl@ceph.mon.a.smithi018.stdout: s = self.context.wrap_socket( 2024-09-07T08:13:30.544 INFO:journalctl@ceph.mon.a.smithi018.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-07T08:13:30.544 INFO:journalctl@ceph.mon.a.smithi018.stdout: return self.sslsocket_class._create( 2024-09-07T08:13:30.544 INFO:journalctl@ceph.mon.a.smithi018.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-07T08:13:30.544 INFO:journalctl@ceph.mon.a.smithi018.stdout: self.do_handshake() 2024-09-07T08:13:30.544 INFO:journalctl@ceph.mon.a.smithi018.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-07T08:13:30.544 INFO:journalctl@ceph.mon.a.smithi018.stdout: self._sslobj.do_handshake() 2024-09-07T08:13:30.544 INFO:journalctl@ceph.mon.a.smithi018.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-07T08:13:30.544 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:30 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:13:30.544 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:30 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:13:30.544 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:30 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:13:31.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:31 smithi018 ceph-mon[30322]: [07/Sep/2024:08:13:29] ENGINE Serving on http://172.21.15.18:8765 2024-09-07T08:13:31.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:31 smithi018 ceph-mon[30322]: [07/Sep/2024:08:13:29] ENGINE Bus STARTED 2024-09-07T08:13:31.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:31 smithi018 ceph-mon[30322]: from='client.14162 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:13:31.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:31 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:13:31.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:31 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:13:31.774 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$3nWVzVBAZzwI1wJgyhWcne9ZSORWyhjl7SMm9oh9yR1a/3QqlmGxG", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1725696811, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-09-07T08:13:31.774 INFO:teuthology.orchestra.run.smithi018.stdout:Fetching dashboard port number... 2024-09-07T08:13:32.517 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:32 smithi018 ceph-mon[30322]: 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-07T08:13:33.665 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:33 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/1192081437' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-09-07T08:13:33.668 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout 8443 2024-09-07T08:13:33.679 INFO:teuthology.orchestra.run.smithi018.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-07T08:13:33.679 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stdout disabled 2024-09-07T08:13:33.687 INFO:teuthology.orchestra.run.smithi018.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-07T08:13:33.687 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stdout inactive 2024-09-07T08:13:33.687 INFO:teuthology.orchestra.run.smithi018.stdout:firewalld.service is not enabled 2024-09-07T08:13:33.687 INFO:teuthology.orchestra.run.smithi018.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-09-07T08:13:33.689 INFO:teuthology.orchestra.run.smithi018.stdout:Ceph Dashboard is now available at: 2024-09-07T08:13:33.689 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:13:33.689 INFO:teuthology.orchestra.run.smithi018.stdout: URL: https://smithi018:8443/ 2024-09-07T08:13:33.689 INFO:teuthology.orchestra.run.smithi018.stdout: User: admin 2024-09-07T08:13:33.689 INFO:teuthology.orchestra.run.smithi018.stdout: Password: pmciwppz5e 2024-09-07T08:13:33.689 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:13:33.690 INFO:teuthology.orchestra.run.smithi018.stdout:Saving cluster configuration to /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config directory 2024-09-07T08:13:33.690 INFO:teuthology.orchestra.run.smithi018.stdout:Enabling autotune for osd_memory_target 2024-09-07T08:13:34.554 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:34 smithi018 ceph-mon[30322]: mgrmap e13: a(active, since 6s) 2024-09-07T08:13:36.048 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-09-07T08:13:36.048 INFO:teuthology.orchestra.run.smithi018.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-09-07T08:13:36.048 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:13:36.048 INFO:teuthology.orchestra.run.smithi018.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-09-07T08:13:36.048 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:13:36.048 INFO:teuthology.orchestra.run.smithi018.stdout:Or, if you are only running a single cluster on this host: 2024-09-07T08:13:36.048 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:13:36.048 INFO:teuthology.orchestra.run.smithi018.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-09-07T08:13:36.048 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:13:36.049 INFO:teuthology.orchestra.run.smithi018.stdout:Please consider enabling telemetry to help improve Ceph: 2024-09-07T08:13:36.049 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:13:36.049 INFO:teuthology.orchestra.run.smithi018.stdout: ceph telemetry on 2024-09-07T08:13:36.049 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:13:36.049 INFO:teuthology.orchestra.run.smithi018.stdout:For more information see: 2024-09-07T08:13:36.049 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:13:36.049 INFO:teuthology.orchestra.run.smithi018.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-09-07T08:13:36.049 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:13:36.049 INFO:teuthology.orchestra.run.smithi018.stdout:Bootstrap complete. 2024-09-07T08:13:36.085 INFO:tasks.cephadm:Fetching config... 2024-09-07T08:13:36.086 DEBUG:teuthology.orchestra.run.smithi018:> set -ex 2024-09-07T08:13:36.086 DEBUG:teuthology.orchestra.run.smithi018:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-09-07T08:13:36.102 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-09-07T08:13:36.103 DEBUG:teuthology.orchestra.run.smithi018:> set -ex 2024-09-07T08:13:36.103 DEBUG:teuthology.orchestra.run.smithi018:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-09-07T08:13:36.159 INFO:tasks.cephadm:Fetching mon keyring... 2024-09-07T08:13:36.159 DEBUG:teuthology.orchestra.run.smithi018:> set -ex 2024-09-07T08:13:36.159 DEBUG:teuthology.orchestra.run.smithi018:> sudo dd if=/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/keyring of=/dev/stdout 2024-09-07T08:13:36.225 INFO:tasks.cephadm:Fetching pub ssh key... 2024-09-07T08:13:36.228 DEBUG:teuthology.orchestra.run.smithi018:> set -ex 2024-09-07T08:13:36.228 DEBUG:teuthology.orchestra.run.smithi018:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-09-07T08:13:36.280 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-09-07T08:13:36.281 DEBUG:teuthology.orchestra.run.smithi018:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDmyikg8vOynGVteow/oTAIujfJZ+4CPxXtL1JQ/G5dPnJs5JxL3u/imXUpt3QLRwJHj9mKKGJPSEGW7y7EQaVZ7063D6+e5FYtdeqaRiTVtF20N0gR0GcSaiU47If8BFVaKnx3Oa/GoqEvYcuaAoN8HRbjoZiIycowLs0brtcGKuCrt5QtXzvgWBKjFGvAjfbB5EtZ2aGE7maM60uPqX0fXc377rrkUmCgCSfduFVvgZvYdY1trTUBQgpKnL9wfaMOT+qSdww4bfbTjiDGljfTxYhLzY7dmR94km81I97vhVbhJUINSsn61hSIBq8ShNDHmj/Gwc//9vL6iYODUIKrAc7IWtF+eAd1UqOi8OIsjQVn40DYFw7Gu3yRJTySm9x2aKin5qiDY+htSZPDClqGBLvRDUjdSWwWE0xdxZ/eysaxYGQIzk1S5psluO15FylO3s+NgzYXRXfGvqAYESwco/f6l0U5jvYnW106INdzYS+AV2i0LYeIkGO07btTsxU= ceph-d3fad026-6cf0-11ef-bcea-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-07T08:13:36.354 INFO:teuthology.orchestra.run.smithi018.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDmyikg8vOynGVteow/oTAIujfJZ+4CPxXtL1JQ/G5dPnJs5JxL3u/imXUpt3QLRwJHj9mKKGJPSEGW7y7EQaVZ7063D6+e5FYtdeqaRiTVtF20N0gR0GcSaiU47If8BFVaKnx3Oa/GoqEvYcuaAoN8HRbjoZiIycowLs0brtcGKuCrt5QtXzvgWBKjFGvAjfbB5EtZ2aGE7maM60uPqX0fXc377rrkUmCgCSfduFVvgZvYdY1trTUBQgpKnL9wfaMOT+qSdww4bfbTjiDGljfTxYhLzY7dmR94km81I97vhVbhJUINSsn61hSIBq8ShNDHmj/Gwc//9vL6iYODUIKrAc7IWtF+eAd1UqOi8OIsjQVn40DYFw7Gu3yRJTySm9x2aKin5qiDY+htSZPDClqGBLvRDUjdSWwWE0xdxZ/eysaxYGQIzk1S5psluO15FylO3s+NgzYXRXfGvqAYESwco/f6l0U5jvYnW106INdzYS+AV2i0LYeIkGO07btTsxU= ceph-d3fad026-6cf0-11ef-bcea-c7b262605968 2024-09-07T08:13:36.365 DEBUG:teuthology.orchestra.run.smithi090:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDmyikg8vOynGVteow/oTAIujfJZ+4CPxXtL1JQ/G5dPnJs5JxL3u/imXUpt3QLRwJHj9mKKGJPSEGW7y7EQaVZ7063D6+e5FYtdeqaRiTVtF20N0gR0GcSaiU47If8BFVaKnx3Oa/GoqEvYcuaAoN8HRbjoZiIycowLs0brtcGKuCrt5QtXzvgWBKjFGvAjfbB5EtZ2aGE7maM60uPqX0fXc377rrkUmCgCSfduFVvgZvYdY1trTUBQgpKnL9wfaMOT+qSdww4bfbTjiDGljfTxYhLzY7dmR94km81I97vhVbhJUINSsn61hSIBq8ShNDHmj/Gwc//9vL6iYODUIKrAc7IWtF+eAd1UqOi8OIsjQVn40DYFw7Gu3yRJTySm9x2aKin5qiDY+htSZPDClqGBLvRDUjdSWwWE0xdxZ/eysaxYGQIzk1S5psluO15FylO3s+NgzYXRXfGvqAYESwco/f6l0U5jvYnW106INdzYS+AV2i0LYeIkGO07btTsxU= ceph-d3fad026-6cf0-11ef-bcea-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-07T08:13:36.406 INFO:teuthology.orchestra.run.smithi090.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDmyikg8vOynGVteow/oTAIujfJZ+4CPxXtL1JQ/G5dPnJs5JxL3u/imXUpt3QLRwJHj9mKKGJPSEGW7y7EQaVZ7063D6+e5FYtdeqaRiTVtF20N0gR0GcSaiU47If8BFVaKnx3Oa/GoqEvYcuaAoN8HRbjoZiIycowLs0brtcGKuCrt5QtXzvgWBKjFGvAjfbB5EtZ2aGE7maM60uPqX0fXc377rrkUmCgCSfduFVvgZvYdY1trTUBQgpKnL9wfaMOT+qSdww4bfbTjiDGljfTxYhLzY7dmR94km81I97vhVbhJUINSsn61hSIBq8ShNDHmj/Gwc//9vL6iYODUIKrAc7IWtF+eAd1UqOi8OIsjQVn40DYFw7Gu3yRJTySm9x2aKin5qiDY+htSZPDClqGBLvRDUjdSWwWE0xdxZ/eysaxYGQIzk1S5psluO15FylO3s+NgzYXRXfGvqAYESwco/f6l0U5jvYnW106INdzYS+AV2i0LYeIkGO07btTsxU= ceph-d3fad026-6cf0-11ef-bcea-c7b262605968 2024-09-07T08:13:36.419 DEBUG:teuthology.orchestra.run.smithi191:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDmyikg8vOynGVteow/oTAIujfJZ+4CPxXtL1JQ/G5dPnJs5JxL3u/imXUpt3QLRwJHj9mKKGJPSEGW7y7EQaVZ7063D6+e5FYtdeqaRiTVtF20N0gR0GcSaiU47If8BFVaKnx3Oa/GoqEvYcuaAoN8HRbjoZiIycowLs0brtcGKuCrt5QtXzvgWBKjFGvAjfbB5EtZ2aGE7maM60uPqX0fXc377rrkUmCgCSfduFVvgZvYdY1trTUBQgpKnL9wfaMOT+qSdww4bfbTjiDGljfTxYhLzY7dmR94km81I97vhVbhJUINSsn61hSIBq8ShNDHmj/Gwc//9vL6iYODUIKrAc7IWtF+eAd1UqOi8OIsjQVn40DYFw7Gu3yRJTySm9x2aKin5qiDY+htSZPDClqGBLvRDUjdSWwWE0xdxZ/eysaxYGQIzk1S5psluO15FylO3s+NgzYXRXfGvqAYESwco/f6l0U5jvYnW106INdzYS+AV2i0LYeIkGO07btTsxU= ceph-d3fad026-6cf0-11ef-bcea-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-07T08:13:36.460 INFO:teuthology.orchestra.run.smithi191.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDmyikg8vOynGVteow/oTAIujfJZ+4CPxXtL1JQ/G5dPnJs5JxL3u/imXUpt3QLRwJHj9mKKGJPSEGW7y7EQaVZ7063D6+e5FYtdeqaRiTVtF20N0gR0GcSaiU47If8BFVaKnx3Oa/GoqEvYcuaAoN8HRbjoZiIycowLs0brtcGKuCrt5QtXzvgWBKjFGvAjfbB5EtZ2aGE7maM60uPqX0fXc377rrkUmCgCSfduFVvgZvYdY1trTUBQgpKnL9wfaMOT+qSdww4bfbTjiDGljfTxYhLzY7dmR94km81I97vhVbhJUINSsn61hSIBq8ShNDHmj/Gwc//9vL6iYODUIKrAc7IWtF+eAd1UqOi8OIsjQVn40DYFw7Gu3yRJTySm9x2aKin5qiDY+htSZPDClqGBLvRDUjdSWwWE0xdxZ/eysaxYGQIzk1S5psluO15FylO3s+NgzYXRXfGvqAYESwco/f6l0U5jvYnW106INdzYS+AV2i0LYeIkGO07btTsxU= ceph-d3fad026-6cf0-11ef-bcea-c7b262605968 2024-09-07T08:13:36.473 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-09-07T08:13:36.606 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:36 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/2537642958' entity='client.admin' 2024-09-07T08:13:36.669 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:13:39.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:39 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:13:39.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:39 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:13:39.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:39 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi018", "name": "osd_memory_target"}]: dispatch 2024-09-07T08:13:39.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:39 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:13:39.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:39 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:13:39.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:39 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:13:39.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:39 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/3146877434' entity='client.admin' 2024-09-07T08:13:39.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:39 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:13:39.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:39 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:13:39.783 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-09-07T08:13:39.783 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-09-07T08:13:40.511 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:13:42.977 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi090 2024-09-07T08:13:42.977 DEBUG:teuthology.orchestra.run.smithi090:> set -ex 2024-09-07T08:13:42.978 DEBUG:teuthology.orchestra.run.smithi090:> dd of=/etc/ceph/ceph.conf 2024-09-07T08:13:42.998 DEBUG:teuthology.orchestra.run.smithi090:> set -ex 2024-09-07T08:13:42.998 DEBUG:teuthology.orchestra.run.smithi090:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-07T08:13:43.055 INFO:tasks.cephadm:Adding host smithi090 to orchestrator... 2024-09-07T08:13:43.056 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph orch host add smithi090 2024-09-07T08:13:43.251 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:13:43.541 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:43 smithi018 ceph-mon[30322]: from='client.14174 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:13:43.542 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:43 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:13:43.542 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:43 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:13:43.542 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:43 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:13:43.542 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:43 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:13:43.542 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:43 smithi018 ceph-mon[30322]: Updating smithi018:/etc/ceph/ceph.conf 2024-09-07T08:13:43.542 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:43 smithi018 ceph-mon[30322]: Updating smithi018:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-07T08:13:43.542 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:43 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:13:43.542 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:43 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:13:43.542 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:43 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:13:44.390 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:44 smithi018 ceph-mon[30322]: Updating smithi018:/etc/ceph/ceph.client.admin.keyring 2024-09-07T08:13:44.390 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:44 smithi018 ceph-mon[30322]: Updating smithi018:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-07T08:13:45.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:45 smithi018 ceph-mon[30322]: from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi090", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:13:46.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:46 smithi018 ceph-mon[30322]: Deploying cephadm binary to smithi090 2024-09-07T08:13:48.030 INFO:teuthology.orchestra.run.smithi018.stdout:Added host 'smithi090' with addr '172.21.15.90' 2024-09-07T08:13:48.611 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:48 smithi018 ceph-mon[30322]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:13:48.611 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:48 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:13:48.612 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:48 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:13:48.612 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:48 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:13:48.632 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph orch host ls --format=json 2024-09-07T08:13:48.824 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:13:49.825 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:49 smithi018 ceph-mon[30322]: Added host smithi090 2024-09-07T08:13:49.826 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:49 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:13:49.826 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:49 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:13:50.477 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:13:50.477 INFO:teuthology.orchestra.run.smithi018.stdout:[{"addr": "172.21.15.18", "hostname": "smithi018", "labels": [], "status": ""}, {"addr": "172.21.15.90", "hostname": "smithi090", "labels": [], "status": ""}] 2024-09-07T08:13:50.773 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:50 smithi018 ceph-mon[30322]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:13:51.046 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi191 2024-09-07T08:13:51.046 DEBUG:teuthology.orchestra.run.smithi191:> set -ex 2024-09-07T08:13:51.047 DEBUG:teuthology.orchestra.run.smithi191:> dd of=/etc/ceph/ceph.conf 2024-09-07T08:13:51.066 DEBUG:teuthology.orchestra.run.smithi191:> set -ex 2024-09-07T08:13:51.066 DEBUG:teuthology.orchestra.run.smithi191:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-07T08:13:51.125 INFO:tasks.cephadm:Adding host smithi191 to orchestrator... 2024-09-07T08:13:51.125 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph orch host add smithi191 2024-09-07T08:13:51.322 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:13:51.626 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:51 smithi018 ceph-mon[30322]: from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-07T08:13:52.651 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:52 smithi018 ceph-mon[30322]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:13:52.651 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:52 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:13:52.651 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:52 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:13:52.651 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:52 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:13:52.651 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:52 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:13:52.651 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:52 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi090", "name": "osd_memory_target"}]: dispatch 2024-09-07T08:13:52.652 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:52 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:13:52.652 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:52 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:13:53.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:53 smithi018 ceph-mon[30322]: Updating smithi090:/etc/ceph/ceph.conf 2024-09-07T08:13:53.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:53 smithi018 ceph-mon[30322]: Updating smithi090:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-07T08:13:53.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:53 smithi018 ceph-mon[30322]: Updating smithi090:/etc/ceph/ceph.client.admin.keyring 2024-09-07T08:13:53.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:53 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:13:53.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:53 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:13:53.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:53 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:13:54.955 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:54 smithi018 ceph-mon[30322]: Updating smithi090:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-07T08:13:54.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:54 smithi018 ceph-mon[30322]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi191", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:13:54.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:54 smithi018 ceph-mon[30322]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:13:55.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:55 smithi018 ceph-mon[30322]: Deploying cephadm binary to smithi191 2024-09-07T08:13:56.455 INFO:teuthology.orchestra.run.smithi018.stdout:Added host 'smithi191' with addr '172.21.15.191' 2024-09-07T08:13:56.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:56 smithi018 ceph-mon[30322]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:13:56.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:56 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:13:56.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:56 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:13:57.033 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph orch host ls --format=json 2024-09-07T08:13:57.226 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:13:57.640 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:57 smithi018 ceph-mon[30322]: Added host smithi191 2024-09-07T08:13:57.641 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:57 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:13:57.641 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:57 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:13:58.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:58 smithi018 ceph-mon[30322]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:13:58.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:13:58 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:13:58.904 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:13:58.905 INFO:teuthology.orchestra.run.smithi018.stdout:[{"addr": "172.21.15.18", "hostname": "smithi018", "labels": [], "status": ""}, {"addr": "172.21.15.90", "hostname": "smithi090", "labels": [], "status": ""}, {"addr": "172.21.15.191", "hostname": "smithi191", "labels": [], "status": ""}] 2024-09-07T08:13:59.507 INFO:tasks.cephadm:Setting crush tunables to default 2024-09-07T08:13:59.507 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph osd crush tunables default 2024-09-07T08:13:59.702 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:14:00.782 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:00 smithi018 ceph-mon[30322]: from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-07T08:14:00.782 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:00 smithi018 ceph-mon[30322]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:00.782 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:00 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:00.782 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:00 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:00.782 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:00 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:00.782 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:00 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:00.782 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:00 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi191", "name": "osd_memory_target"}]: dispatch 2024-09-07T08:14:01.802 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:01 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:01.802 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:01 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:14:01.802 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:01 smithi018 ceph-mon[30322]: Updating smithi191:/etc/ceph/ceph.conf 2024-09-07T08:14:01.802 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:01 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:01.802 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:01 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:01.803 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:01 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:01.803 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:01 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/1165889532' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-09-07T08:14:02.368 INFO:teuthology.orchestra.run.smithi018.stderr:adjusted tunables profile to default 2024-09-07T08:14:02.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:02 smithi018 ceph-mon[30322]: Updating smithi191:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-07T08:14:02.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:02 smithi018 ceph-mon[30322]: Updating smithi191:/etc/ceph/ceph.client.admin.keyring 2024-09-07T08:14:02.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:02 smithi018 ceph-mon[30322]: Updating smithi191:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-07T08:14:02.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:02 smithi018 ceph-mon[30322]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:02.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:02 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/1165889532' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-07T08:14:02.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:02 smithi018 ceph-mon[30322]: osdmap e4: 0 total, 0 up, 0 in 2024-09-07T08:14:03.016 INFO:tasks.cephadm:Adding mon.a on smithi018 2024-09-07T08:14:03.016 INFO:tasks.cephadm:Adding mon.b on smithi090 2024-09-07T08:14:03.016 INFO:tasks.cephadm:Adding mon.c on smithi191 2024-09-07T08:14:03.016 DEBUG:teuthology.orchestra.run.smithi191:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph orch apply mon '3;smithi018:172.21.15.18=a;smithi090:172.21.15.90=b;smithi191:172.21.15.191=c' 2024-09-07T08:14:03.213 INFO:teuthology.orchestra.run.smithi191.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-07T08:14:04.787 INFO:teuthology.orchestra.run.smithi191.stdout:Scheduled mon update... 2024-09-07T08:14:04.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:04 smithi018 ceph-mon[30322]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:05.438 DEBUG:teuthology.orchestra.run.smithi090:mon.b> sudo journalctl -f -n 0 -u ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@mon.b.service 2024-09-07T08:14:05.441 DEBUG:teuthology.orchestra.run.smithi191:mon.c> sudo journalctl -f -n 0 -u ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@mon.c.service 2024-09-07T08:14:05.443 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-07T08:14:05.443 DEBUG:teuthology.orchestra.run.smithi191:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph mon dump -f json 2024-09-07T08:14:06.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:05 smithi018 ceph-mon[30322]: from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi018:172.21.15.18=a;smithi090:172.21.15.90=b;smithi191:172.21.15.191=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:14:06.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:05 smithi018 ceph-mon[30322]: Saving service mon spec with placement smithi018:172.21.15.18=a;smithi090:172.21.15.90=b;smithi191:172.21.15.191=c;count:3 2024-09-07T08:14:06.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:05 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:06.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:05 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:14:06.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:05 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:06.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:05 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:14:06.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:05 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:06.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:05 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-07T08:14:06.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:05 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:06.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:05 smithi018 ceph-mon[30322]: Deploying daemon mon.c on smithi191 2024-09-07T08:14:06.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:05 smithi018 ceph-mon[30322]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:06.455 INFO:teuthology.orchestra.run.smithi191.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-07T08:14:08.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:08 smithi018 ceph-mon[30322]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:09.329 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:14:09.329 INFO:teuthology.orchestra.run.smithi191.stdout:{"epoch":1,"fsid":"d3fad026-6cf0-11ef-bcea-c7b262605968","modified":"2024-09-07T08:12:37.434253Z","created":"2024-09-07T08:12:37.434253Z","min_mon_release":18,"min_mon_release_name":"reef","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"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:3300","nonce":0},{"type":"v1","addr":"172.21.15.18:6789","nonce":0}]},"addr":"172.21.15.18:6789/0","public_addr":"172.21.15.18:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-07T08:14:09.329 INFO:teuthology.orchestra.run.smithi191.stderr:dumped monmap epoch 1 2024-09-07T08:14:09.502 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 podman[33994]: 2024-09-07 08:14:09.479531078 +0000 UTC m=+0.328524117 container start a533fd0d316abce2db5d5148d9701241f84de2fa5ef9a56a182f6171cf94d4d4 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mon-c, org.label-schema.vendor=CentOS, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240731, GIT_CLEAN=True, ceph=True, CEPH_POINT_RELEASE=, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-07T08:14:09.502 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: set uid:gid to 167:167 (ceph:ceph) 2024-09-07T08:14:09.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:09 smithi018 ceph-mon[30322]: from='client.? 172.21.15.191:0/49466191' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-07T08:14:09.872 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: ceph version 18.2.4-812-g03cef208 (03cef208dc8a39e0b8a1806b4763767a2ff62439) reef (stable), process ceph-mon, pid 2 2024-09-07T08:14:09.872 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: pidfile_write: ignore empty --pid-file 2024-09-07T08:14:09.872 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: load: jerasure load: lrc 2024-09-07T08:14:09.873 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: RocksDB version: 7.9.2 2024-09-07T08:14:09.873 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Git sha 0 2024-09-07T08:14:09.873 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Compile date 2024-09-06 19:38:05 2024-09-07T08:14:09.873 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: DB SUMMARY 2024-09-07T08:14:09.873 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: DB Session ID: UCDAQH84Z0Q9U6K76F6E 2024-09-07T08:14:09.873 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: CURRENT file: CURRENT 2024-09-07T08:14:09.873 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: IDENTITY file: IDENTITY 2024-09-07T08:14:09.873 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: MANIFEST file: MANIFEST-000005 size: 59 Bytes 2024-09-07T08:14:09.873 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: SST files in /var/lib/ceph/mon/ceph-c/store.db dir, Total Num: 0, files: 2024-09-07T08:14:09.873 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-c/store.db: 000004.log size: 511 ; 2024-09-07T08:14:09.873 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.error_if_exists: 0 2024-09-07T08:14:09.873 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.create_if_missing: 0 2024-09-07T08:14:09.874 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.paranoid_checks: 1 2024-09-07T08:14:09.874 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.flush_verify_memtable_count: 1 2024-09-07T08:14:09.874 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-07T08:14:09.874 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-07T08:14:09.874 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.env: 0x5578ecee6bc0 2024-09-07T08:14:09.874 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.fs: PosixFileSystem 2024-09-07T08:14:09.874 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.info_log: 0x5578ee9d0be0 2024-09-07T08:14:09.874 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.max_file_opening_threads: 16 2024-09-07T08:14:09.874 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.statistics: (nil) 2024-09-07T08:14:09.874 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.use_fsync: 0 2024-09-07T08:14:09.874 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.max_log_file_size: 0 2024-09-07T08:14:09.874 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-07T08:14:09.875 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.log_file_time_to_roll: 0 2024-09-07T08:14:09.875 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.keep_log_file_num: 1000 2024-09-07T08:14:09.875 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.recycle_log_file_num: 0 2024-09-07T08:14:09.875 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.allow_fallocate: 1 2024-09-07T08:14:09.875 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.allow_mmap_reads: 0 2024-09-07T08:14:09.875 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.allow_mmap_writes: 0 2024-09-07T08:14:09.875 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.use_direct_reads: 0 2024-09-07T08:14:09.875 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-07T08:14:09.875 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.create_missing_column_families: 0 2024-09-07T08:14:09.875 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.db_log_dir: 2024-09-07T08:14:09.875 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.wal_dir: 2024-09-07T08:14:09.875 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.table_cache_numshardbits: 6 2024-09-07T08:14:09.875 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.WAL_ttl_seconds: 0 2024-09-07T08:14:09.876 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.WAL_size_limit_MB: 0 2024-09-07T08:14:09.876 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-07T08:14:09.876 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-07T08:14:09.876 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.is_fd_close_on_exec: 1 2024-09-07T08:14:09.876 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.advise_random_on_open: 1 2024-09-07T08:14:09.876 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.db_write_buffer_size: 0 2024-09-07T08:14:09.876 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.write_buffer_manager: 0x5578ee9de320 2024-09-07T08:14:09.876 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-07T08:14:09.876 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-07T08:14:09.876 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.use_adaptive_mutex: 0 2024-09-07T08:14:09.876 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.rate_limiter: (nil) 2024-09-07T08:14:09.877 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-07T08:14:09.877 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.wal_recovery_mode: 2 2024-09-07T08:14:09.877 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.enable_thread_tracking: 0 2024-09-07T08:14:09.877 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.enable_pipelined_write: 0 2024-09-07T08:14:09.877 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.unordered_write: 0 2024-09-07T08:14:09.877 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-07T08:14:09.877 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-07T08:14:09.877 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-07T08:14:09.877 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-07T08:14:09.877 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.row_cache: None 2024-09-07T08:14:09.877 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.wal_filter: None 2024-09-07T08:14:09.877 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-07T08:14:09.877 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.allow_ingest_behind: 0 2024-09-07T08:14:09.878 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.two_write_queues: 0 2024-09-07T08:14:09.878 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.manual_wal_flush: 0 2024-09-07T08:14:09.878 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.wal_compression: 0 2024-09-07T08:14:09.878 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.atomic_flush: 0 2024-09-07T08:14:09.878 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-07T08:14:09.878 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.persist_stats_to_disk: 0 2024-09-07T08:14:09.878 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.write_dbid_to_manifest: 0 2024-09-07T08:14:09.878 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.log_readahead_size: 0 2024-09-07T08:14:09.878 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-07T08:14:09.878 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.best_efforts_recovery: 0 2024-09-07T08:14:09.878 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-07T08:14:09.878 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-07T08:14:09.878 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.allow_data_in_errors: 0 2024-09-07T08:14:09.878 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.db_host_id: __hostname__ 2024-09-07T08:14:09.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.enforce_single_del_contracts: true 2024-09-07T08:14:09.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.max_background_jobs: 2 2024-09-07T08:14:09.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.max_background_compactions: -1 2024-09-07T08:14:09.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.max_subcompactions: 1 2024-09-07T08:14:09.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-07T08:14:09.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-07T08:14:09.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.delayed_write_rate : 16777216 2024-09-07T08:14:09.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.max_total_wal_size: 0 2024-09-07T08:14:09.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-07T08:14:09.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.stats_dump_period_sec: 600 2024-09-07T08:14:09.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.stats_persist_period_sec: 600 2024-09-07T08:14:09.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-07T08:14:09.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.max_open_files: -1 2024-09-07T08:14:09.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.bytes_per_sync: 0 2024-09-07T08:14:09.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.wal_bytes_per_sync: 0 2024-09-07T08:14:09.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.strict_bytes_per_sync: 0 2024-09-07T08:14:09.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.compaction_readahead_size: 0 2024-09-07T08:14:09.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.max_background_flushes: -1 2024-09-07T08:14:09.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Compression algorithms supported: 2024-09-07T08:14:09.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: kZSTD supported: 0 2024-09-07T08:14:09.882 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: kXpressCompression supported: 0 2024-09-07T08:14:09.882 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: kBZip2Compression supported: 0 2024-09-07T08:14:09.882 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-07T08:14:09.882 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: kLZ4Compression supported: 1 2024-09-07T08:14:09.882 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: kZlibCompression supported: 1 2024-09-07T08:14:09.882 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: kLZ4HCCompression supported: 1 2024-09-07T08:14:09.882 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: kSnappyCompression supported: 1 2024-09-07T08:14:09.882 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Fast CRC32 supported: Supported on x86 2024-09-07T08:14:09.882 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: DMutex implementation: pthread_mutex_t 2024-09-07T08:14:09.882 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-c/store.db/MANIFEST-000005 2024-09-07T08:14:09.882 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-07T08:14:09.882 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-07T08:14:09.882 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.merge_operator: 2024-09-07T08:14:09.883 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.compaction_filter: None 2024-09-07T08:14:09.883 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.compaction_filter_factory: None 2024-09-07T08:14:09.883 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.sst_partitioner_factory: None 2024-09-07T08:14:09.883 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.memtable_factory: SkipListFactory 2024-09-07T08:14:09.883 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.table_factory: BlockBasedTable 2024-09-07T08:14:09.883 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x5578ee9d07e0) 2024-09-07T08:14:09.883 INFO:journalctl@ceph.mon.c.smithi191.stdout: cache_index_and_filter_blocks: 1 2024-09-07T08:14:09.883 INFO:journalctl@ceph.mon.c.smithi191.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-07T08:14:09.883 INFO:journalctl@ceph.mon.c.smithi191.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-07T08:14:09.883 INFO:journalctl@ceph.mon.c.smithi191.stdout: pin_top_level_index_and_filter: 1 2024-09-07T08:14:09.883 INFO:journalctl@ceph.mon.c.smithi191.stdout: index_type: 0 2024-09-07T08:14:09.883 INFO:journalctl@ceph.mon.c.smithi191.stdout: data_block_index_type: 0 2024-09-07T08:14:09.883 INFO:journalctl@ceph.mon.c.smithi191.stdout: index_shortening: 1 2024-09-07T08:14:09.883 INFO:journalctl@ceph.mon.c.smithi191.stdout: data_block_hash_table_util_ratio: 0.750000 2024-09-07T08:14:09.884 INFO:journalctl@ceph.mon.c.smithi191.stdout: checksum: 4 2024-09-07T08:14:09.884 INFO:journalctl@ceph.mon.c.smithi191.stdout: no_block_cache: 0 2024-09-07T08:14:09.884 INFO:journalctl@ceph.mon.c.smithi191.stdout: block_cache: 0x5578ee9c5350 2024-09-07T08:14:09.884 INFO:journalctl@ceph.mon.c.smithi191.stdout: block_cache_name: BinnedLRUCache 2024-09-07T08:14:09.884 INFO:journalctl@ceph.mon.c.smithi191.stdout: block_cache_options: 2024-09-07T08:14:09.884 INFO:journalctl@ceph.mon.c.smithi191.stdout: capacity : 536870912 2024-09-07T08:14:09.884 INFO:journalctl@ceph.mon.c.smithi191.stdout: num_shard_bits : 4 2024-09-07T08:14:09.884 INFO:journalctl@ceph.mon.c.smithi191.stdout: strict_capacity_limit : 0 2024-09-07T08:14:09.884 INFO:journalctl@ceph.mon.c.smithi191.stdout: high_pri_pool_ratio: 0.000 2024-09-07T08:14:09.884 INFO:journalctl@ceph.mon.c.smithi191.stdout: block_cache_compressed: (nil) 2024-09-07T08:14:09.884 INFO:journalctl@ceph.mon.c.smithi191.stdout: persistent_cache: (nil) 2024-09-07T08:14:09.884 INFO:journalctl@ceph.mon.c.smithi191.stdout: block_size: 4096 2024-09-07T08:14:09.884 INFO:journalctl@ceph.mon.c.smithi191.stdout: block_size_deviation: 10 2024-09-07T08:14:09.885 INFO:journalctl@ceph.mon.c.smithi191.stdout: block_restart_interval: 16 2024-09-07T08:14:09.885 INFO:journalctl@ceph.mon.c.smithi191.stdout: index_block_restart_interval: 1 2024-09-07T08:14:09.885 INFO:journalctl@ceph.mon.c.smithi191.stdout: metadata_block_size: 4096 2024-09-07T08:14:09.885 INFO:journalctl@ceph.mon.c.smithi191.stdout: partition_filters: 0 2024-09-07T08:14:09.885 INFO:journalctl@ceph.mon.c.smithi191.stdout: use_delta_encoding: 1 2024-09-07T08:14:09.885 INFO:journalctl@ceph.mon.c.smithi191.stdout: filter_policy: bloomfilter 2024-09-07T08:14:09.885 INFO:journalctl@ceph.mon.c.smithi191.stdout: whole_key_filtering: 1 2024-09-07T08:14:09.885 INFO:journalctl@ceph.mon.c.smithi191.stdout: verify_compression: 0 2024-09-07T08:14:09.885 INFO:journalctl@ceph.mon.c.smithi191.stdout: read_amp_bytes_per_bit: 0 2024-09-07T08:14:09.885 INFO:journalctl@ceph.mon.c.smithi191.stdout: format_version: 5 2024-09-07T08:14:09.885 INFO:journalctl@ceph.mon.c.smithi191.stdout: enable_index_compression: 1 2024-09-07T08:14:09.885 INFO:journalctl@ceph.mon.c.smithi191.stdout: block_align: 0 2024-09-07T08:14:09.885 INFO:journalctl@ceph.mon.c.smithi191.stdout: max_auto_readahead_size: 262144 2024-09-07T08:14:09.885 INFO:journalctl@ceph.mon.c.smithi191.stdout: prepopulate_block_cache: 0 2024-09-07T08:14:09.886 INFO:journalctl@ceph.mon.c.smithi191.stdout: initial_auto_readahead_size: 8192 2024-09-07T08:14:09.886 INFO:journalctl@ceph.mon.c.smithi191.stdout: num_file_reads_for_auto_readahead: 2 2024-09-07T08:14:09.886 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.write_buffer_size: 33554432 2024-09-07T08:14:09.886 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.max_write_buffer_number: 2 2024-09-07T08:14:09.886 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.compression: NoCompression 2024-09-07T08:14:09.886 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.bottommost_compression: Disabled 2024-09-07T08:14:09.886 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.prefix_extractor: nullptr 2024-09-07T08:14:09.886 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-07T08:14:09.886 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.num_levels: 7 2024-09-07T08:14:09.886 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-07T08:14:09.886 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-07T08:14:09.886 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-07T08:14:09.886 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-07T08:14:09.886 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-07T08:14:09.887 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-07T08:14:09.887 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-07T08:14:09.887 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-07T08:14:09.887 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-07T08:14:09.887 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-07T08:14:09.887 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-07T08:14:09.887 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-07T08:14:09.887 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.compression_opts.window_bits: -14 2024-09-07T08:14:09.887 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.compression_opts.level: 32767 2024-09-07T08:14:09.887 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.compression_opts.strategy: 0 2024-09-07T08:14:09.887 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-07T08:14:09.887 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-07T08:14:09.887 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-07T08:14:09.888 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-07T08:14:09.888 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.compression_opts.enabled: false 2024-09-07T08:14:09.888 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-07T08:14:09.888 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-07T08:14:09.888 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-07T08:14:09.888 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-07T08:14:09.888 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.target_file_size_base: 67108864 2024-09-07T08:14:09.888 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.target_file_size_multiplier: 1 2024-09-07T08:14:09.888 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-07T08:14:09.888 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-07T08:14:09.888 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-07T08:14:09.888 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-07T08:14:09.888 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-07T08:14:09.888 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-07T08:14:09.889 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-07T08:14:09.889 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-07T08:14:09.889 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-07T08:14:09.889 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-07T08:14:09.889 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-07T08:14:09.889 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-07T08:14:09.889 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-07T08:14:09.889 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.arena_block_size: 1048576 2024-09-07T08:14:09.889 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-07T08:14:09.889 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-07T08:14:09.889 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.disable_auto_compactions: 0 2024-09-07T08:14:09.889 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-07T08:14:09.889 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-07T08:14:09.889 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-07T08:14:09.890 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-07T08:14:09.890 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-07T08:14:09.890 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-07T08:14:09.890 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-07T08:14:09.890 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-07T08:14:09.890 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-07T08:14:09.890 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-07T08:14:09.890 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-07T08:14:09.890 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.inplace_update_support: 0 2024-09-07T08:14:09.890 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.inplace_update_num_locks: 10000 2024-09-07T08:14:09.890 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-07T08:14:09.890 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-07T08:14:09.890 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.memtable_huge_page_size: 0 2024-09-07T08:14:09.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.bloom_locality: 0 2024-09-07T08:14:09.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.max_successive_merges: 0 2024-09-07T08:14:09.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.optimize_filters_for_hits: 0 2024-09-07T08:14:09.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.paranoid_file_checks: 0 2024-09-07T08:14:09.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.force_consistency_checks: 1 2024-09-07T08:14:09.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.report_bg_io_stats: 0 2024-09-07T08:14:09.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.ttl: 2592000 2024-09-07T08:14:09.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.periodic_compaction_seconds: 0 2024-09-07T08:14:09.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-07T08:14:09.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-07T08:14:09.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.enable_blob_files: false 2024-09-07T08:14:09.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.min_blob_size: 0 2024-09-07T08:14:09.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.blob_file_size: 268435456 2024-09-07T08:14:09.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.blob_compression_type: NoCompression 2024-09-07T08:14:09.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.enable_blob_garbage_collection: false 2024-09-07T08:14:09.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-07T08:14:09.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-07T08:14:09.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-07T08:14:09.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.blob_file_starting_level: 0 2024-09-07T08:14:09.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-07T08:14:09.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-c/store.db/MANIFEST-000005 succeeded,manifest_file_number is 5, next_file_number is 7, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-09-07T08:14:09.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-09-07T08:14:09.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 77e93733-b913-4432-b384-8ca291c9050e 2024-09-07T08:14:09.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: EVENT_LOG_v1 {"time_micros": 1725696849506143, "job": 1, "event": "recovery_started", "wal_files": [4]} 2024-09-07T08:14:09.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2024-09-07T08:14:09.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: EVENT_LOG_v1 {"time_micros": 1725696849506529, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 8, "file_size": 1648, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 1, "largest_seqno": 5, "table_properties": {"data_size": 523, "index_size": 31, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 69, "raw_key_size": 115, "raw_average_key_size": 23, "raw_value_size": 401, "raw_average_value_size": 80, "num_data_blocks": 1, "num_entries": 5, "num_filter_entries": 5, "num_deletions": 0, "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": 1725696849, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "77e93733-b913-4432-b384-8ca291c9050e", "db_session_id": "UCDAQH84Z0Q9U6K76F6E", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2024-09-07T08:14:09.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: EVENT_LOG_v1 {"time_micros": 1725696849506620, "job": 1, "event": "recovery_finished"} 2024-09-07T08:14:09.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: [db/version_set.cc:5047] Creating manifest 10 2024-09-07T08:14:09.893 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-c/store.db/000004.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-07T08:14:09.893 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x5578ee9f0e00 2024-09-07T08:14:09.893 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: DB pointer 0x5578eeae4000 2024-09-07T08:14:09.893 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-07T08:14:09.893 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-07T08:14:09.893 INFO:journalctl@ceph.mon.c.smithi191.stdout: ** DB Stats ** 2024-09-07T08:14:09.893 INFO:journalctl@ceph.mon.c.smithi191.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-07T08:14:09.893 INFO:journalctl@ceph.mon.c.smithi191.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-07T08:14:09.893 INFO:journalctl@ceph.mon.c.smithi191.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-07T08:14:09.893 INFO:journalctl@ceph.mon.c.smithi191.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-07T08:14:09.893 INFO:journalctl@ceph.mon.c.smithi191.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-07T08:14:09.893 INFO:journalctl@ceph.mon.c.smithi191.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-07T08:14:09.893 INFO:journalctl@ceph.mon.c.smithi191.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-07T08:14:09.894 INFO:journalctl@ceph.mon.c.smithi191.stdout: 2024-09-07T08:14:09.894 INFO:journalctl@ceph.mon.c.smithi191.stdout: ** Compaction Stats [default] ** 2024-09-07T08:14:09.894 INFO:journalctl@ceph.mon.c.smithi191.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-07T08:14:09.894 INFO:journalctl@ceph.mon.c.smithi191.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-07T08:14:09.894 INFO:journalctl@ceph.mon.c.smithi191.stdout: L0 1/0 1.61 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.2 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-07T08:14:09.894 INFO:journalctl@ceph.mon.c.smithi191.stdout: Sum 1/0 1.61 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.2 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-07T08:14:09.894 INFO:journalctl@ceph.mon.c.smithi191.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 4.2 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-07T08:14:09.894 INFO:journalctl@ceph.mon.c.smithi191.stdout: 2024-09-07T08:14:09.894 INFO:journalctl@ceph.mon.c.smithi191.stdout: ** Compaction Stats [default] ** 2024-09-07T08:14:09.894 INFO:journalctl@ceph.mon.c.smithi191.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-07T08:14:09.894 INFO:journalctl@ceph.mon.c.smithi191.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-07T08:14:09.894 INFO:journalctl@ceph.mon.c.smithi191.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 4.2 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-07T08:14:09.894 INFO:journalctl@ceph.mon.c.smithi191.stdout: 2024-09-07T08:14:09.895 INFO:journalctl@ceph.mon.c.smithi191.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-07T08:14:09.895 INFO:journalctl@ceph.mon.c.smithi191.stdout: 2024-09-07T08:14:09.895 INFO:journalctl@ceph.mon.c.smithi191.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-07T08:14:09.895 INFO:journalctl@ceph.mon.c.smithi191.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-09-07T08:14:09.895 INFO:journalctl@ceph.mon.c.smithi191.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-07T08:14:09.895 INFO:journalctl@ceph.mon.c.smithi191.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-09-07T08:14:09.895 INFO:journalctl@ceph.mon.c.smithi191.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-09-07T08:14:09.895 INFO:journalctl@ceph.mon.c.smithi191.stdout: AddFile(Keys): cumulative 0, interval 0 2024-09-07T08:14:09.895 INFO:journalctl@ceph.mon.c.smithi191.stdout: Cumulative compaction: 0.00 GB write, 0.62 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-07T08:14:09.895 INFO:journalctl@ceph.mon.c.smithi191.stdout: Interval compaction: 0.00 GB write, 0.62 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-07T08:14:09.895 INFO:journalctl@ceph.mon.c.smithi191.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-07T08:14:09.895 INFO:journalctl@ceph.mon.c.smithi191.stdout: Block cache BinnedLRUCache@0x5578ee9c5350#2 capacity: 512.00 MB usage: 0.22 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 8e-06 secs_since: 0 2024-09-07T08:14:09.895 INFO:journalctl@ceph.mon.c.smithi191.stdout: Block cache entry stats(count,size,portion): FilterBlock(1,0.11 KB,2.08616e-05%) IndexBlock(1,0.11 KB,2.08616e-05%) Misc(1,0.00 KB,0%) 2024-09-07T08:14:09.895 INFO:journalctl@ceph.mon.c.smithi191.stdout: 2024-09-07T08:14:09.896 INFO:journalctl@ceph.mon.c.smithi191.stdout: ** File Read Latency Histogram By Level [default] ** 2024-09-07T08:14:09.896 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: mon.c does not exist in monmap, will attempt to join an existing cluster 2024-09-07T08:14:09.896 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: using public_addr v2:172.21.15.191:0/0 -> [v2:172.21.15.191:3300/0,v1:172.21.15.191:6789/0] 2024-09-07T08:14:09.896 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: starting mon.c rank -1 at public addrs [v2:172.21.15.191:3300/0,v1:172.21.15.191:6789/0] at bind addrs [v2:172.21.15.191:3300/0,v1:172.21.15.191:6789/0] mon_data /var/lib/ceph/mon/ceph-c fsid d3fad026-6cf0-11ef-bcea-c7b262605968 2024-09-07T08:14:09.896 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: mon.c@-1(???) e0 preinit fsid d3fad026-6cf0-11ef-bcea-c7b262605968 2024-09-07T08:14:09.896 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: mon.c@-1(synchronizing).mds e1 new map 2024-09-07T08:14:09.896 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: mon.c@-1(synchronizing).mds e1 print_map 2024-09-07T08:14:09.896 INFO:journalctl@ceph.mon.c.smithi191.stdout: e1 2024-09-07T08:14:09.896 INFO:journalctl@ceph.mon.c.smithi191.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-09-07T08:14:09.896 INFO:journalctl@ceph.mon.c.smithi191.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} 2024-09-07T08:14:09.896 INFO:journalctl@ceph.mon.c.smithi191.stdout: legacy client fscid: -1 2024-09-07T08:14:09.896 INFO:journalctl@ceph.mon.c.smithi191.stdout: 2024-09-07T08:14:09.896 INFO:journalctl@ceph.mon.c.smithi191.stdout: No filesystems configured 2024-09-07T08:14:09.896 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: mon.c@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-09-07T08:14:09.897 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: mon.c@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-09-07T08:14:09.897 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: mon.c@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-09-07T08:14:09.897 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: mon.c@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-09-07T08:14:09.897 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: mon.c@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-09-07T08:14:09.897 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: mon.c@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-09-07T08:14:09.897 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: mon.c@-1(synchronizing).osd e4 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-07T08:14:09.897 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-07T08:14:09.897 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-07T08:14:09.897 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-07T08:14:09.897 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:09.897 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-07T08:14:09.897 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:09.897 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:09.898 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:09.898 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:09.898 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:09.898 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi090", "name": "osd_memory_target"}]: dispatch 2024-09-07T08:14:09.898 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:09.898 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:14:09.898 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: Updating smithi090:/etc/ceph/ceph.conf 2024-09-07T08:14:09.898 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: Updating smithi090:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-07T08:14:09.898 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: Updating smithi090:/etc/ceph/ceph.client.admin.keyring 2024-09-07T08:14:09.898 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:09.898 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:09.898 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:09.898 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: Updating smithi090:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-07T08:14:09.898 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi191", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:14:09.899 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:09.899 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: Deploying cephadm binary to smithi191 2024-09-07T08:14:09.899 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:09.899 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:09.899 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:14:09.899 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: Added host smithi191 2024-09-07T08:14:09.899 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:09.899 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:09.899 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:09.899 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:09.899 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-07T08:14:09.899 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:09.899 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:09.900 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:09.900 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:09.900 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:09.900 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi191", "name": "osd_memory_target"}]: dispatch 2024-09-07T08:14:09.900 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:09.900 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:14:09.900 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: Updating smithi191:/etc/ceph/ceph.conf 2024-09-07T08:14:09.900 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:09.900 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:09.900 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:09.900 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='client.? 172.21.15.18:0/1165889532' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-09-07T08:14:09.900 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: Updating smithi191:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-07T08:14:09.900 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: Updating smithi191:/etc/ceph/ceph.client.admin.keyring 2024-09-07T08:14:09.901 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: Updating smithi191:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-07T08:14:09.901 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:09.901 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='client.? 172.21.15.18:0/1165889532' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-07T08:14:09.901 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: osdmap e4: 0 total, 0 up, 0 in 2024-09-07T08:14:09.901 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:09.901 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi018:172.21.15.18=a;smithi090:172.21.15.90=b;smithi191:172.21.15.191=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:14:09.901 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: Saving service mon spec with placement smithi018:172.21.15.18=a;smithi090:172.21.15.90=b;smithi191:172.21.15.191=c;count:3 2024-09-07T08:14:09.901 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:09.901 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:14:09.901 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:09.901 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:14:09.901 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:09.901 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-07T08:14:09.901 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:09.902 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: Deploying daemon mon.c on smithi191 2024-09-07T08:14:09.902 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:09.902 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:09.902 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: from='client.? 172.21.15.191:0/49466191' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-07T08:14:09.902 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 ceph-mon[34025]: mon.c@-1(synchronizing).paxosservice(auth 1..3) refresh upgraded, format 0 -> 3 2024-09-07T08:14:09.902 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 bash[33994]: a533fd0d316abce2db5d5148d9701241f84de2fa5ef9a56a182f6171cf94d4d4 2024-09-07T08:14:09.902 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:09 smithi191 systemd[1]: Started Ceph mon.c for d3fad026-6cf0-11ef-bcea-c7b262605968. 2024-09-07T08:14:11.245 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-07T08:14:11.245 DEBUG:teuthology.orchestra.run.smithi191:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph mon dump -f json 2024-09-07T08:14:11.463 INFO:teuthology.orchestra.run.smithi191.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.c/config 2024-09-07T08:14:14.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:14 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-07T08:14:14.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:14 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-07T08:14:14.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:14 smithi191 ceph-mon[34025]: mon.a calling monitor election 2024-09-07T08:14:14.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:14 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-07T08:14:14.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:14 smithi191 ceph-mon[34025]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:14.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:14 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-07T08:14:14.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:14 smithi191 ceph-mon[34025]: mon.c calling monitor election 2024-09-07T08:14:14.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:14 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-07T08:14:14.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:14 smithi191 ceph-mon[34025]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:14.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:14 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-07T08:14:14.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:14 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-07T08:14:14.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:14 smithi191 ceph-mon[34025]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-07T08:14:14.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:14 smithi191 ceph-mon[34025]: monmap e2: 2 mons at {a=[v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0],c=[v2:172.21.15.191:3300/0,v1:172.21.15.191:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-07T08:14:14.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:14 smithi191 ceph-mon[34025]: fsmap 2024-09-07T08:14:14.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:14 smithi191 ceph-mon[34025]: osdmap e4: 0 total, 0 up, 0 in 2024-09-07T08:14:14.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:14 smithi191 ceph-mon[34025]: mgrmap e13: a(active, since 47s) 2024-09-07T08:14:14.893 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:14 smithi191 ceph-mon[34025]: overall HEALTH_OK 2024-09-07T08:14:14.893 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:14 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:14.893 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:14 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:14.893 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:14 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:14.893 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:14 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-07T08:14:14.893 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:14 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:14.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:14 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-07T08:14:14.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:14 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-07T08:14:14.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:14 smithi018 ceph-mon[30322]: mon.a calling monitor election 2024-09-07T08:14:14.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:14 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-07T08:14:14.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:14 smithi018 ceph-mon[30322]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:14.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:14 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-07T08:14:14.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:14 smithi018 ceph-mon[30322]: mon.c calling monitor election 2024-09-07T08:14:14.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:14 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-07T08:14:14.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:14 smithi018 ceph-mon[30322]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:14.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:14 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-07T08:14:14.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:14 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-07T08:14:14.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:14 smithi018 ceph-mon[30322]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-07T08:14:14.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:14 smithi018 ceph-mon[30322]: monmap e2: 2 mons at {a=[v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0],c=[v2:172.21.15.191:3300/0,v1:172.21.15.191:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-07T08:14:14.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:14 smithi018 ceph-mon[30322]: fsmap 2024-09-07T08:14:14.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:14 smithi018 ceph-mon[30322]: osdmap e4: 0 total, 0 up, 0 in 2024-09-07T08:14:14.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:14 smithi018 ceph-mon[30322]: mgrmap e13: a(active, since 47s) 2024-09-07T08:14:14.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:14 smithi018 ceph-mon[30322]: overall HEALTH_OK 2024-09-07T08:14:14.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:14 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:14.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:14 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:14.958 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:14 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:14.958 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:14 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-07T08:14:14.958 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:14 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:15.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:15 smithi191 ceph-mon[34025]: Deploying daemon mon.b on smithi090 2024-09-07T08:14:15.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:15 smithi191 ceph-mon[34025]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:15.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:15 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-07T08:14:15.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:15 smithi018 ceph-mon[30322]: Deploying daemon mon.b on smithi090 2024-09-07T08:14:15.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:15 smithi018 ceph-mon[30322]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:15.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:15 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-07T08:14:16.191 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:14:16.192 INFO:teuthology.orchestra.run.smithi191.stdout:{"epoch":2,"fsid":"d3fad026-6cf0-11ef-bcea-c7b262605968","modified":"2024-09-07T08:14:09.535718Z","created":"2024-09-07T08:12:37.434253Z","min_mon_release":18,"min_mon_release_name":"reef","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"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:3300","nonce":0},{"type":"v1","addr":"172.21.15.18:6789","nonce":0}]},"addr":"172.21.15.18:6789/0","public_addr":"172.21.15.18: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-07T08:14:16.192 INFO:teuthology.orchestra.run.smithi191.stderr:dumped monmap epoch 2 2024-09-07T08:14:16.777 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:16 smithi191 ceph-mon[34025]: from='client.? 172.21.15.191:0/2399161604' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-07T08:14:16.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:16 smithi018 ceph-mon[30322]: from='client.? 172.21.15.191:0/2399161604' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-07T08:14:17.799 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-07T08:14:17.799 DEBUG:teuthology.orchestra.run.smithi191:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph mon dump -f json 2024-09-07T08:14:17.825 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:17 smithi191 ceph-mon[34025]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:17.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:17 smithi018 ceph-mon[30322]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:17.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:17 smithi090 podman[33242]: 2024-09-07 08:14:17.839915264 +0000 UTC m=+0.015746133 image pull 6d221832e1054b498e2b9f082020222573577791586fe066468034523d6f813b quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055 2024-09-07T08:14:17.995 INFO:teuthology.orchestra.run.smithi191.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.c/config 2024-09-07T08:14:18.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 podman[33242]: 2024-09-07 08:14:18.128589072 +0000 UTC m=+0.304419930 container init 37f591bda64cfa5483366b87841097c0269a03bbb168de484217e5394c035530 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mon-b, maintainer=Guillaume Abrioux , ceph=True, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, GIT_CLEAN=True, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, CEPH_POINT_RELEASE=, 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, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS) 2024-09-07T08:14:18.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 podman[33242]: 2024-09-07 08:14:18.131858612 +0000 UTC m=+0.307689470 container start 37f591bda64cfa5483366b87841097c0269a03bbb168de484217e5394c035530 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mon-b, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, org.label-schema.schema-version=1.0, ceph=True) 2024-09-07T08:14:18.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: set uid:gid to 167:167 (ceph:ceph) 2024-09-07T08:14:18.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: ceph version 18.2.4-812-g03cef208 (03cef208dc8a39e0b8a1806b4763767a2ff62439) reef (stable), process ceph-mon, pid 2 2024-09-07T08:14:18.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: pidfile_write: ignore empty --pid-file 2024-09-07T08:14:18.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: load: jerasure load: lrc 2024-09-07T08:14:18.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: RocksDB version: 7.9.2 2024-09-07T08:14:18.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Git sha 0 2024-09-07T08:14:18.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Compile date 2024-09-06 19:38:05 2024-09-07T08:14:18.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: DB SUMMARY 2024-09-07T08:14:18.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: DB Session ID: FGMWI02UI55LKYWCK2P7 2024-09-07T08:14:18.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: CURRENT file: CURRENT 2024-09-07T08:14:18.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: IDENTITY file: IDENTITY 2024-09-07T08:14:18.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: MANIFEST file: MANIFEST-000005 size: 59 Bytes 2024-09-07T08:14:18.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: SST files in /var/lib/ceph/mon/ceph-b/store.db dir, Total Num: 0, files: 2024-09-07T08:14:18.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-b/store.db: 000004.log size: 636 ; 2024-09-07T08:14:18.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.error_if_exists: 0 2024-09-07T08:14:18.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.create_if_missing: 0 2024-09-07T08:14:18.481 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.paranoid_checks: 1 2024-09-07T08:14:18.481 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.flush_verify_memtable_count: 1 2024-09-07T08:14:18.481 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-07T08:14:18.481 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-07T08:14:18.481 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.env: 0x557c7cb44bc0 2024-09-07T08:14:18.481 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.fs: PosixFileSystem 2024-09-07T08:14:18.481 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.info_log: 0x557c7d4cabe0 2024-09-07T08:14:18.481 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.max_file_opening_threads: 16 2024-09-07T08:14:18.482 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.statistics: (nil) 2024-09-07T08:14:18.482 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.use_fsync: 0 2024-09-07T08:14:18.482 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.max_log_file_size: 0 2024-09-07T08:14:18.482 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-07T08:14:18.482 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.log_file_time_to_roll: 0 2024-09-07T08:14:18.482 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.keep_log_file_num: 1000 2024-09-07T08:14:18.482 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.recycle_log_file_num: 0 2024-09-07T08:14:18.482 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.allow_fallocate: 1 2024-09-07T08:14:18.483 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.allow_mmap_reads: 0 2024-09-07T08:14:18.483 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.allow_mmap_writes: 0 2024-09-07T08:14:18.483 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.use_direct_reads: 0 2024-09-07T08:14:18.483 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-07T08:14:18.483 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.create_missing_column_families: 0 2024-09-07T08:14:18.483 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.db_log_dir: 2024-09-07T08:14:18.483 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.wal_dir: 2024-09-07T08:14:18.483 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.table_cache_numshardbits: 6 2024-09-07T08:14:18.483 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.WAL_ttl_seconds: 0 2024-09-07T08:14:18.483 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.WAL_size_limit_MB: 0 2024-09-07T08:14:18.483 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-07T08:14:18.483 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-07T08:14:18.483 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.is_fd_close_on_exec: 1 2024-09-07T08:14:18.484 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.advise_random_on_open: 1 2024-09-07T08:14:18.484 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.db_write_buffer_size: 0 2024-09-07T08:14:18.484 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.write_buffer_manager: 0x557c7d4d8320 2024-09-07T08:14:18.484 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-07T08:14:18.484 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-07T08:14:18.484 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.use_adaptive_mutex: 0 2024-09-07T08:14:18.484 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.rate_limiter: (nil) 2024-09-07T08:14:18.484 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-07T08:14:18.484 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.wal_recovery_mode: 2 2024-09-07T08:14:18.484 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.enable_thread_tracking: 0 2024-09-07T08:14:18.484 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.enable_pipelined_write: 0 2024-09-07T08:14:18.484 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.unordered_write: 0 2024-09-07T08:14:18.484 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-07T08:14:18.484 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-07T08:14:18.484 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-07T08:14:18.485 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-07T08:14:18.485 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.row_cache: None 2024-09-07T08:14:18.485 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.wal_filter: None 2024-09-07T08:14:18.485 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-07T08:14:18.485 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.allow_ingest_behind: 0 2024-09-07T08:14:18.485 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.two_write_queues: 0 2024-09-07T08:14:18.485 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.manual_wal_flush: 0 2024-09-07T08:14:18.485 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.wal_compression: 0 2024-09-07T08:14:18.485 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.atomic_flush: 0 2024-09-07T08:14:18.485 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-07T08:14:18.485 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.persist_stats_to_disk: 0 2024-09-07T08:14:18.485 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.write_dbid_to_manifest: 0 2024-09-07T08:14:18.485 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.log_readahead_size: 0 2024-09-07T08:14:18.486 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-07T08:14:18.486 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.best_efforts_recovery: 0 2024-09-07T08:14:18.486 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-07T08:14:18.486 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-07T08:14:18.486 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.allow_data_in_errors: 0 2024-09-07T08:14:18.486 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.db_host_id: __hostname__ 2024-09-07T08:14:18.486 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.enforce_single_del_contracts: true 2024-09-07T08:14:18.486 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.max_background_jobs: 2 2024-09-07T08:14:18.486 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.max_background_compactions: -1 2024-09-07T08:14:18.486 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.max_subcompactions: 1 2024-09-07T08:14:18.486 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-07T08:14:18.486 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-07T08:14:18.486 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.delayed_write_rate : 16777216 2024-09-07T08:14:18.486 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.max_total_wal_size: 0 2024-09-07T08:14:18.486 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-07T08:14:18.487 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.stats_dump_period_sec: 600 2024-09-07T08:14:18.487 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.stats_persist_period_sec: 600 2024-09-07T08:14:18.487 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-07T08:14:18.487 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.max_open_files: -1 2024-09-07T08:14:18.487 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.bytes_per_sync: 0 2024-09-07T08:14:18.487 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.wal_bytes_per_sync: 0 2024-09-07T08:14:18.487 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.strict_bytes_per_sync: 0 2024-09-07T08:14:18.487 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.compaction_readahead_size: 0 2024-09-07T08:14:18.487 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.max_background_flushes: -1 2024-09-07T08:14:18.487 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Compression algorithms supported: 2024-09-07T08:14:18.487 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: kZSTD supported: 0 2024-09-07T08:14:18.487 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: kXpressCompression supported: 0 2024-09-07T08:14:18.487 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: kBZip2Compression supported: 0 2024-09-07T08:14:18.487 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-07T08:14:18.487 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: kLZ4Compression supported: 1 2024-09-07T08:14:18.488 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: kZlibCompression supported: 1 2024-09-07T08:14:18.488 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: kLZ4HCCompression supported: 1 2024-09-07T08:14:18.488 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: kSnappyCompression supported: 1 2024-09-07T08:14:18.488 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Fast CRC32 supported: Supported on x86 2024-09-07T08:14:18.488 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: DMutex implementation: pthread_mutex_t 2024-09-07T08:14:18.488 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-b/store.db/MANIFEST-000005 2024-09-07T08:14:18.488 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-07T08:14:18.488 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-07T08:14:18.488 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.merge_operator: 2024-09-07T08:14:18.488 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.compaction_filter: None 2024-09-07T08:14:18.488 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.compaction_filter_factory: None 2024-09-07T08:14:18.488 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.sst_partitioner_factory: None 2024-09-07T08:14:18.488 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.memtable_factory: SkipListFactory 2024-09-07T08:14:18.488 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.table_factory: BlockBasedTable 2024-09-07T08:14:18.488 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x557c7d4ca7e0) 2024-09-07T08:14:18.489 INFO:journalctl@ceph.mon.b.smithi090.stdout: cache_index_and_filter_blocks: 1 2024-09-07T08:14:18.489 INFO:journalctl@ceph.mon.b.smithi090.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-07T08:14:18.489 INFO:journalctl@ceph.mon.b.smithi090.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-07T08:14:18.489 INFO:journalctl@ceph.mon.b.smithi090.stdout: pin_top_level_index_and_filter: 1 2024-09-07T08:14:18.489 INFO:journalctl@ceph.mon.b.smithi090.stdout: index_type: 0 2024-09-07T08:14:18.489 INFO:journalctl@ceph.mon.b.smithi090.stdout: data_block_index_type: 0 2024-09-07T08:14:18.489 INFO:journalctl@ceph.mon.b.smithi090.stdout: index_shortening: 1 2024-09-07T08:14:18.489 INFO:journalctl@ceph.mon.b.smithi090.stdout: data_block_hash_table_util_ratio: 0.750000 2024-09-07T08:14:18.489 INFO:journalctl@ceph.mon.b.smithi090.stdout: checksum: 4 2024-09-07T08:14:18.489 INFO:journalctl@ceph.mon.b.smithi090.stdout: no_block_cache: 0 2024-09-07T08:14:18.489 INFO:journalctl@ceph.mon.b.smithi090.stdout: block_cache: 0x557c7d4bf1f0 2024-09-07T08:14:18.489 INFO:journalctl@ceph.mon.b.smithi090.stdout: block_cache_name: BinnedLRUCache 2024-09-07T08:14:18.489 INFO:journalctl@ceph.mon.b.smithi090.stdout: block_cache_options: 2024-09-07T08:14:18.489 INFO:journalctl@ceph.mon.b.smithi090.stdout: capacity : 536870912 2024-09-07T08:14:18.489 INFO:journalctl@ceph.mon.b.smithi090.stdout: num_shard_bits : 4 2024-09-07T08:14:18.489 INFO:journalctl@ceph.mon.b.smithi090.stdout: strict_capacity_limit : 0 2024-09-07T08:14:18.490 INFO:journalctl@ceph.mon.b.smithi090.stdout: high_pri_pool_ratio: 0.000 2024-09-07T08:14:18.490 INFO:journalctl@ceph.mon.b.smithi090.stdout: block_cache_compressed: (nil) 2024-09-07T08:14:18.490 INFO:journalctl@ceph.mon.b.smithi090.stdout: persistent_cache: (nil) 2024-09-07T08:14:18.490 INFO:journalctl@ceph.mon.b.smithi090.stdout: block_size: 4096 2024-09-07T08:14:18.490 INFO:journalctl@ceph.mon.b.smithi090.stdout: block_size_deviation: 10 2024-09-07T08:14:18.490 INFO:journalctl@ceph.mon.b.smithi090.stdout: block_restart_interval: 16 2024-09-07T08:14:18.490 INFO:journalctl@ceph.mon.b.smithi090.stdout: index_block_restart_interval: 1 2024-09-07T08:14:18.490 INFO:journalctl@ceph.mon.b.smithi090.stdout: metadata_block_size: 4096 2024-09-07T08:14:18.490 INFO:journalctl@ceph.mon.b.smithi090.stdout: partition_filters: 0 2024-09-07T08:14:18.490 INFO:journalctl@ceph.mon.b.smithi090.stdout: use_delta_encoding: 1 2024-09-07T08:14:18.490 INFO:journalctl@ceph.mon.b.smithi090.stdout: filter_policy: bloomfilter 2024-09-07T08:14:18.490 INFO:journalctl@ceph.mon.b.smithi090.stdout: whole_key_filtering: 1 2024-09-07T08:14:18.490 INFO:journalctl@ceph.mon.b.smithi090.stdout: verify_compression: 0 2024-09-07T08:14:18.490 INFO:journalctl@ceph.mon.b.smithi090.stdout: read_amp_bytes_per_bit: 0 2024-09-07T08:14:18.490 INFO:journalctl@ceph.mon.b.smithi090.stdout: format_version: 5 2024-09-07T08:14:18.491 INFO:journalctl@ceph.mon.b.smithi090.stdout: enable_index_compression: 1 2024-09-07T08:14:18.491 INFO:journalctl@ceph.mon.b.smithi090.stdout: block_align: 0 2024-09-07T08:14:18.491 INFO:journalctl@ceph.mon.b.smithi090.stdout: max_auto_readahead_size: 262144 2024-09-07T08:14:18.491 INFO:journalctl@ceph.mon.b.smithi090.stdout: prepopulate_block_cache: 0 2024-09-07T08:14:18.491 INFO:journalctl@ceph.mon.b.smithi090.stdout: initial_auto_readahead_size: 8192 2024-09-07T08:14:18.491 INFO:journalctl@ceph.mon.b.smithi090.stdout: num_file_reads_for_auto_readahead: 2 2024-09-07T08:14:18.491 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.write_buffer_size: 33554432 2024-09-07T08:14:18.491 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.max_write_buffer_number: 2 2024-09-07T08:14:18.491 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.compression: NoCompression 2024-09-07T08:14:18.491 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.bottommost_compression: Disabled 2024-09-07T08:14:18.491 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.prefix_extractor: nullptr 2024-09-07T08:14:18.491 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-07T08:14:18.491 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.num_levels: 7 2024-09-07T08:14:18.491 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-07T08:14:18.491 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-07T08:14:18.492 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-07T08:14:18.492 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-07T08:14:18.492 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-07T08:14:18.492 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-07T08:14:18.492 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-07T08:14:18.492 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-07T08:14:18.492 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-07T08:14:18.492 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-07T08:14:18.492 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-07T08:14:18.492 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-07T08:14:18.492 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.compression_opts.window_bits: -14 2024-09-07T08:14:18.492 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.compression_opts.level: 32767 2024-09-07T08:14:18.492 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.compression_opts.strategy: 0 2024-09-07T08:14:18.492 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-07T08:14:18.493 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-07T08:14:18.493 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-07T08:14:18.493 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-07T08:14:18.493 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.compression_opts.enabled: false 2024-09-07T08:14:18.493 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-07T08:14:18.493 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-07T08:14:18.493 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-07T08:14:18.493 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-07T08:14:18.493 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.target_file_size_base: 67108864 2024-09-07T08:14:18.493 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.target_file_size_multiplier: 1 2024-09-07T08:14:18.493 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-07T08:14:18.493 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-07T08:14:18.493 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-07T08:14:18.493 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-07T08:14:18.494 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-07T08:14:18.494 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-07T08:14:18.494 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-07T08:14:18.494 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-07T08:14:18.494 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-07T08:14:18.494 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-07T08:14:18.494 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-07T08:14:18.494 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-07T08:14:18.494 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-07T08:14:18.494 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.arena_block_size: 1048576 2024-09-07T08:14:18.494 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-07T08:14:18.494 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-07T08:14:18.494 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.disable_auto_compactions: 0 2024-09-07T08:14:18.495 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-07T08:14:18.495 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-07T08:14:18.495 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-07T08:14:18.495 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-07T08:14:18.495 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-07T08:14:18.495 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-07T08:14:18.495 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-07T08:14:18.495 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-07T08:14:18.495 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-07T08:14:18.495 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-07T08:14:18.495 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-07T08:14:18.495 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.inplace_update_support: 0 2024-09-07T08:14:18.495 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.inplace_update_num_locks: 10000 2024-09-07T08:14:18.495 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-07T08:14:18.496 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-07T08:14:18.496 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.memtable_huge_page_size: 0 2024-09-07T08:14:18.496 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.bloom_locality: 0 2024-09-07T08:14:18.496 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.max_successive_merges: 0 2024-09-07T08:14:18.496 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.optimize_filters_for_hits: 0 2024-09-07T08:14:18.496 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.paranoid_file_checks: 0 2024-09-07T08:14:18.496 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.force_consistency_checks: 1 2024-09-07T08:14:18.496 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.report_bg_io_stats: 0 2024-09-07T08:14:18.496 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.ttl: 2592000 2024-09-07T08:14:18.496 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.periodic_compaction_seconds: 0 2024-09-07T08:14:18.496 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-07T08:14:18.497 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-07T08:14:18.497 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.enable_blob_files: false 2024-09-07T08:14:18.497 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.min_blob_size: 0 2024-09-07T08:14:18.497 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.blob_file_size: 268435456 2024-09-07T08:14:18.497 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.blob_compression_type: NoCompression 2024-09-07T08:14:18.498 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.enable_blob_garbage_collection: false 2024-09-07T08:14:18.498 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-07T08:14:18.498 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-07T08:14:18.498 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-07T08:14:18.498 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.blob_file_starting_level: 0 2024-09-07T08:14:18.498 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-07T08:14:18.498 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-b/store.db/MANIFEST-000005 succeeded,manifest_file_number is 5, next_file_number is 7, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-09-07T08:14:18.498 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-09-07T08:14:18.498 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: c5b23390-afd6-4ea6-8613-ad2b4243c65b 2024-09-07T08:14:18.498 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: EVENT_LOG_v1 {"time_micros": 1725696858158548, "job": 1, "event": "recovery_started", "wal_files": [4]} 2024-09-07T08:14:18.498 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2024-09-07T08:14:18.498 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: EVENT_LOG_v1 {"time_micros": 1725696858158945, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 8, "file_size": 1773, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 1, "largest_seqno": 5, "table_properties": {"data_size": 648, "index_size": 31, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 69, "raw_key_size": 115, "raw_average_key_size": 23, "raw_value_size": 526, "raw_average_value_size": 105, "num_data_blocks": 1, "num_entries": 5, "num_filter_entries": 5, "num_deletions": 0, "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": 1725696858, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "c5b23390-afd6-4ea6-8613-ad2b4243c65b", "db_session_id": "FGMWI02UI55LKYWCK2P7", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2024-09-07T08:14:18.498 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: EVENT_LOG_v1 {"time_micros": 1725696858159036, "job": 1, "event": "recovery_finished"} 2024-09-07T08:14:18.498 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: [db/version_set.cc:5047] Creating manifest 10 2024-09-07T08:14:18.498 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-b/store.db/000004.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-07T08:14:18.499 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x557c7d4eae00 2024-09-07T08:14:18.499 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: DB pointer 0x557c7d5de000 2024-09-07T08:14:18.499 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-07T08:14:18.499 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-07T08:14:18.499 INFO:journalctl@ceph.mon.b.smithi090.stdout: ** DB Stats ** 2024-09-07T08:14:18.499 INFO:journalctl@ceph.mon.b.smithi090.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-07T08:14:18.499 INFO:journalctl@ceph.mon.b.smithi090.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-07T08:14:18.499 INFO:journalctl@ceph.mon.b.smithi090.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-07T08:14:18.499 INFO:journalctl@ceph.mon.b.smithi090.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-07T08:14:18.499 INFO:journalctl@ceph.mon.b.smithi090.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-07T08:14:18.499 INFO:journalctl@ceph.mon.b.smithi090.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-07T08:14:18.499 INFO:journalctl@ceph.mon.b.smithi090.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-07T08:14:18.499 INFO:journalctl@ceph.mon.b.smithi090.stdout: 2024-09-07T08:14:18.499 INFO:journalctl@ceph.mon.b.smithi090.stdout: ** Compaction Stats [default] ** 2024-09-07T08:14:18.499 INFO:journalctl@ceph.mon.b.smithi090.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-07T08:14:18.500 INFO:journalctl@ceph.mon.b.smithi090.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-07T08:14:18.500 INFO:journalctl@ceph.mon.b.smithi090.stdout: L0 1/0 1.73 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.4 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-07T08:14:18.500 INFO:journalctl@ceph.mon.b.smithi090.stdout: Sum 1/0 1.73 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.4 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-07T08:14:18.500 INFO:journalctl@ceph.mon.b.smithi090.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 4.4 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-07T08:14:18.500 INFO:journalctl@ceph.mon.b.smithi090.stdout: 2024-09-07T08:14:18.500 INFO:journalctl@ceph.mon.b.smithi090.stdout: ** Compaction Stats [default] ** 2024-09-07T08:14:18.500 INFO:journalctl@ceph.mon.b.smithi090.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-07T08:14:18.500 INFO:journalctl@ceph.mon.b.smithi090.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-07T08:14:18.500 INFO:journalctl@ceph.mon.b.smithi090.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 4.4 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-07T08:14:18.500 INFO:journalctl@ceph.mon.b.smithi090.stdout: 2024-09-07T08:14:18.500 INFO:journalctl@ceph.mon.b.smithi090.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-07T08:14:18.500 INFO:journalctl@ceph.mon.b.smithi090.stdout: 2024-09-07T08:14:18.500 INFO:journalctl@ceph.mon.b.smithi090.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-07T08:14:18.500 INFO:journalctl@ceph.mon.b.smithi090.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-09-07T08:14:18.500 INFO:journalctl@ceph.mon.b.smithi090.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-07T08:14:18.501 INFO:journalctl@ceph.mon.b.smithi090.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-09-07T08:14:18.501 INFO:journalctl@ceph.mon.b.smithi090.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-09-07T08:14:18.501 INFO:journalctl@ceph.mon.b.smithi090.stdout: AddFile(Keys): cumulative 0, interval 0 2024-09-07T08:14:18.501 INFO:journalctl@ceph.mon.b.smithi090.stdout: Cumulative compaction: 0.00 GB write, 0.66 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-07T08:14:18.501 INFO:journalctl@ceph.mon.b.smithi090.stdout: Interval compaction: 0.00 GB write, 0.66 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-07T08:14:18.501 INFO:journalctl@ceph.mon.b.smithi090.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-07T08:14:18.501 INFO:journalctl@ceph.mon.b.smithi090.stdout: Block cache BinnedLRUCache@0x557c7d4bf1f0#2 capacity: 512.00 MB usage: 0.22 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 9e-06 secs_since: 0 2024-09-07T08:14:18.501 INFO:journalctl@ceph.mon.b.smithi090.stdout: Block cache entry stats(count,size,portion): FilterBlock(1,0.11 KB,2.08616e-05%) IndexBlock(1,0.11 KB,2.08616e-05%) Misc(1,0.00 KB,0%) 2024-09-07T08:14:18.501 INFO:journalctl@ceph.mon.b.smithi090.stdout: 2024-09-07T08:14:18.501 INFO:journalctl@ceph.mon.b.smithi090.stdout: ** File Read Latency Histogram By Level [default] ** 2024-09-07T08:14:18.501 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: mon.b does not exist in monmap, will attempt to join an existing cluster 2024-09-07T08:14:18.501 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: using public_addr v2:172.21.15.90:0/0 -> [v2:172.21.15.90:3300/0,v1:172.21.15.90:6789/0] 2024-09-07T08:14:18.501 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: starting mon.b rank -1 at public addrs [v2:172.21.15.90:3300/0,v1:172.21.15.90:6789/0] at bind addrs [v2:172.21.15.90:3300/0,v1:172.21.15.90:6789/0] mon_data /var/lib/ceph/mon/ceph-b fsid d3fad026-6cf0-11ef-bcea-c7b262605968 2024-09-07T08:14:18.502 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: mon.b@-1(???) e0 preinit fsid d3fad026-6cf0-11ef-bcea-c7b262605968 2024-09-07T08:14:18.502 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: mon.b@-1(synchronizing).mds e1 new map 2024-09-07T08:14:18.502 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: mon.b@-1(synchronizing).mds e1 print_map 2024-09-07T08:14:18.502 INFO:journalctl@ceph.mon.b.smithi090.stdout: e1 2024-09-07T08:14:18.502 INFO:journalctl@ceph.mon.b.smithi090.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-09-07T08:14:18.502 INFO:journalctl@ceph.mon.b.smithi090.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} 2024-09-07T08:14:18.502 INFO:journalctl@ceph.mon.b.smithi090.stdout: legacy client fscid: -1 2024-09-07T08:14:18.502 INFO:journalctl@ceph.mon.b.smithi090.stdout: 2024-09-07T08:14:18.502 INFO:journalctl@ceph.mon.b.smithi090.stdout: No filesystems configured 2024-09-07T08:14:18.502 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: mon.b@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-09-07T08:14:18.502 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: mon.b@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-09-07T08:14:18.502 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: mon.b@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-09-07T08:14:18.502 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: mon.b@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-09-07T08:14:18.502 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: mon.b@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-09-07T08:14:18.503 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: mon.b@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-09-07T08:14:18.503 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: mon.b@-1(synchronizing).osd e4 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-07T08:14:18.503 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: mon.b@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-07T08:14:18.503 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: mon.b@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-07T08:14:18.503 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: mon.b@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-07T08:14:18.503 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:18.503 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-07T08:14:18.503 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:18.503 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:18.503 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:18.503 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:18.503 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:18.503 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi090", "name": "osd_memory_target"}]: dispatch 2024-09-07T08:14:18.503 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:18.503 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:14:18.503 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: Updating smithi090:/etc/ceph/ceph.conf 2024-09-07T08:14:18.504 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: Updating smithi090:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-07T08:14:18.504 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: Updating smithi090:/etc/ceph/ceph.client.admin.keyring 2024-09-07T08:14:18.504 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:18.504 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:18.504 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:18.504 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: Updating smithi090:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-07T08:14:18.504 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi191", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:14:18.504 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:18.504 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: Deploying cephadm binary to smithi191 2024-09-07T08:14:18.504 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:18.505 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:18.505 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:14:18.505 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: Added host smithi191 2024-09-07T08:14:18.505 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:18.505 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:18.505 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:18.505 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:18.505 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-07T08:14:18.505 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:18.505 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:18.505 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:18.505 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:18.505 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:18.505 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi191", "name": "osd_memory_target"}]: dispatch 2024-09-07T08:14:18.506 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:18.506 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:14:18.506 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: Updating smithi191:/etc/ceph/ceph.conf 2024-09-07T08:14:18.506 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:18.506 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:18.506 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:18.506 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='client.? 172.21.15.18:0/1165889532' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-09-07T08:14:18.506 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: Updating smithi191:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-07T08:14:18.506 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: Updating smithi191:/etc/ceph/ceph.client.admin.keyring 2024-09-07T08:14:18.506 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: Updating smithi191:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-07T08:14:18.506 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:18.506 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='client.? 172.21.15.18:0/1165889532' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-07T08:14:18.506 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: osdmap e4: 0 total, 0 up, 0 in 2024-09-07T08:14:18.506 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:18.506 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi018:172.21.15.18=a;smithi090:172.21.15.90=b;smithi191:172.21.15.191=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:14:18.507 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: Saving service mon spec with placement smithi018:172.21.15.18=a;smithi090:172.21.15.90=b;smithi191:172.21.15.191=c;count:3 2024-09-07T08:14:18.507 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:18.507 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:14:18.507 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:18.507 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:14:18.507 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:18.507 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-07T08:14:18.507 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:18.507 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: Deploying daemon mon.c on smithi191 2024-09-07T08:14:18.507 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:18.507 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:18.507 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='client.? 172.21.15.191:0/49466191' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-07T08:14:18.507 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-07T08:14:18.507 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-07T08:14:18.507 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: mon.a calling monitor election 2024-09-07T08:14:18.508 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-07T08:14:18.508 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:18.508 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-07T08:14:18.508 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: mon.c calling monitor election 2024-09-07T08:14:18.508 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-07T08:14:18.508 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:18.508 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-07T08:14:18.508 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-07T08:14:18.508 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-07T08:14:18.508 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: monmap e2: 2 mons at {a=[v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0],c=[v2:172.21.15.191:3300/0,v1:172.21.15.191:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-07T08:14:18.508 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: fsmap 2024-09-07T08:14:18.508 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: osdmap e4: 0 total, 0 up, 0 in 2024-09-07T08:14:18.508 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: mgrmap e13: a(active, since 47s) 2024-09-07T08:14:18.508 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: overall HEALTH_OK 2024-09-07T08:14:18.509 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:18.509 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:18.509 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:18.509 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-07T08:14:18.509 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:18.509 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: Deploying daemon mon.b on smithi090 2024-09-07T08:14:18.509 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:18.509 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-07T08:14:18.509 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: from='client.? 172.21.15.191:0/2399161604' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-07T08:14:18.509 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:18.509 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 ceph-mon[33260]: mon.b@-1(synchronizing).paxosservice(auth 1..3) refresh upgraded, format 0 -> 3 2024-09-07T08:14:18.509 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 bash[33242]: 37f591bda64cfa5483366b87841097c0269a03bbb168de484217e5394c035530 2024-09-07T08:14:18.509 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:18 smithi090 systemd[1]: Started Ceph mon.b for d3fad026-6cf0-11ef-bcea-c7b262605968. 2024-09-07T08:14:23.637 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:23 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-07T08:14:23.637 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:23 smithi018 ceph-mon[30322]: mon.a calling monitor election 2024-09-07T08:14:23.637 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:23 smithi018 ceph-mon[30322]: mon.c calling monitor election 2024-09-07T08:14:23.637 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:23 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:14:23.637 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:23 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-07T08:14:23.638 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:23 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:14:23.638 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:23 smithi018 ceph-mon[30322]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:23.638 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:23 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:14:23.638 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:23 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:14:23.638 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:23 smithi018 ceph-mon[30322]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:23.638 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:23 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:14:23.638 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:23 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:14:23.638 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:23 smithi018 ceph-mon[30322]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-07T08:14:23.638 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:23 smithi018 ceph-mon[30322]: monmap e3: 3 mons at {a=[v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0],b=[v2:172.21.15.90:3300/0,v1:172.21.15.90:6789/0],c=[v2:172.21.15.191:3300/0,v1:172.21.15.191:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-07T08:14:23.638 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:23 smithi018 ceph-mon[30322]: fsmap 2024-09-07T08:14:23.638 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:23 smithi018 ceph-mon[30322]: osdmap e4: 0 total, 0 up, 0 in 2024-09-07T08:14:23.638 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:23 smithi018 ceph-mon[30322]: mgrmap e13: a(active, since 55s) 2024-09-07T08:14:23.638 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:23 smithi018 ceph-mon[30322]: Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-09-07T08:14:23.639 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:23 smithi018 ceph-mon[30322]: Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-09-07T08:14:23.639 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:23 smithi018 ceph-mon[30322]: [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-09-07T08:14:23.639 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:23 smithi018 ceph-mon[30322]: mon.b (rank 2) addr [v2:172.21.15.90:3300/0,v1:172.21.15.90:6789/0] is down (out of quorum) 2024-09-07T08:14:23.639 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:23 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:23.639 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:23 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:23.639 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:23 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:23.639 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:23 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:23.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:23 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-07T08:14:23.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:23 smithi191 ceph-mon[34025]: mon.a calling monitor election 2024-09-07T08:14:23.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:23 smithi191 ceph-mon[34025]: mon.c calling monitor election 2024-09-07T08:14:23.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:23 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:14:23.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:23 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-07T08:14:23.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:23 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:14:23.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:23 smithi191 ceph-mon[34025]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:23.642 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:23 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:14:23.642 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:23 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:14:23.642 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:23 smithi191 ceph-mon[34025]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:23.642 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:23 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:14:23.642 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:23 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:14:23.642 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:23 smithi191 ceph-mon[34025]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-07T08:14:23.642 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:23 smithi191 ceph-mon[34025]: monmap e3: 3 mons at {a=[v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0],b=[v2:172.21.15.90:3300/0,v1:172.21.15.90:6789/0],c=[v2:172.21.15.191:3300/0,v1:172.21.15.191:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-07T08:14:23.642 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:23 smithi191 ceph-mon[34025]: fsmap 2024-09-07T08:14:23.642 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:23 smithi191 ceph-mon[34025]: osdmap e4: 0 total, 0 up, 0 in 2024-09-07T08:14:23.642 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:23 smithi191 ceph-mon[34025]: mgrmap e13: a(active, since 55s) 2024-09-07T08:14:23.642 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:23 smithi191 ceph-mon[34025]: Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-09-07T08:14:23.642 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:23 smithi191 ceph-mon[34025]: Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-09-07T08:14:23.642 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:23 smithi191 ceph-mon[34025]: [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-09-07T08:14:23.642 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:23 smithi191 ceph-mon[34025]: mon.b (rank 2) addr [v2:172.21.15.90:3300/0,v1:172.21.15.90:6789/0] is down (out of quorum) 2024-09-07T08:14:23.642 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:23 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:23.642 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:23 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:23.643 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:23 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:23.643 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:23 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:23.966 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-07T08:14:23.967 INFO:teuthology.orchestra.run.smithi191.stdout:{"epoch":3,"fsid":"d3fad026-6cf0-11ef-bcea-c7b262605968","modified":"2024-09-07T08:14:18.186833Z","created":"2024-09-07T08:12:37.434253Z","min_mon_release":18,"min_mon_release_name":"reef","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"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:3300","nonce":0},{"type":"v1","addr":"172.21.15.18:6789","nonce":0}]},"addr":"172.21.15.18:6789/0","public_addr":"172.21.15.18: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.90:3300","nonce":0},{"type":"v1","addr":"172.21.15.90:6789","nonce":0}]},"addr":"172.21.15.90:6789/0","public_addr":"172.21.15.90:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-09-07T08:14:23.967 INFO:teuthology.orchestra.run.smithi191.stderr:dumped monmap epoch 3 2024-09-07T08:14:24.533 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:24 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:14:24.533 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:24 smithi191 ceph-mon[34025]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:24.533 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:24 smithi191 ceph-mon[34025]: from='client.? 172.21.15.191:0/2710946283' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-07T08:14:24.533 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:24 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:24.534 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:24 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:24.534 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:24 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:14:24.626 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:24 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:14:24.626 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:24 smithi018 ceph-mon[30322]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:24.627 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:24 smithi018 ceph-mon[30322]: from='client.? 172.21.15.191:0/2710946283' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-07T08:14:24.627 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:24 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:24.627 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:24 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:24.627 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:24 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:14:24.899 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-09-07T08:14:24.899 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph config generate-minimal-conf 2024-09-07T08:14:25.114 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:14:25.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:25 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-07T08:14:25.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:25 smithi090 ceph-mon[33260]: mon.a calling monitor election 2024-09-07T08:14:25.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:25 smithi090 ceph-mon[33260]: mon.c calling monitor election 2024-09-07T08:14:25.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:25 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:14:25.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:25 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-07T08:14:25.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:25 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:14:25.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:25 smithi090 ceph-mon[33260]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:25.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:25 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:14:25.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:25 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:14:25.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:25 smithi090 ceph-mon[33260]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:25.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:25 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:14:25.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:25 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:14:25.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:25 smithi090 ceph-mon[33260]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-07T08:14:25.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:25 smithi090 ceph-mon[33260]: monmap e3: 3 mons at {a=[v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0],b=[v2:172.21.15.90:3300/0,v1:172.21.15.90:6789/0],c=[v2:172.21.15.191:3300/0,v1:172.21.15.191:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-07T08:14:25.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:25 smithi090 ceph-mon[33260]: fsmap 2024-09-07T08:14:25.481 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:25 smithi090 ceph-mon[33260]: osdmap e4: 0 total, 0 up, 0 in 2024-09-07T08:14:25.481 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:25 smithi090 ceph-mon[33260]: mgrmap e13: a(active, since 55s) 2024-09-07T08:14:25.481 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:25 smithi090 ceph-mon[33260]: Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-09-07T08:14:25.481 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:25 smithi090 ceph-mon[33260]: Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-09-07T08:14:25.481 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:25 smithi090 ceph-mon[33260]: [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-09-07T08:14:25.481 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:25 smithi090 ceph-mon[33260]: mon.b (rank 2) addr [v2:172.21.15.90:3300/0,v1:172.21.15.90:6789/0] is down (out of quorum) 2024-09-07T08:14:25.481 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:25 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:25.481 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:25 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:25.481 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:25 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:25.481 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:25 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:25.481 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:25 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:14:25.481 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:25 smithi090 ceph-mon[33260]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:25.482 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:25 smithi090 ceph-mon[33260]: from='client.? 172.21.15.191:0/2710946283' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-07T08:14:25.482 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:25 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:25.482 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:25 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:25.482 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:25 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:14:26.178 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:26 smithi018 ceph-mon[30322]: mon.b calling monitor election 2024-09-07T08:14:26.178 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:26 smithi018 ceph-mon[30322]: Updating smithi018:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-07T08:14:26.178 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:26 smithi018 ceph-mon[30322]: Updating smithi191:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-07T08:14:26.178 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:26 smithi018 ceph-mon[30322]: Updating smithi090:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-07T08:14:26.178 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:26 smithi018 ceph-mon[30322]: Reconfiguring mon.a (unknown last config time)... 2024-09-07T08:14:26.178 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:26 smithi018 ceph-mon[30322]: Reconfiguring daemon mon.a on smithi018 2024-09-07T08:14:26.178 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:26 smithi018 ceph-mon[30322]: mon.b calling monitor election 2024-09-07T08:14:26.178 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:26 smithi018 ceph-mon[30322]: mon.c calling monitor election 2024-09-07T08:14:26.178 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:26 smithi018 ceph-mon[30322]: mon.a calling monitor election 2024-09-07T08:14:26.178 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:26 smithi018 ceph-mon[30322]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-07T08:14:26.178 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:26 smithi018 ceph-mon[30322]: monmap e3: 3 mons at {a=[v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0],b=[v2:172.21.15.90:3300/0,v1:172.21.15.90:6789/0],c=[v2:172.21.15.191:3300/0,v1:172.21.15.191:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-07T08:14:26.179 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:26 smithi018 ceph-mon[30322]: fsmap 2024-09-07T08:14:26.179 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:26 smithi018 ceph-mon[30322]: osdmap e4: 0 total, 0 up, 0 in 2024-09-07T08:14:26.179 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:26 smithi018 ceph-mon[30322]: mgrmap e13: a(active, since 57s) 2024-09-07T08:14:26.179 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:26 smithi018 ceph-mon[30322]: Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-09-07T08:14:26.179 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:26 smithi018 ceph-mon[30322]: Cluster is now healthy 2024-09-07T08:14:26.179 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:26 smithi018 ceph-mon[30322]: overall HEALTH_OK 2024-09-07T08:14:26.179 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:26 smithi018 ceph-mon[30322]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:26.391 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:26 smithi191 ceph-mon[34025]: mon.b calling monitor election 2024-09-07T08:14:26.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:26 smithi191 ceph-mon[34025]: Updating smithi018:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-07T08:14:26.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:26 smithi191 ceph-mon[34025]: Updating smithi191:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-07T08:14:26.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:26 smithi191 ceph-mon[34025]: Updating smithi090:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-07T08:14:26.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:26 smithi191 ceph-mon[34025]: Reconfiguring mon.a (unknown last config time)... 2024-09-07T08:14:26.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:26 smithi191 ceph-mon[34025]: Reconfiguring daemon mon.a on smithi018 2024-09-07T08:14:26.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:26 smithi191 ceph-mon[34025]: mon.b calling monitor election 2024-09-07T08:14:26.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:26 smithi191 ceph-mon[34025]: mon.c calling monitor election 2024-09-07T08:14:26.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:26 smithi191 ceph-mon[34025]: mon.a calling monitor election 2024-09-07T08:14:26.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:26 smithi191 ceph-mon[34025]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-07T08:14:26.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:26 smithi191 ceph-mon[34025]: monmap e3: 3 mons at {a=[v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0],b=[v2:172.21.15.90:3300/0,v1:172.21.15.90:6789/0],c=[v2:172.21.15.191:3300/0,v1:172.21.15.191:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-07T08:14:26.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:26 smithi191 ceph-mon[34025]: fsmap 2024-09-07T08:14:26.393 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:26 smithi191 ceph-mon[34025]: osdmap e4: 0 total, 0 up, 0 in 2024-09-07T08:14:26.393 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:26 smithi191 ceph-mon[34025]: mgrmap e13: a(active, since 57s) 2024-09-07T08:14:26.393 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:26 smithi191 ceph-mon[34025]: Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-09-07T08:14:26.393 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:26 smithi191 ceph-mon[34025]: Cluster is now healthy 2024-09-07T08:14:26.393 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:26 smithi191 ceph-mon[34025]: overall HEALTH_OK 2024-09-07T08:14:26.393 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:26 smithi191 ceph-mon[34025]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:26.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:26 smithi090 ceph-mon[33260]: mon.b calling monitor election 2024-09-07T08:14:26.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:26 smithi090 ceph-mon[33260]: Updating smithi018:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-07T08:14:26.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:26 smithi090 ceph-mon[33260]: Updating smithi191:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-07T08:14:26.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:26 smithi090 ceph-mon[33260]: Updating smithi090:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-07T08:14:26.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:26 smithi090 ceph-mon[33260]: Reconfiguring mon.a (unknown last config time)... 2024-09-07T08:14:26.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:26 smithi090 ceph-mon[33260]: Reconfiguring daemon mon.a on smithi018 2024-09-07T08:14:26.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:26 smithi090 ceph-mon[33260]: mon.b calling monitor election 2024-09-07T08:14:26.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:26 smithi090 ceph-mon[33260]: mon.c calling monitor election 2024-09-07T08:14:26.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:26 smithi090 ceph-mon[33260]: mon.a calling monitor election 2024-09-07T08:14:26.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:26 smithi090 ceph-mon[33260]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-07T08:14:26.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:26 smithi090 ceph-mon[33260]: monmap e3: 3 mons at {a=[v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0],b=[v2:172.21.15.90:3300/0,v1:172.21.15.90:6789/0],c=[v2:172.21.15.191:3300/0,v1:172.21.15.191:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-07T08:14:26.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:26 smithi090 ceph-mon[33260]: fsmap 2024-09-07T08:14:26.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:26 smithi090 ceph-mon[33260]: osdmap e4: 0 total, 0 up, 0 in 2024-09-07T08:14:26.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:26 smithi090 ceph-mon[33260]: mgrmap e13: a(active, since 57s) 2024-09-07T08:14:26.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:26 smithi090 ceph-mon[33260]: Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-09-07T08:14:26.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:26 smithi090 ceph-mon[33260]: Cluster is now healthy 2024-09-07T08:14:26.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:26 smithi090 ceph-mon[33260]: overall HEALTH_OK 2024-09-07T08:14:26.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:26 smithi090 ceph-mon[33260]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:27.016 INFO:teuthology.orchestra.run.smithi018.stdout:# minimal ceph.conf for d3fad026-6cf0-11ef-bcea-c7b262605968 2024-09-07T08:14:27.016 INFO:teuthology.orchestra.run.smithi018.stdout:[global] 2024-09-07T08:14:27.016 INFO:teuthology.orchestra.run.smithi018.stdout: fsid = d3fad026-6cf0-11ef-bcea-c7b262605968 2024-09-07T08:14:27.016 INFO:teuthology.orchestra.run.smithi018.stdout: mon_host = [v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0] [v2:172.21.15.90:3300/0,v1:172.21.15.90:6789/0] [v2:172.21.15.191:3300/0,v1:172.21.15.191:6789/0] 2024-09-07T08:14:27.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:27 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:14:27.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:27 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/365534181' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:27.391 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:27 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:14:27.391 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:27 smithi191 ceph-mon[34025]: from='client.? 172.21.15.18:0/365534181' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:27.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:27 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:14:27.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:27 smithi090 ceph-mon[33260]: from='client.? 172.21.15.18:0/365534181' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:28.121 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-09-07T08:14:28.121 DEBUG:teuthology.orchestra.run.smithi018:> set -ex 2024-09-07T08:14:28.122 DEBUG:teuthology.orchestra.run.smithi018:> sudo dd of=/etc/ceph/ceph.conf 2024-09-07T08:14:28.150 DEBUG:teuthology.orchestra.run.smithi018:> set -ex 2024-09-07T08:14:28.150 DEBUG:teuthology.orchestra.run.smithi018:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-07T08:14:28.216 DEBUG:teuthology.orchestra.run.smithi090:> set -ex 2024-09-07T08:14:28.216 DEBUG:teuthology.orchestra.run.smithi090:> sudo dd of=/etc/ceph/ceph.conf 2024-09-07T08:14:28.244 DEBUG:teuthology.orchestra.run.smithi090:> set -ex 2024-09-07T08:14:28.244 DEBUG:teuthology.orchestra.run.smithi090:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-07T08:14:28.309 DEBUG:teuthology.orchestra.run.smithi191:> set -ex 2024-09-07T08:14:28.309 DEBUG:teuthology.orchestra.run.smithi191:> sudo dd of=/etc/ceph/ceph.conf 2024-09-07T08:14:28.343 DEBUG:teuthology.orchestra.run.smithi191:> set -ex 2024-09-07T08:14:28.343 DEBUG:teuthology.orchestra.run.smithi191:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-07T08:14:28.412 INFO:tasks.cephadm:Adding mgr.a on smithi018 2024-09-07T08:14:28.412 INFO:tasks.cephadm:Adding mgr.b on smithi090 2024-09-07T08:14:28.412 DEBUG:teuthology.orchestra.run.smithi191:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph orch apply mgr '2;smithi018=a;smithi090=b' 2024-09-07T08:14:28.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:28 smithi191 ceph-mon[34025]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:28.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:28 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:28.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:28 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:28.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:28 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:28.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:28 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-07T08:14:28.642 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:28 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-07T08:14:28.642 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:28 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:28.644 INFO:teuthology.orchestra.run.smithi191.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.c/config 2024-09-07T08:14:28.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:28 smithi018 ceph-mon[30322]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:28.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:28 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:28.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:28 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:28.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:28 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:28.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:28 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-07T08:14:28.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:28 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-07T08:14:28.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:28 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:28.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:28 smithi090 ceph-mon[33260]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:28.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:28 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:28.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:28 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:28.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:28 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:28.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:28 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-07T08:14:28.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:28 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-07T08:14:28.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:28 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:29.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:29 smithi018 ceph-mon[30322]: Reconfiguring mon.b (monmap changed)... 2024-09-07T08:14:29.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:29 smithi018 ceph-mon[30322]: Reconfiguring daemon mon.b on smithi090 2024-09-07T08:14:29.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:29 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:29.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:29 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:29.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:29 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-07T08:14:29.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:29 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-07T08:14:29.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:29 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:29.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:29 smithi090 ceph-mon[33260]: Reconfiguring mon.b (monmap changed)... 2024-09-07T08:14:29.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:29 smithi090 ceph-mon[33260]: Reconfiguring daemon mon.b on smithi090 2024-09-07T08:14:29.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:29 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:29.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:29 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:29.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:29 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-07T08:14:29.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:29 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-07T08:14:29.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:29 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:29.733 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:29 smithi191 ceph-mon[34025]: Reconfiguring mon.b (monmap changed)... 2024-09-07T08:14:29.733 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:29 smithi191 ceph-mon[34025]: Reconfiguring daemon mon.b on smithi090 2024-09-07T08:14:29.733 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:29 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:29.733 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:29 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:29.733 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:29 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-07T08:14:29.733 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:29 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-07T08:14:29.733 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:29 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:30.631 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:30 smithi191 ceph-mon[34025]: Reconfiguring mon.c (monmap changed)... 2024-09-07T08:14:30.632 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:30 smithi191 ceph-mon[34025]: Reconfiguring daemon mon.c on smithi191 2024-09-07T08:14:30.632 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:30 smithi191 ceph-mon[34025]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:30.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:30 smithi018 ceph-mon[30322]: Reconfiguring mon.c (monmap changed)... 2024-09-07T08:14:30.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:30 smithi018 ceph-mon[30322]: Reconfiguring daemon mon.c on smithi191 2024-09-07T08:14:30.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:30 smithi018 ceph-mon[30322]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:30.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:30 smithi090 ceph-mon[33260]: Reconfiguring mon.c (monmap changed)... 2024-09-07T08:14:30.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:30 smithi090 ceph-mon[33260]: Reconfiguring daemon mon.c on smithi191 2024-09-07T08:14:30.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:30 smithi090 ceph-mon[33260]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:30.900 INFO:teuthology.orchestra.run.smithi191.stdout:Scheduled mgr update... 2024-09-07T08:14:31.634 DEBUG:teuthology.orchestra.run.smithi090:mgr.b> sudo journalctl -f -n 0 -u ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@mgr.b.service 2024-09-07T08:14:31.636 INFO:tasks.cephadm:Deploying OSDs... 2024-09-07T08:14:31.637 DEBUG:teuthology.orchestra.run.smithi018:> set -ex 2024-09-07T08:14:31.637 DEBUG:teuthology.orchestra.run.smithi018:> dd if=/scratch_devs of=/dev/stdout 2024-09-07T08:14:31.653 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-07T08:14:31.653 DEBUG:teuthology.orchestra.run.smithi018:> stat /dev/vg_nvme/lv_1 2024-09-07T08:14:31.709 INFO:teuthology.orchestra.run.smithi018.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-07T08:14:31.709 INFO:teuthology.orchestra.run.smithi018.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-07T08:14:31.709 INFO:teuthology.orchestra.run.smithi018.stdout:Device: 5h/5d Inode: 982 Links: 1 2024-09-07T08:14:31.709 INFO:teuthology.orchestra.run.smithi018.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-07T08:14:31.709 INFO:teuthology.orchestra.run.smithi018.stdout:Context: system_u:object_r:device_t:s0 2024-09-07T08:14:31.709 INFO:teuthology.orchestra.run.smithi018.stdout:Access: 2024-09-07 08:13:39.308211533 +0000 2024-09-07T08:14:31.709 INFO:teuthology.orchestra.run.smithi018.stdout:Modify: 2024-09-07 08:09:34.366718633 +0000 2024-09-07T08:14:31.709 INFO:teuthology.orchestra.run.smithi018.stdout:Change: 2024-09-07 08:09:34.366718633 +0000 2024-09-07T08:14:31.709 INFO:teuthology.orchestra.run.smithi018.stdout: Birth: 2024-09-07 08:09:34.366718633 +0000 2024-09-07T08:14:31.710 DEBUG:teuthology.orchestra.run.smithi018:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-07T08:14:31.773 INFO:teuthology.orchestra.run.smithi018.stderr:1+0 records in 2024-09-07T08:14:31.774 INFO:teuthology.orchestra.run.smithi018.stderr:1+0 records out 2024-09-07T08:14:31.774 INFO:teuthology.orchestra.run.smithi018.stderr:512 bytes copied, 0.000108907 s, 4.7 MB/s 2024-09-07T08:14:31.775 DEBUG:teuthology.orchestra.run.smithi018:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-07T08:14:31.833 DEBUG:teuthology.orchestra.run.smithi018:> stat /dev/vg_nvme/lv_2 2024-09-07T08:14:31.888 INFO:teuthology.orchestra.run.smithi018.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-07T08:14:31.888 INFO:teuthology.orchestra.run.smithi018.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-07T08:14:31.889 INFO:teuthology.orchestra.run.smithi018.stdout:Device: 5h/5d Inode: 972 Links: 1 2024-09-07T08:14:31.889 INFO:teuthology.orchestra.run.smithi018.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-07T08:14:31.889 INFO:teuthology.orchestra.run.smithi018.stdout:Context: system_u:object_r:device_t:s0 2024-09-07T08:14:31.889 INFO:teuthology.orchestra.run.smithi018.stdout:Access: 2024-09-07 08:13:39.336211228 +0000 2024-09-07T08:14:31.889 INFO:teuthology.orchestra.run.smithi018.stdout:Modify: 2024-09-07 08:09:34.365718644 +0000 2024-09-07T08:14:31.889 INFO:teuthology.orchestra.run.smithi018.stdout:Change: 2024-09-07 08:09:34.365718644 +0000 2024-09-07T08:14:31.889 INFO:teuthology.orchestra.run.smithi018.stdout: Birth: 2024-09-07 08:09:34.365718644 +0000 2024-09-07T08:14:31.889 DEBUG:teuthology.orchestra.run.smithi018:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-07T08:14:31.911 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:31 smithi090 ceph-mon[33260]: from='client.24100 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi018=a;smithi090=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:14:31.911 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:31 smithi090 ceph-mon[33260]: Saving service mgr spec with placement smithi018=a;smithi090=b;count:2 2024-09-07T08:14:31.911 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:31 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:31.911 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:31 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:31.911 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:31 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:31.911 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:31 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:14:31.912 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:31 smithi090 ceph-mon[33260]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:31.912 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:31 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:31.912 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:31 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:14:31.912 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:31 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:31.912 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:31 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-07T08:14:31.912 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:31 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-07T08:14:31.912 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:31 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-07T08:14:31.912 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:31 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:31.912 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:31 smithi090 ceph-mon[33260]: Deploying daemon mgr.b on smithi090 2024-09-07T08:14:31.951 INFO:teuthology.orchestra.run.smithi018.stderr:1+0 records in 2024-09-07T08:14:31.952 INFO:teuthology.orchestra.run.smithi018.stderr:1+0 records out 2024-09-07T08:14:31.952 INFO:teuthology.orchestra.run.smithi018.stderr:512 bytes copied, 0.000104883 s, 4.9 MB/s 2024-09-07T08:14:31.953 DEBUG:teuthology.orchestra.run.smithi018:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-07T08:14:32.009 DEBUG:teuthology.orchestra.run.smithi018:> stat /dev/vg_nvme/lv_3 2024-09-07T08:14:32.064 INFO:teuthology.orchestra.run.smithi018.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-07T08:14:32.064 INFO:teuthology.orchestra.run.smithi018.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-07T08:14:32.064 INFO:teuthology.orchestra.run.smithi018.stdout:Device: 5h/5d Inode: 966 Links: 1 2024-09-07T08:14:32.064 INFO:teuthology.orchestra.run.smithi018.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-07T08:14:32.064 INFO:teuthology.orchestra.run.smithi018.stdout:Context: system_u:object_r:device_t:s0 2024-09-07T08:14:32.064 INFO:teuthology.orchestra.run.smithi018.stdout:Access: 2024-09-07 08:13:39.362210945 +0000 2024-09-07T08:14:32.064 INFO:teuthology.orchestra.run.smithi018.stdout:Modify: 2024-09-07 08:09:34.365718644 +0000 2024-09-07T08:14:32.064 INFO:teuthology.orchestra.run.smithi018.stdout:Change: 2024-09-07 08:09:34.365718644 +0000 2024-09-07T08:14:32.065 INFO:teuthology.orchestra.run.smithi018.stdout: Birth: 2024-09-07 08:09:34.365718644 +0000 2024-09-07T08:14:32.065 DEBUG:teuthology.orchestra.run.smithi018:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-07T08:14:32.125 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:31 smithi018 ceph-mon[30322]: from='client.24100 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi018=a;smithi090=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:14:32.125 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:31 smithi018 ceph-mon[30322]: Saving service mgr spec with placement smithi018=a;smithi090=b;count:2 2024-09-07T08:14:32.125 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:31 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:32.125 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:31 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:32.125 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:31 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:32.125 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:31 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:14:32.126 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:31 smithi018 ceph-mon[30322]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:32.126 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:31 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:32.126 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:31 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:14:32.126 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:31 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:32.126 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:31 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-07T08:14:32.126 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:31 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-07T08:14:32.126 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:31 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-07T08:14:32.126 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:31 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:32.126 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:31 smithi018 ceph-mon[30322]: Deploying daemon mgr.b on smithi090 2024-09-07T08:14:32.127 INFO:teuthology.orchestra.run.smithi018.stderr:1+0 records in 2024-09-07T08:14:32.127 INFO:teuthology.orchestra.run.smithi018.stderr:1+0 records out 2024-09-07T08:14:32.127 INFO:teuthology.orchestra.run.smithi018.stderr:512 bytes copied, 9.5594e-05 s, 5.4 MB/s 2024-09-07T08:14:32.128 DEBUG:teuthology.orchestra.run.smithi018:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-07T08:14:32.184 DEBUG:teuthology.orchestra.run.smithi018:> stat /dev/vg_nvme/lv_4 2024-09-07T08:14:32.240 INFO:teuthology.orchestra.run.smithi018.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-07T08:14:32.241 INFO:teuthology.orchestra.run.smithi018.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-07T08:14:32.241 INFO:teuthology.orchestra.run.smithi018.stdout:Device: 5h/5d Inode: 971 Links: 1 2024-09-07T08:14:32.241 INFO:teuthology.orchestra.run.smithi018.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-07T08:14:32.241 INFO:teuthology.orchestra.run.smithi018.stdout:Context: system_u:object_r:device_t:s0 2024-09-07T08:14:32.241 INFO:teuthology.orchestra.run.smithi018.stdout:Access: 2024-09-07 08:13:39.389210651 +0000 2024-09-07T08:14:32.241 INFO:teuthology.orchestra.run.smithi018.stdout:Modify: 2024-09-07 08:09:34.365718644 +0000 2024-09-07T08:14:32.241 INFO:teuthology.orchestra.run.smithi018.stdout:Change: 2024-09-07 08:09:34.365718644 +0000 2024-09-07T08:14:32.241 INFO:teuthology.orchestra.run.smithi018.stdout: Birth: 2024-09-07 08:09:34.365718644 +0000 2024-09-07T08:14:32.241 DEBUG:teuthology.orchestra.run.smithi018:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-07T08:14:32.303 INFO:teuthology.orchestra.run.smithi018.stderr:1+0 records in 2024-09-07T08:14:32.304 INFO:teuthology.orchestra.run.smithi018.stderr:1+0 records out 2024-09-07T08:14:32.304 INFO:teuthology.orchestra.run.smithi018.stderr:512 bytes copied, 0.000104681 s, 4.9 MB/s 2024-09-07T08:14:32.305 DEBUG:teuthology.orchestra.run.smithi018:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-07T08:14:32.361 DEBUG:teuthology.orchestra.run.smithi090:> set -ex 2024-09-07T08:14:32.361 DEBUG:teuthology.orchestra.run.smithi090:> dd if=/scratch_devs of=/dev/stdout 2024-09-07T08:14:32.378 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-07T08:14:32.378 DEBUG:teuthology.orchestra.run.smithi090:> stat /dev/vg_nvme/lv_1 2024-09-07T08:14:32.391 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:31 smithi191 ceph-mon[34025]: from='client.24100 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi018=a;smithi090=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:14:32.391 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:31 smithi191 ceph-mon[34025]: Saving service mgr spec with placement smithi018=a;smithi090=b;count:2 2024-09-07T08:14:32.391 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:31 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:32.391 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:31 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:32.391 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:31 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:32.391 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:31 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:14:32.391 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:31 smithi191 ceph-mon[34025]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:32.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:31 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:32.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:31 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:14:32.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:31 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:32.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:31 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-07T08:14:32.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:31 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-07T08:14:32.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:31 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-07T08:14:32.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:31 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:32.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:31 smithi191 ceph-mon[34025]: Deploying daemon mgr.b on smithi090 2024-09-07T08:14:32.434 INFO:teuthology.orchestra.run.smithi090.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-07T08:14:32.434 INFO:teuthology.orchestra.run.smithi090.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-07T08:14:32.434 INFO:teuthology.orchestra.run.smithi090.stdout:Device: 5h/5d Inode: 981 Links: 1 2024-09-07T08:14:32.434 INFO:teuthology.orchestra.run.smithi090.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-07T08:14:32.434 INFO:teuthology.orchestra.run.smithi090.stdout:Context: system_u:object_r:device_t:s0 2024-09-07T08:14:32.435 INFO:teuthology.orchestra.run.smithi090.stdout:Access: 2024-09-07 08:14:17.649152375 +0000 2024-09-07T08:14:32.435 INFO:teuthology.orchestra.run.smithi090.stdout:Modify: 2024-09-07 08:09:34.594375340 +0000 2024-09-07T08:14:32.435 INFO:teuthology.orchestra.run.smithi090.stdout:Change: 2024-09-07 08:09:34.594375340 +0000 2024-09-07T08:14:32.435 INFO:teuthology.orchestra.run.smithi090.stdout: Birth: 2024-09-07 08:09:34.594375340 +0000 2024-09-07T08:14:32.435 DEBUG:teuthology.orchestra.run.smithi090:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-07T08:14:32.498 INFO:teuthology.orchestra.run.smithi090.stderr:1+0 records in 2024-09-07T08:14:32.498 INFO:teuthology.orchestra.run.smithi090.stderr:1+0 records out 2024-09-07T08:14:32.499 INFO:teuthology.orchestra.run.smithi090.stderr:512 bytes copied, 0.00018877 s, 2.7 MB/s 2024-09-07T08:14:32.500 DEBUG:teuthology.orchestra.run.smithi090:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-07T08:14:32.556 DEBUG:teuthology.orchestra.run.smithi090:> stat /dev/vg_nvme/lv_2 2024-09-07T08:14:32.613 INFO:teuthology.orchestra.run.smithi090.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-07T08:14:32.613 INFO:teuthology.orchestra.run.smithi090.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-07T08:14:32.613 INFO:teuthology.orchestra.run.smithi090.stdout:Device: 5h/5d Inode: 977 Links: 1 2024-09-07T08:14:32.613 INFO:teuthology.orchestra.run.smithi090.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-07T08:14:32.613 INFO:teuthology.orchestra.run.smithi090.stdout:Context: system_u:object_r:device_t:s0 2024-09-07T08:14:32.613 INFO:teuthology.orchestra.run.smithi090.stdout:Access: 2024-09-07 08:14:17.650152359 +0000 2024-09-07T08:14:32.613 INFO:teuthology.orchestra.run.smithi090.stdout:Modify: 2024-09-07 08:09:34.593375355 +0000 2024-09-07T08:14:32.613 INFO:teuthology.orchestra.run.smithi090.stdout:Change: 2024-09-07 08:09:34.593375355 +0000 2024-09-07T08:14:32.613 INFO:teuthology.orchestra.run.smithi090.stdout: Birth: 2024-09-07 08:09:34.593375355 +0000 2024-09-07T08:14:32.614 DEBUG:teuthology.orchestra.run.smithi090:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-07T08:14:32.676 INFO:teuthology.orchestra.run.smithi090.stderr:1+0 records in 2024-09-07T08:14:32.676 INFO:teuthology.orchestra.run.smithi090.stderr:1+0 records out 2024-09-07T08:14:32.676 INFO:teuthology.orchestra.run.smithi090.stderr:512 bytes copied, 0.00019649 s, 2.6 MB/s 2024-09-07T08:14:32.677 DEBUG:teuthology.orchestra.run.smithi090:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-07T08:14:32.733 DEBUG:teuthology.orchestra.run.smithi090:> stat /dev/vg_nvme/lv_3 2024-09-07T08:14:32.790 INFO:teuthology.orchestra.run.smithi090.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-07T08:14:32.790 INFO:teuthology.orchestra.run.smithi090.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-07T08:14:32.790 INFO:teuthology.orchestra.run.smithi090.stdout:Device: 5h/5d Inode: 971 Links: 1 2024-09-07T08:14:32.790 INFO:teuthology.orchestra.run.smithi090.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-07T08:14:32.790 INFO:teuthology.orchestra.run.smithi090.stdout:Context: system_u:object_r:device_t:s0 2024-09-07T08:14:32.790 INFO:teuthology.orchestra.run.smithi090.stdout:Access: 2024-09-07 08:14:17.650152359 +0000 2024-09-07T08:14:32.790 INFO:teuthology.orchestra.run.smithi090.stdout:Modify: 2024-09-07 08:09:34.593375355 +0000 2024-09-07T08:14:32.790 INFO:teuthology.orchestra.run.smithi090.stdout:Change: 2024-09-07 08:09:34.593375355 +0000 2024-09-07T08:14:32.790 INFO:teuthology.orchestra.run.smithi090.stdout: Birth: 2024-09-07 08:09:34.593375355 +0000 2024-09-07T08:14:32.790 DEBUG:teuthology.orchestra.run.smithi090:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-07T08:14:32.874 INFO:teuthology.orchestra.run.smithi090.stderr:1+0 records in 2024-09-07T08:14:32.874 INFO:teuthology.orchestra.run.smithi090.stderr:1+0 records out 2024-09-07T08:14:32.874 INFO:teuthology.orchestra.run.smithi090.stderr:512 bytes copied, 0.000226597 s, 2.3 MB/s 2024-09-07T08:14:32.875 DEBUG:teuthology.orchestra.run.smithi090:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-07T08:14:32.890 DEBUG:teuthology.orchestra.run.smithi090:> stat /dev/vg_nvme/lv_4 2024-09-07T08:14:32.949 INFO:teuthology.orchestra.run.smithi090.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-07T08:14:32.950 INFO:teuthology.orchestra.run.smithi090.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-07T08:14:32.950 INFO:teuthology.orchestra.run.smithi090.stdout:Device: 5h/5d Inode: 961 Links: 1 2024-09-07T08:14:32.950 INFO:teuthology.orchestra.run.smithi090.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-07T08:14:32.950 INFO:teuthology.orchestra.run.smithi090.stdout:Context: system_u:object_r:device_t:s0 2024-09-07T08:14:32.950 INFO:teuthology.orchestra.run.smithi090.stdout:Access: 2024-09-07 08:14:32.825918350 +0000 2024-09-07T08:14:32.950 INFO:teuthology.orchestra.run.smithi090.stdout:Modify: 2024-09-07 08:09:34.592375372 +0000 2024-09-07T08:14:32.950 INFO:teuthology.orchestra.run.smithi090.stdout:Change: 2024-09-07 08:09:34.592375372 +0000 2024-09-07T08:14:32.950 INFO:teuthology.orchestra.run.smithi090.stdout: Birth: 2024-09-07 08:09:34.592375372 +0000 2024-09-07T08:14:32.950 DEBUG:teuthology.orchestra.run.smithi090:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-07T08:14:33.051 INFO:teuthology.orchestra.run.smithi090.stderr:1+0 records in 2024-09-07T08:14:33.051 INFO:teuthology.orchestra.run.smithi090.stderr:1+0 records out 2024-09-07T08:14:33.051 INFO:teuthology.orchestra.run.smithi090.stderr:512 bytes copied, 0.000174503 s, 2.9 MB/s 2024-09-07T08:14:33.053 DEBUG:teuthology.orchestra.run.smithi090:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-07T08:14:33.068 DEBUG:teuthology.orchestra.run.smithi191:> set -ex 2024-09-07T08:14:33.068 DEBUG:teuthology.orchestra.run.smithi191:> dd if=/scratch_devs of=/dev/stdout 2024-09-07T08:14:33.089 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-07T08:14:33.089 DEBUG:teuthology.orchestra.run.smithi191:> stat /dev/vg_nvme/lv_1 2024-09-07T08:14:33.147 INFO:teuthology.orchestra.run.smithi191.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-07T08:14:33.147 INFO:teuthology.orchestra.run.smithi191.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-07T08:14:33.147 INFO:teuthology.orchestra.run.smithi191.stdout:Device: 5h/5d Inode: 970 Links: 1 2024-09-07T08:14:33.147 INFO:teuthology.orchestra.run.smithi191.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-07T08:14:33.147 INFO:teuthology.orchestra.run.smithi191.stdout:Context: system_u:object_r:device_t:s0 2024-09-07T08:14:33.147 INFO:teuthology.orchestra.run.smithi191.stdout:Access: 2024-09-07 08:14:08.788107099 +0000 2024-09-07T08:14:33.147 INFO:teuthology.orchestra.run.smithi191.stdout:Modify: 2024-09-07 08:09:34.923058946 +0000 2024-09-07T08:14:33.147 INFO:teuthology.orchestra.run.smithi191.stdout:Change: 2024-09-07 08:09:34.923058946 +0000 2024-09-07T08:14:33.147 INFO:teuthology.orchestra.run.smithi191.stdout: Birth: 2024-09-07 08:09:34.923058946 +0000 2024-09-07T08:14:33.148 DEBUG:teuthology.orchestra.run.smithi191:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-07T08:14:33.215 INFO:teuthology.orchestra.run.smithi191.stderr:1+0 records in 2024-09-07T08:14:33.215 INFO:teuthology.orchestra.run.smithi191.stderr:1+0 records out 2024-09-07T08:14:33.215 INFO:teuthology.orchestra.run.smithi191.stderr:512 bytes copied, 0.000309128 s, 1.7 MB/s 2024-09-07T08:14:33.216 DEBUG:teuthology.orchestra.run.smithi191:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-07T08:14:33.228 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:14:33 smithi090 systemd[1]: Starting Ceph mgr.b for d3fad026-6cf0-11ef-bcea-c7b262605968... 2024-09-07T08:14:33.275 DEBUG:teuthology.orchestra.run.smithi191:> stat /dev/vg_nvme/lv_2 2024-09-07T08:14:33.332 INFO:teuthology.orchestra.run.smithi191.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-07T08:14:33.333 INFO:teuthology.orchestra.run.smithi191.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-07T08:14:33.333 INFO:teuthology.orchestra.run.smithi191.stdout:Device: 5h/5d Inode: 966 Links: 1 2024-09-07T08:14:33.333 INFO:teuthology.orchestra.run.smithi191.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-07T08:14:33.333 INFO:teuthology.orchestra.run.smithi191.stdout:Context: system_u:object_r:device_t:s0 2024-09-07T08:14:33.333 INFO:teuthology.orchestra.run.smithi191.stdout:Access: 2024-09-07 08:14:08.788107099 +0000 2024-09-07T08:14:33.333 INFO:teuthology.orchestra.run.smithi191.stdout:Modify: 2024-09-07 08:09:34.922058814 +0000 2024-09-07T08:14:33.333 INFO:teuthology.orchestra.run.smithi191.stdout:Change: 2024-09-07 08:09:34.923058946 +0000 2024-09-07T08:14:33.333 INFO:teuthology.orchestra.run.smithi191.stdout: Birth: 2024-09-07 08:09:34.922058814 +0000 2024-09-07T08:14:33.334 DEBUG:teuthology.orchestra.run.smithi191:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-07T08:14:33.398 INFO:teuthology.orchestra.run.smithi191.stderr:1+0 records in 2024-09-07T08:14:33.399 INFO:teuthology.orchestra.run.smithi191.stderr:1+0 records out 2024-09-07T08:14:33.399 INFO:teuthology.orchestra.run.smithi191.stderr:512 bytes copied, 0.000296507 s, 1.7 MB/s 2024-09-07T08:14:33.400 DEBUG:teuthology.orchestra.run.smithi191:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-07T08:14:33.457 DEBUG:teuthology.orchestra.run.smithi191:> stat /dev/vg_nvme/lv_3 2024-09-07T08:14:33.514 INFO:teuthology.orchestra.run.smithi191.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-07T08:14:33.515 INFO:teuthology.orchestra.run.smithi191.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-07T08:14:33.515 INFO:teuthology.orchestra.run.smithi191.stdout:Device: 5h/5d Inode: 979 Links: 1 2024-09-07T08:14:33.515 INFO:teuthology.orchestra.run.smithi191.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-07T08:14:33.515 INFO:teuthology.orchestra.run.smithi191.stdout:Context: system_u:object_r:device_t:s0 2024-09-07T08:14:33.515 INFO:teuthology.orchestra.run.smithi191.stdout:Access: 2024-09-07 08:14:08.789107080 +0000 2024-09-07T08:14:33.515 INFO:teuthology.orchestra.run.smithi191.stdout:Modify: 2024-09-07 08:09:34.924059078 +0000 2024-09-07T08:14:33.515 INFO:teuthology.orchestra.run.smithi191.stdout:Change: 2024-09-07 08:09:34.924059078 +0000 2024-09-07T08:14:33.515 INFO:teuthology.orchestra.run.smithi191.stdout: Birth: 2024-09-07 08:09:34.924059078 +0000 2024-09-07T08:14:33.515 DEBUG:teuthology.orchestra.run.smithi191:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-07T08:14:33.561 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:14:33 smithi090 podman[34614]: 2024-09-07 08:14:33.264547032 +0000 UTC m=+0.097578774 container create 0882dc62174b49856213cd62d5a2212fb065079e1fd08b75b35f4f7d2b4c1994 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-b, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731, io.buildah.version=1.37.2) 2024-09-07T08:14:33.562 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:14:33 smithi090 podman[34614]: 2024-09-07 08:14:33.182406987 +0000 UTC m=+0.015438741 image pull 6d221832e1054b498e2b9f082020222573577791586fe066468034523d6f813b quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055 2024-09-07T08:14:33.562 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:14:33 smithi090 podman[34614]: 2024-09-07 08:14:33.485089094 +0000 UTC m=+0.318120836 container init 0882dc62174b49856213cd62d5a2212fb065079e1fd08b75b35f4f7d2b4c1994 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-b, ceph=True, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, org.label-schema.build-date=20240731, io.buildah.version=1.37.2, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, GIT_CLEAN=True, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-07T08:14:33.562 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:14:33 smithi090 podman[34614]: 2024-09-07 08:14:33.488466976 +0000 UTC m=+0.321498719 container start 0882dc62174b49856213cd62d5a2212fb065079e1fd08b75b35f4f7d2b4c1994 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-b, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_CLEAN=True, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, ceph=True, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-07T08:14:33.562 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:14:33 smithi090 ceph-mgr[34633]: -- 172.21.15.90:0/301414712 <== mon.2 v2:172.21.15.90:3300/0 4 ==== auth_reply(proto 2 0 (0) Success) v1 ==== 194+0+0 (secure 0 0 0) 0x5561e5bced00 con 0x5561e5ba3000 2024-09-07T08:14:33.562 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:14:33 smithi090 bash[34614]: 0882dc62174b49856213cd62d5a2212fb065079e1fd08b75b35f4f7d2b4c1994 2024-09-07T08:14:33.579 INFO:teuthology.orchestra.run.smithi191.stderr:1+0 records in 2024-09-07T08:14:33.580 INFO:teuthology.orchestra.run.smithi191.stderr:1+0 records out 2024-09-07T08:14:33.580 INFO:teuthology.orchestra.run.smithi191.stderr:512 bytes copied, 0.000204311 s, 2.5 MB/s 2024-09-07T08:14:33.581 DEBUG:teuthology.orchestra.run.smithi191:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-07T08:14:33.637 DEBUG:teuthology.orchestra.run.smithi191:> stat /dev/vg_nvme/lv_4 2024-09-07T08:14:33.694 INFO:teuthology.orchestra.run.smithi191.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-07T08:14:33.694 INFO:teuthology.orchestra.run.smithi191.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-07T08:14:33.694 INFO:teuthology.orchestra.run.smithi191.stdout:Device: 5h/5d Inode: 976 Links: 1 2024-09-07T08:14:33.694 INFO:teuthology.orchestra.run.smithi191.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-07T08:14:33.694 INFO:teuthology.orchestra.run.smithi191.stdout:Context: system_u:object_r:device_t:s0 2024-09-07T08:14:33.694 INFO:teuthology.orchestra.run.smithi191.stdout:Access: 2024-09-07 08:14:08.789107080 +0000 2024-09-07T08:14:33.694 INFO:teuthology.orchestra.run.smithi191.stdout:Modify: 2024-09-07 08:09:34.923058946 +0000 2024-09-07T08:14:33.694 INFO:teuthology.orchestra.run.smithi191.stdout:Change: 2024-09-07 08:09:34.923058946 +0000 2024-09-07T08:14:33.694 INFO:teuthology.orchestra.run.smithi191.stdout: Birth: 2024-09-07 08:09:34.923058946 +0000 2024-09-07T08:14:33.694 DEBUG:teuthology.orchestra.run.smithi191:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-07T08:14:33.756 INFO:teuthology.orchestra.run.smithi191.stderr:1+0 records in 2024-09-07T08:14:33.757 INFO:teuthology.orchestra.run.smithi191.stderr:1+0 records out 2024-09-07T08:14:33.757 INFO:teuthology.orchestra.run.smithi191.stderr:512 bytes copied, 0.000202277 s, 2.5 MB/s 2024-09-07T08:14:33.758 DEBUG:teuthology.orchestra.run.smithi191:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-07T08:14:33.815 INFO:tasks.cephadm:Deploying osd.0 on smithi018 with /dev/vg_nvme/lv_4... 2024-09-07T08:14:33.815 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-09-07T08:14:33.824 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:14:33 smithi090 systemd[1]: Started Ceph mgr.b for d3fad026-6cf0-11ef-bcea-c7b262605968. 2024-09-07T08:14:33.824 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:14:33 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-b[34629]: 2024-09-07T08:14:33.608+0000 7f1cefeb7040 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-07T08:14:33.824 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:14:33 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-b[34629]: 2024-09-07T08:14:33.666+0000 7f1cefeb7040 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-07T08:14:33.824 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:14:33 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-b[34629]: 2024-09-07T08:14:33.822+0000 7f1cefeb7040 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-09-07T08:14:34.012 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:14:34.193 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:14:33 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-b[34629]: 2024-09-07T08:14:33.890+0000 7f1cefeb7040 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-07T08:14:34.194 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:14:34 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-b[34629]: 2024-09-07T08:14:34.050+0000 7f1cefeb7040 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-07T08:14:34.194 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:14:34 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-b[34629]: 2024-09-07T08:14:34.191+0000 7f1cefeb7040 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-07T08:14:34.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:34 smithi018 ceph-mon[30322]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:34.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:34 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:34.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:34 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:34.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:34 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:34.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:34 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:34.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:34 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:14:34.729 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:14:34 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-b[34629]: 2024-09-07T08:14:34.511+0000 7f1cefeb7040 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-07T08:14:34.729 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:14:34 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-b[34629]: 2024-09-07T08:14:34.580+0000 7f1cefeb7040 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-07T08:14:34.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:34 smithi090 ceph-mon[33260]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:34.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:34 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:34.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:34 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:34.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:34 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:34.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:34 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:34.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:34 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:14:34.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:34 smithi191 ceph-mon[34025]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:34.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:34 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:34.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:34 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:34.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:34 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:34.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:34 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:34.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:34 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:14:35.229 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:14:34 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-b[34629]: 2024-09-07T08:14:34.764+0000 7f1cefeb7040 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-07T08:14:35.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:35 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:35.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:35 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:35.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:35 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:35.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:35 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:14:35.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:35 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:35.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:35 smithi018 ceph-mon[30322]: Reconfiguring mgr.a (unknown last config time)... 2024-09-07T08:14:35.707 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:35 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-07T08:14:35.707 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:35 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-07T08:14:35.707 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:35 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:35.707 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:35 smithi018 ceph-mon[30322]: Reconfiguring daemon mgr.a on smithi018 2024-09-07T08:14:35.707 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:35 smithi018 ceph-mon[30322]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:35.772 INFO:teuthology.orchestra.run.smithi018.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-09-07T08:14:35.855 INFO:teuthology.orchestra.run.smithi018.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-09-07T08:14:35.865 INFO:teuthology.orchestra.run.smithi018.stderr: stderr: 10+0 records in 2024-09-07T08:14:35.866 INFO:teuthology.orchestra.run.smithi018.stderr:10+0 records out 2024-09-07T08:14:35.866 INFO:teuthology.orchestra.run.smithi018.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.00866594 s, 1.2 GB/s 2024-09-07T08:14:35.866 INFO:teuthology.orchestra.run.smithi018.stderr:--> Zapping successful for: 2024-09-07T08:14:35.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:35 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:35.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:35 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:35.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:35 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:35.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:35 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:14:35.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:35 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:35.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:35 smithi191 ceph-mon[34025]: Reconfiguring mgr.a (unknown last config time)... 2024-09-07T08:14:35.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:35 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-07T08:14:35.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:35 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-07T08:14:35.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:35 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:35.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:35 smithi191 ceph-mon[34025]: Reconfiguring daemon mgr.a on smithi018 2024-09-07T08:14:35.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:35 smithi191 ceph-mon[34025]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:35.979 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:14:35 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-b[34629]: 2024-09-07T08:14:35.623+0000 7f1cefeb7040 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-07T08:14:35.979 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:14:35 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-b[34629]: 2024-09-07T08:14:35.687+0000 7f1cefeb7040 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-07T08:14:35.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:35 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:35.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:35 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:35.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:35 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:35.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:35 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:14:35.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:35 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:35.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:35 smithi090 ceph-mon[33260]: Reconfiguring mgr.a (unknown last config time)... 2024-09-07T08:14:35.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:35 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-07T08:14:35.980 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:35 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-07T08:14:35.980 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:35 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:35.980 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:35 smithi090 ceph-mon[33260]: Reconfiguring daemon mgr.a on smithi018 2024-09-07T08:14:35.980 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:35 smithi090 ceph-mon[33260]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:36.643 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:14:36 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-b[34629]: 2024-09-07T08:14:36.390+0000 7f1cefeb7040 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-07T08:14:36.644 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:14:36 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-b[34629]: 2024-09-07T08:14:36.504+0000 7f1cefeb7040 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-07T08:14:36.644 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:14:36 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-b[34629]: 2024-09-07T08:14:36.641+0000 7f1cefeb7040 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-07T08:14:36.914 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:14:36 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-b[34629]: 2024-09-07T08:14:36.701+0000 7f1cefeb7040 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-07T08:14:36.914 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:14:36 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-b[34629]: 2024-09-07T08:14:36.845+0000 7f1cefeb7040 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-07T08:14:36.914 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:14:36 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-b[34629]: 2024-09-07T08:14:36.912+0000 7f1cefeb7040 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-07T08:14:37.195 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:14:36 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-b[34629]: 2024-09-07T08:14:36.972+0000 7f1cefeb7040 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-07T08:14:37.195 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:14:37 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-b[34629]: 2024-09-07T08:14:37.130+0000 7f1cefeb7040 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-07T08:14:37.195 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:14:37 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-b[34629]: 2024-09-07T08:14:37.192+0000 7f1cefeb7040 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-07T08:14:37.341 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph orch daemon add osd smithi018:vg_nvme/lv_4 2024-09-07T08:14:37.458 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:14:37 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-b[34629]: 2024-09-07T08:14:37.257+0000 7f1cefeb7040 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-07T08:14:37.458 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:14:37 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-b[34629]: 2024-09-07T08:14:37.339+0000 7f1cefeb7040 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-07T08:14:37.459 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:14:37 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-b[34629]: 2024-09-07T08:14:37.397+0000 7f1cefeb7040 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-07T08:14:37.459 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:14:37 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-b[34629]: 2024-09-07T08:14:37.456+0000 7f1cefeb7040 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-07T08:14:37.537 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:14:38.197 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:37 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:38.197 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:37 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:38.197 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:37 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:14:38.197 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:37 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:38.198 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:37 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:14:38.198 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:37 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:38.198 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:37 smithi018 ceph-mon[30322]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:38.198 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:37 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:38.221 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:37 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:38.221 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:37 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:38.221 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:37 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:14:38.221 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:37 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:38.221 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:37 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:14:38.221 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:37 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:38.221 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:37 smithi090 ceph-mon[33260]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:38.221 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:37 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:38.391 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:37 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:38.391 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:37 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:38.391 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:37 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:14:38.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:37 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:38.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:37 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:14:38.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:37 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:38.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:37 smithi191 ceph-mon[34025]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:38.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:37 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:38.479 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:14:38 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-b[34629]: 2024-09-07T08:14:38.218+0000 7f1cefeb7040 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-07T08:14:39.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:38 smithi018 ceph-mon[30322]: Standby manager daemon b started 2024-09-07T08:14:39.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:38 smithi018 ceph-mon[30322]: from='mgr.? 172.21.15.90:0/1663516543' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-09-07T08:14:39.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:38 smithi018 ceph-mon[30322]: from='mgr.? 172.21.15.90:0/1663516543' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-07T08:14:39.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:38 smithi018 ceph-mon[30322]: from='mgr.? 172.21.15.90:0/1663516543' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-09-07T08:14:39.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:38 smithi018 ceph-mon[30322]: from='mgr.? 172.21.15.90:0/1663516543' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-07T08:14:39.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:38 smithi090 ceph-mon[33260]: Standby manager daemon b started 2024-09-07T08:14:39.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:38 smithi090 ceph-mon[33260]: from='mgr.? 172.21.15.90:0/1663516543' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-09-07T08:14:39.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:38 smithi090 ceph-mon[33260]: from='mgr.? 172.21.15.90:0/1663516543' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-07T08:14:39.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:38 smithi090 ceph-mon[33260]: from='mgr.? 172.21.15.90:0/1663516543' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-09-07T08:14:39.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:38 smithi090 ceph-mon[33260]: from='mgr.? 172.21.15.90:0/1663516543' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-07T08:14:39.391 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:38 smithi191 ceph-mon[34025]: Standby manager daemon b started 2024-09-07T08:14:39.391 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:38 smithi191 ceph-mon[34025]: from='mgr.? 172.21.15.90:0/1663516543' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-09-07T08:14:39.391 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:38 smithi191 ceph-mon[34025]: from='mgr.? 172.21.15.90:0/1663516543' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-07T08:14:39.391 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:38 smithi191 ceph-mon[34025]: from='mgr.? 172.21.15.90:0/1663516543' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-09-07T08:14:39.391 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:38 smithi191 ceph-mon[34025]: from='mgr.? 172.21.15.90:0/1663516543' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-07T08:14:40.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:39 smithi018 ceph-mon[30322]: mgrmap e14: a(active, since 71s), standbys: b 2024-09-07T08:14:40.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:39 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-09-07T08:14:40.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:39 smithi018 ceph-mon[30322]: from='client.14217 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi018:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:14:40.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:39 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-07T08:14:40.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:39 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-07T08:14:40.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:39 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:40.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:39 smithi018 ceph-mon[30322]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:40.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:39 smithi090 ceph-mon[33260]: mgrmap e14: a(active, since 71s), standbys: b 2024-09-07T08:14:40.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:39 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-09-07T08:14:40.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:39 smithi090 ceph-mon[33260]: from='client.14217 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi018:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:14:40.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:39 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-07T08:14:40.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:39 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-07T08:14:40.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:39 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:40.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:39 smithi090 ceph-mon[33260]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:40.391 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:39 smithi191 ceph-mon[34025]: mgrmap e14: a(active, since 71s), standbys: b 2024-09-07T08:14:40.391 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:39 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-09-07T08:14:40.391 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:39 smithi191 ceph-mon[34025]: from='client.14217 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi018:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:14:40.391 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:39 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-07T08:14:40.391 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:39 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-07T08:14:40.391 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:39 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:40.391 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:39 smithi191 ceph-mon[34025]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:42.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:42 smithi018 ceph-mon[30322]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:42.707 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:42 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/3564052395' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "80c19d76-c3ee-4828-8cdb-edbf144e703e"}]: dispatch 2024-09-07T08:14:42.707 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:42 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/3564052395' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "80c19d76-c3ee-4828-8cdb-edbf144e703e"}]': finished 2024-09-07T08:14:42.707 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:42 smithi018 ceph-mon[30322]: osdmap e5: 1 total, 0 up, 1 in 2024-09-07T08:14:42.707 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:42 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-07T08:14:42.707 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:42 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/785163007' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-07T08:14:42.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:42 smithi090 ceph-mon[33260]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:42.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:42 smithi090 ceph-mon[33260]: from='client.? 172.21.15.18:0/3564052395' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "80c19d76-c3ee-4828-8cdb-edbf144e703e"}]: dispatch 2024-09-07T08:14:42.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:42 smithi090 ceph-mon[33260]: from='client.? 172.21.15.18:0/3564052395' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "80c19d76-c3ee-4828-8cdb-edbf144e703e"}]': finished 2024-09-07T08:14:42.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:42 smithi090 ceph-mon[33260]: osdmap e5: 1 total, 0 up, 1 in 2024-09-07T08:14:42.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:42 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-07T08:14:42.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:42 smithi090 ceph-mon[33260]: from='client.? 172.21.15.18:0/785163007' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-07T08:14:42.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:42 smithi191 ceph-mon[34025]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:42.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:42 smithi191 ceph-mon[34025]: from='client.? 172.21.15.18:0/3564052395' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "80c19d76-c3ee-4828-8cdb-edbf144e703e"}]: dispatch 2024-09-07T08:14:42.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:42 smithi191 ceph-mon[34025]: from='client.? 172.21.15.18:0/3564052395' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "80c19d76-c3ee-4828-8cdb-edbf144e703e"}]': finished 2024-09-07T08:14:42.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:42 smithi191 ceph-mon[34025]: osdmap e5: 1 total, 0 up, 1 in 2024-09-07T08:14:42.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:42 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-07T08:14:42.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:42 smithi191 ceph-mon[34025]: from='client.? 172.21.15.18:0/785163007' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-07T08:14:44.634 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:44 smithi018 ceph-mon[30322]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:44.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:44 smithi090 ceph-mon[33260]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:44.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:44 smithi191 ceph-mon[34025]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:46.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:46 smithi018 ceph-mon[30322]: pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:46.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:46 smithi090 ceph-mon[33260]: pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:46.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:46 smithi191 ceph-mon[34025]: pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:47.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:47 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-07T08:14:47.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:47 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:47.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:47 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-07T08:14:47.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:47 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:47.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:47 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-07T08:14:47.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:47 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:14:48.723 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:48 smithi090 ceph-mon[33260]: pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:48.724 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:48 smithi090 ceph-mon[33260]: Deploying daemon osd.0 on smithi018 2024-09-07T08:14:48.730 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:48 smithi018 ceph-mon[30322]: pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:48.730 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:48 smithi018 ceph-mon[30322]: Deploying daemon osd.0 on smithi018 2024-09-07T08:14:48.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:48 smithi191 ceph-mon[34025]: pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:48.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:48 smithi191 ceph-mon[34025]: Deploying daemon osd.0 on smithi018 2024-09-07T08:14:50.725 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:50 smithi018 ceph-mon[30322]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:50.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:50 smithi090 ceph-mon[33260]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:50.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:50 smithi191 ceph-mon[34025]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:52.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:52 smithi090 ceph-mon[33260]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:52.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:52 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:14:52.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:52 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:52.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:52 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:52.795 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:52 smithi018 ceph-mon[30322]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:52.796 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:52 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:14:52.796 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:52 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:52.796 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:52 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:52.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:52 smithi191 ceph-mon[34025]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:52.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:52 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:14:52.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:52 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:52.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:52 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:54.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:54 smithi018 ceph-mon[30322]: pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:54.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:54 smithi090 ceph-mon[33260]: pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:54.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:54 smithi191 ceph-mon[34025]: pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:55.263 INFO:teuthology.orchestra.run.smithi018.stdout:Created osd(s) 0 on host 'smithi018' 2024-09-07T08:14:55.940 DEBUG:teuthology.orchestra.run.smithi018:osd.0> sudo journalctl -f -n 0 -u ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@osd.0.service 2024-09-07T08:14:55.943 INFO:tasks.cephadm:Deploying osd.1 on smithi018 with /dev/vg_nvme/lv_3... 2024-09-07T08:14:55.943 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-09-07T08:14:56.185 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:14:56.514 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:56 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:56.514 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:56 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:56.514 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:56 smithi018 ceph-mon[30322]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:56.514 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:56 smithi018 ceph-mon[30322]: from='osd.0 [v2:172.21.15.18:6802/353772314,v1:172.21.15.18:6803/353772314]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-07T08:14:56.514 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:56 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:56.514 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:56 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:56.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:56 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:56.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:56 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:56.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:56 smithi191 ceph-mon[34025]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:56.642 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:56 smithi191 ceph-mon[34025]: from='osd.0 [v2:172.21.15.18:6802/353772314,v1:172.21.15.18:6803/353772314]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-07T08:14:56.642 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:56 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:56.642 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:56 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:56.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:56 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:56.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:56 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:56.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:56 smithi090 ceph-mon[33260]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:56.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:56 smithi090 ceph-mon[33260]: from='osd.0 [v2:172.21.15.18:6802/353772314,v1:172.21.15.18:6803/353772314]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-07T08:14:56.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:56 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:56.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:56 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:14:57.397 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:57 smithi018 ceph-mon[30322]: from='osd.0 [v2:172.21.15.18:6802/353772314,v1:172.21.15.18:6803/353772314]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-07T08:14:57.397 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:57 smithi018 ceph-mon[30322]: osdmap e6: 1 total, 0 up, 1 in 2024-09-07T08:14:57.397 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:57 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-07T08:14:57.397 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:57 smithi018 ceph-mon[30322]: from='osd.0 [v2:172.21.15.18:6802/353772314,v1:172.21.15.18:6803/353772314]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi018", "root=default"]}]: dispatch 2024-09-07T08:14:57.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:57 smithi191 ceph-mon[34025]: from='osd.0 [v2:172.21.15.18:6802/353772314,v1:172.21.15.18:6803/353772314]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-07T08:14:57.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:57 smithi191 ceph-mon[34025]: osdmap e6: 1 total, 0 up, 1 in 2024-09-07T08:14:57.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:57 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-07T08:14:57.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:57 smithi191 ceph-mon[34025]: from='osd.0 [v2:172.21.15.18:6802/353772314,v1:172.21.15.18:6803/353772314]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi018", "root=default"]}]: dispatch 2024-09-07T08:14:57.706 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 07 08:14:57 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-0[44375]: 2024-09-07T08:14:57.520+0000 7f0a6e49c640 -1 osd.0 0 waiting for initial osdmap 2024-09-07T08:14:57.706 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 07 08:14:57 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-0[44375]: 2024-09-07T08:14:57.522+0000 7f0a662bd640 -1 osd.0 7 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-07T08:14:57.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:57 smithi090 ceph-mon[33260]: from='osd.0 [v2:172.21.15.18:6802/353772314,v1:172.21.15.18:6803/353772314]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-07T08:14:57.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:57 smithi090 ceph-mon[33260]: osdmap e6: 1 total, 0 up, 1 in 2024-09-07T08:14:57.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:57 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-07T08:14:57.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:57 smithi090 ceph-mon[33260]: from='osd.0 [v2:172.21.15.18:6802/353772314,v1:172.21.15.18:6803/353772314]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi018", "root=default"]}]: dispatch 2024-09-07T08:14:57.792 INFO:teuthology.orchestra.run.smithi018.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-09-07T08:14:57.878 INFO:teuthology.orchestra.run.smithi018.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-09-07T08:14:57.889 INFO:teuthology.orchestra.run.smithi018.stderr: stderr: 10+0 records in 2024-09-07T08:14:57.890 INFO:teuthology.orchestra.run.smithi018.stderr:10+0 records out 2024-09-07T08:14:57.890 INFO:teuthology.orchestra.run.smithi018.stderr:10485760 bytes (10 MB, 10 MiB) copied, 0.00962791 s, 1.1 GB/s 2024-09-07T08:14:57.890 INFO:teuthology.orchestra.run.smithi018.stderr:--> Zapping successful for: 2024-09-07T08:14:58.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:58 smithi018 ceph-mon[30322]: from='osd.0 [v2:172.21.15.18:6802/353772314,v1:172.21.15.18:6803/353772314]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi018", "root=default"]}]': finished 2024-09-07T08:14:58.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:58 smithi018 ceph-mon[30322]: osdmap e7: 1 total, 0 up, 1 in 2024-09-07T08:14:58.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:58 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-07T08:14:58.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:58 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-07T08:14:58.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:58 smithi018 ceph-mon[30322]: pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:58.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:58 smithi018 ceph-mon[30322]: from='osd.0 [v2:172.21.15.18:6802/353772314,v1:172.21.15.18:6803/353772314]' entity='osd.0' 2024-09-07T08:14:58.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:58 smithi191 ceph-mon[34025]: from='osd.0 [v2:172.21.15.18:6802/353772314,v1:172.21.15.18:6803/353772314]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi018", "root=default"]}]': finished 2024-09-07T08:14:58.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:58 smithi191 ceph-mon[34025]: osdmap e7: 1 total, 0 up, 1 in 2024-09-07T08:14:58.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:58 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-07T08:14:58.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:58 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-07T08:14:58.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:58 smithi191 ceph-mon[34025]: pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:58.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:58 smithi191 ceph-mon[34025]: from='osd.0 [v2:172.21.15.18:6802/353772314,v1:172.21.15.18:6803/353772314]' entity='osd.0' 2024-09-07T08:14:58.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:58 smithi090 ceph-mon[33260]: from='osd.0 [v2:172.21.15.18:6802/353772314,v1:172.21.15.18:6803/353772314]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi018", "root=default"]}]': finished 2024-09-07T08:14:58.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:58 smithi090 ceph-mon[33260]: osdmap e7: 1 total, 0 up, 1 in 2024-09-07T08:14:58.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:58 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-07T08:14:58.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:58 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-07T08:14:58.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:58 smithi090 ceph-mon[33260]: pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-07T08:14:58.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:58 smithi090 ceph-mon[33260]: from='osd.0 [v2:172.21.15.18:6802/353772314,v1:172.21.15.18:6803/353772314]' entity='osd.0' 2024-09-07T08:14:58.919 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph orch daemon add osd smithi018:vg_nvme/lv_3 2024-09-07T08:14:59.613 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:59 smithi018 ceph-mon[30322]: purged_snaps scrub starts 2024-09-07T08:14:59.613 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:59 smithi018 ceph-mon[30322]: purged_snaps scrub ok 2024-09-07T08:14:59.613 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:59 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-07T08:14:59.613 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:59 smithi018 ceph-mon[30322]: osd.0 [v2:172.21.15.18:6802/353772314,v1:172.21.15.18:6803/353772314] boot 2024-09-07T08:14:59.613 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:59 smithi018 ceph-mon[30322]: osdmap e8: 1 total, 1 up, 1 in 2024-09-07T08:14:59.613 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:14:59 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-07T08:14:59.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:59 smithi191 ceph-mon[34025]: purged_snaps scrub starts 2024-09-07T08:14:59.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:59 smithi191 ceph-mon[34025]: purged_snaps scrub ok 2024-09-07T08:14:59.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:59 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-07T08:14:59.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:59 smithi191 ceph-mon[34025]: osd.0 [v2:172.21.15.18:6802/353772314,v1:172.21.15.18:6803/353772314] boot 2024-09-07T08:14:59.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:59 smithi191 ceph-mon[34025]: osdmap e8: 1 total, 1 up, 1 in 2024-09-07T08:14:59.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:14:59 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-07T08:14:59.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:59 smithi090 ceph-mon[33260]: purged_snaps scrub starts 2024-09-07T08:14:59.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:59 smithi090 ceph-mon[33260]: purged_snaps scrub ok 2024-09-07T08:14:59.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:59 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-07T08:14:59.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:59 smithi090 ceph-mon[33260]: osd.0 [v2:172.21.15.18:6802/353772314,v1:172.21.15.18:6803/353772314] boot 2024-09-07T08:14:59.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:59 smithi090 ceph-mon[33260]: osdmap e8: 1 total, 1 up, 1 in 2024-09-07T08:14:59.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:14:59 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-07T08:14:59.847 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:15:00.501 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:00 smithi018 ceph-mon[30322]: pgmap v44: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:00.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:00 smithi191 ceph-mon[34025]: pgmap v44: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:00.728 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:00 smithi090 ceph-mon[33260]: pgmap v44: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:01.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:01 smithi018 ceph-mon[30322]: osdmap e9: 1 total, 1 up, 1 in 2024-09-07T08:15:01.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:01 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:01.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:01 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:01.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:01 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-07T08:15:01.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:01 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:01.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:01 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:01.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:01 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:15:01.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:01 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:01.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:01 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:15:01.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:01 smithi191 ceph-mon[34025]: osdmap e9: 1 total, 1 up, 1 in 2024-09-07T08:15:01.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:01 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:01.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:01 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:01.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:01 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-07T08:15:01.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:01 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:01.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:01 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:01.642 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:01 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:15:01.642 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:01 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:01.642 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:01 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:15:01.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:01 smithi090 ceph-mon[33260]: osdmap e9: 1 total, 1 up, 1 in 2024-09-07T08:15:01.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:01 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:01.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:01 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:01.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:01 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-07T08:15:01.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:01 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:01.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:01 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:01.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:01 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:15:01.730 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:01 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:01.730 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:01 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:15:02.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:02 smithi191 ceph-mon[34025]: Detected new or changed devices on smithi018 2024-09-07T08:15:02.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:02 smithi191 ceph-mon[34025]: Adjusting osd_memory_target on smithi018 to 17092M 2024-09-07T08:15:02.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:02 smithi191 ceph-mon[34025]: pgmap v46: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:02.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:02 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:02.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:02 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:15:02.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:02 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:02.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:02 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-07T08:15:02.642 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:02 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-07T08:15:02.642 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:02 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:02.663 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:02 smithi018 ceph-mon[30322]: Detected new or changed devices on smithi018 2024-09-07T08:15:02.663 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:02 smithi018 ceph-mon[30322]: Adjusting osd_memory_target on smithi018 to 17092M 2024-09-07T08:15:02.664 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:02 smithi018 ceph-mon[30322]: pgmap v46: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:02.664 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:02 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:02.664 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:02 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:15:02.664 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:02 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:02.664 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:02 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-07T08:15:02.664 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:02 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-07T08:15:02.664 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:02 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:02.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:02 smithi090 ceph-mon[33260]: Detected new or changed devices on smithi018 2024-09-07T08:15:02.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:02 smithi090 ceph-mon[33260]: Adjusting osd_memory_target on smithi018 to 17092M 2024-09-07T08:15:02.732 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:02 smithi090 ceph-mon[33260]: pgmap v46: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:02.732 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:02 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:02.732 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:02 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:15:02.732 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:02 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:02.732 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:02 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-07T08:15:02.732 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:02 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-07T08:15:02.732 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:02 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:03.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:03 smithi191 ceph-mon[34025]: from='client.14244 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi018:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:15:03.665 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:03 smithi018 ceph-mon[30322]: from='client.14244 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi018:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:15:03.728 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:03 smithi090 ceph-mon[33260]: from='client.14244 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi018:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:15:04.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:04 smithi191 ceph-mon[34025]: pgmap v47: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:04.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:04 smithi018 ceph-mon[30322]: pgmap v47: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:04.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:04 smithi090 ceph-mon[33260]: pgmap v47: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:05.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:05 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/3460212619' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a035da25-5d18-45fa-bd1b-ac94304741a5"}]: dispatch 2024-09-07T08:15:05.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:05 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/3460212619' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "a035da25-5d18-45fa-bd1b-ac94304741a5"}]': finished 2024-09-07T08:15:05.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:05 smithi018 ceph-mon[30322]: osdmap e10: 2 total, 1 up, 2 in 2024-09-07T08:15:05.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:05 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-07T08:15:05.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:05 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/935931670' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-07T08:15:05.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:05 smithi191 ceph-mon[34025]: from='client.? 172.21.15.18:0/3460212619' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a035da25-5d18-45fa-bd1b-ac94304741a5"}]: dispatch 2024-09-07T08:15:05.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:05 smithi191 ceph-mon[34025]: from='client.? 172.21.15.18:0/3460212619' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "a035da25-5d18-45fa-bd1b-ac94304741a5"}]': finished 2024-09-07T08:15:05.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:05 smithi191 ceph-mon[34025]: osdmap e10: 2 total, 1 up, 2 in 2024-09-07T08:15:05.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:05 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-07T08:15:05.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:05 smithi191 ceph-mon[34025]: from='client.? 172.21.15.18:0/935931670' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-07T08:15:05.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:05 smithi090 ceph-mon[33260]: from='client.? 172.21.15.18:0/3460212619' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a035da25-5d18-45fa-bd1b-ac94304741a5"}]: dispatch 2024-09-07T08:15:05.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:05 smithi090 ceph-mon[33260]: from='client.? 172.21.15.18:0/3460212619' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "a035da25-5d18-45fa-bd1b-ac94304741a5"}]': finished 2024-09-07T08:15:05.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:05 smithi090 ceph-mon[33260]: osdmap e10: 2 total, 1 up, 2 in 2024-09-07T08:15:05.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:05 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-07T08:15:05.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:05 smithi090 ceph-mon[33260]: from='client.? 172.21.15.18:0/935931670' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-07T08:15:06.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:06 smithi191 ceph-mon[34025]: pgmap v49: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:06.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:06 smithi018 ceph-mon[30322]: pgmap v49: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:06.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:06 smithi090 ceph-mon[33260]: pgmap v49: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:08.536 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:08 smithi018 ceph-mon[30322]: pgmap v50: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:08.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:08 smithi090 ceph-mon[33260]: pgmap v50: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:08.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:08 smithi191 ceph-mon[34025]: pgmap v50: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:10.488 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:10 smithi018 ceph-mon[30322]: pgmap v51: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:10.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:10 smithi090 ceph-mon[33260]: pgmap v51: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:10.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:10 smithi191 ceph-mon[34025]: pgmap v51: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:11.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:11 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-07T08:15:11.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:11 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:11.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:11 smithi090 ceph-mon[33260]: Deploying daemon osd.1 on smithi018 2024-09-07T08:15:11.811 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:11 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-07T08:15:11.811 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:11 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:11.811 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:11 smithi018 ceph-mon[30322]: Deploying daemon osd.1 on smithi018 2024-09-07T08:15:11.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:11 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-07T08:15:11.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:11 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:11.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:11 smithi191 ceph-mon[34025]: Deploying daemon osd.1 on smithi018 2024-09-07T08:15:12.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:12 smithi018 ceph-mon[30322]: pgmap v52: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:12.728 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:12 smithi090 ceph-mon[33260]: pgmap v52: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:12.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:12 smithi191 ceph-mon[34025]: pgmap v52: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:14.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:14 smithi090 ceph-mon[33260]: pgmap v53: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:14.801 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:14 smithi018 ceph-mon[30322]: pgmap v53: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:14.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:14 smithi191 ceph-mon[34025]: pgmap v53: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:15.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:15 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:15:15.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:15 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:15.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:15 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:15.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:15 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:15:15.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:15 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:15.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:15 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:15.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:15 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:15:15.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:15 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:15.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:15 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:16.643 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:16 smithi018 ceph-mon[30322]: pgmap v54: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:16.728 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:16 smithi090 ceph-mon[33260]: pgmap v54: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:16.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:16 smithi191 ceph-mon[34025]: pgmap v54: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:18.684 INFO:teuthology.orchestra.run.smithi018.stdout:Created osd(s) 1 on host 'smithi018' 2024-09-07T08:15:18.696 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:18 smithi018 ceph-mon[30322]: pgmap v55: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:18.696 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:18 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:18.696 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:18 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:18.696 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:18 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:18.696 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:18 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:15:18.696 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:18 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:18.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:18 smithi090 ceph-mon[33260]: pgmap v55: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:18.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:18.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:18.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:18.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:15:18.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:18 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:18.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:18 smithi191 ceph-mon[34025]: pgmap v55: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:18.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:18 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:18.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:18 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:18.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:18 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:18.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:18 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:15:18.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:18 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:19.272 DEBUG:teuthology.orchestra.run.smithi018:osd.1> sudo journalctl -f -n 0 -u ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@osd.1.service 2024-09-07T08:15:19.275 INFO:tasks.cephadm:Deploying osd.2 on smithi090 with /dev/vg_nvme/lv_4... 2024-09-07T08:15:19.275 DEBUG:teuthology.orchestra.run.smithi090:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-09-07T08:15:19.479 INFO:teuthology.orchestra.run.smithi090.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.b/config 2024-09-07T08:15:19.578 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:19 smithi090 ceph-mon[33260]: from='osd.1 [v2:172.21.15.18:6810/2613913137,v1:172.21.15.18:6811/2613913137]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-07T08:15:19.579 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:19 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:15:19.579 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:19 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:19.579 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:19 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:19.626 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:19 smithi018 ceph-mon[30322]: from='osd.1 [v2:172.21.15.18:6810/2613913137,v1:172.21.15.18:6811/2613913137]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-07T08:15:19.627 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:19 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:15:19.627 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:19 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:19.627 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:19 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:19.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:19 smithi191 ceph-mon[34025]: from='osd.1 [v2:172.21.15.18:6810/2613913137,v1:172.21.15.18:6811/2613913137]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-07T08:15:19.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:19 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:15:19.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:19 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:19.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:19 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:20.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:20 smithi018 ceph-mon[30322]: pgmap v56: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:20.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:20 smithi018 ceph-mon[30322]: from='osd.1 [v2:172.21.15.18:6810/2613913137,v1:172.21.15.18:6811/2613913137]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-07T08:15:20.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:20 smithi018 ceph-mon[30322]: osdmap e11: 2 total, 1 up, 2 in 2024-09-07T08:15:20.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:20 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-07T08:15:20.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:20 smithi018 ceph-mon[30322]: from='osd.1 [v2:172.21.15.18:6810/2613913137,v1:172.21.15.18:6811/2613913137]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi018", "root=default"]}]: dispatch 2024-09-07T08:15:20.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:20 smithi090 ceph-mon[33260]: pgmap v56: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:20.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:20 smithi090 ceph-mon[33260]: from='osd.1 [v2:172.21.15.18:6810/2613913137,v1:172.21.15.18:6811/2613913137]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-07T08:15:20.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:20 smithi090 ceph-mon[33260]: osdmap e11: 2 total, 1 up, 2 in 2024-09-07T08:15:20.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:20 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-07T08:15:20.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:20 smithi090 ceph-mon[33260]: from='osd.1 [v2:172.21.15.18:6810/2613913137,v1:172.21.15.18:6811/2613913137]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi018", "root=default"]}]: dispatch 2024-09-07T08:15:20.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:20 smithi191 ceph-mon[34025]: pgmap v56: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:20.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:20 smithi191 ceph-mon[34025]: from='osd.1 [v2:172.21.15.18:6810/2613913137,v1:172.21.15.18:6811/2613913137]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-07T08:15:20.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:20 smithi191 ceph-mon[34025]: osdmap e11: 2 total, 1 up, 2 in 2024-09-07T08:15:20.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:20 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-07T08:15:20.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:20 smithi191 ceph-mon[34025]: from='osd.1 [v2:172.21.15.18:6810/2613913137,v1:172.21.15.18:6811/2613913137]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi018", "root=default"]}]: dispatch 2024-09-07T08:15:21.083 INFO:teuthology.orchestra.run.smithi090.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-09-07T08:15:21.176 INFO:teuthology.orchestra.run.smithi090.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-09-07T08:15:21.190 INFO:teuthology.orchestra.run.smithi090.stderr: stderr: 10+0 records in 2024-09-07T08:15:21.190 INFO:teuthology.orchestra.run.smithi090.stderr:10+0 records out 2024-09-07T08:15:21.190 INFO:teuthology.orchestra.run.smithi090.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0116787 s, 898 MB/s 2024-09-07T08:15:21.190 INFO:teuthology.orchestra.run.smithi090.stderr:--> Zapping successful for: 2024-09-07T08:15:21.206 INFO:journalctl@ceph.osd.1.smithi018.stdout:Sep 07 08:15:20 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-1[50282]: 2024-09-07T08:15:20.746+0000 7f3843190640 -1 osd.1 0 waiting for initial osdmap 2024-09-07T08:15:21.206 INFO:journalctl@ceph.osd.1.smithi018.stdout:Sep 07 08:15:20 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-1[50282]: 2024-09-07T08:15:20.749+0000 7f383afb1640 -1 osd.1 12 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-07T08:15:21.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:21 smithi018 ceph-mon[30322]: from='osd.1 [v2:172.21.15.18:6810/2613913137,v1:172.21.15.18:6811/2613913137]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi018", "root=default"]}]': finished 2024-09-07T08:15:21.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:21 smithi018 ceph-mon[30322]: osdmap e12: 2 total, 1 up, 2 in 2024-09-07T08:15:21.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:21 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-07T08:15:21.707 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:21 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-07T08:15:21.707 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:21 smithi018 ceph-mon[30322]: from='osd.1 [v2:172.21.15.18:6810/2613913137,v1:172.21.15.18:6811/2613913137]' entity='osd.1' 2024-09-07T08:15:21.707 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:21 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-07T08:15:21.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:21 smithi090 ceph-mon[33260]: from='osd.1 [v2:172.21.15.18:6810/2613913137,v1:172.21.15.18:6811/2613913137]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi018", "root=default"]}]': finished 2024-09-07T08:15:21.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:21 smithi090 ceph-mon[33260]: osdmap e12: 2 total, 1 up, 2 in 2024-09-07T08:15:21.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:21 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-07T08:15:21.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:21 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-07T08:15:21.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:21 smithi090 ceph-mon[33260]: from='osd.1 [v2:172.21.15.18:6810/2613913137,v1:172.21.15.18:6811/2613913137]' entity='osd.1' 2024-09-07T08:15:21.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:21 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-07T08:15:21.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:21 smithi191 ceph-mon[34025]: from='osd.1 [v2:172.21.15.18:6810/2613913137,v1:172.21.15.18:6811/2613913137]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi018", "root=default"]}]': finished 2024-09-07T08:15:21.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:21 smithi191 ceph-mon[34025]: osdmap e12: 2 total, 1 up, 2 in 2024-09-07T08:15:21.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:21 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-07T08:15:21.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:21 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-07T08:15:21.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:21 smithi191 ceph-mon[34025]: from='osd.1 [v2:172.21.15.18:6810/2613913137,v1:172.21.15.18:6811/2613913137]' entity='osd.1' 2024-09-07T08:15:21.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:21 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-07T08:15:21.934 DEBUG:teuthology.orchestra.run.smithi090:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph orch daemon add osd smithi090:vg_nvme/lv_4 2024-09-07T08:15:22.139 INFO:teuthology.orchestra.run.smithi090.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.b/config 2024-09-07T08:15:22.512 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:22 smithi090 ceph-mon[33260]: purged_snaps scrub starts 2024-09-07T08:15:22.512 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:22 smithi090 ceph-mon[33260]: purged_snaps scrub ok 2024-09-07T08:15:22.512 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:22 smithi090 ceph-mon[33260]: pgmap v59: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:22.512 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:22 smithi090 ceph-mon[33260]: osd.1 [v2:172.21.15.18:6810/2613913137,v1:172.21.15.18:6811/2613913137] boot 2024-09-07T08:15:22.513 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:22 smithi090 ceph-mon[33260]: osdmap e13: 2 total, 2 up, 2 in 2024-09-07T08:15:22.513 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:22 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-07T08:15:22.513 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:22 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:22.513 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:22 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:22.513 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:22 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-07T08:15:22.513 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:22 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-07T08:15:22.513 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:22 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:22.513 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:22 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:22.513 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:22 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:15:22.513 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:22 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:22.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:22 smithi191 ceph-mon[34025]: purged_snaps scrub starts 2024-09-07T08:15:22.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:22 smithi191 ceph-mon[34025]: purged_snaps scrub ok 2024-09-07T08:15:22.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:22 smithi191 ceph-mon[34025]: pgmap v59: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:22.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:22 smithi191 ceph-mon[34025]: osd.1 [v2:172.21.15.18:6810/2613913137,v1:172.21.15.18:6811/2613913137] boot 2024-09-07T08:15:22.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:22 smithi191 ceph-mon[34025]: osdmap e13: 2 total, 2 up, 2 in 2024-09-07T08:15:22.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:22 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-07T08:15:22.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:22 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:22.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:22 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:22.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:22 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-07T08:15:22.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:22 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-07T08:15:22.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:22 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:22.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:22 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:22.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:22 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:15:22.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:22 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:22.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:22 smithi018 ceph-mon[30322]: purged_snaps scrub starts 2024-09-07T08:15:22.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:22 smithi018 ceph-mon[30322]: purged_snaps scrub ok 2024-09-07T08:15:22.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:22 smithi018 ceph-mon[30322]: pgmap v59: 0 pgs: ; 0 B data, 30 MiB used, 89 GiB / 89 GiB avail 2024-09-07T08:15:22.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:22 smithi018 ceph-mon[30322]: osd.1 [v2:172.21.15.18:6810/2613913137,v1:172.21.15.18:6811/2613913137] boot 2024-09-07T08:15:22.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:22 smithi018 ceph-mon[30322]: osdmap e13: 2 total, 2 up, 2 in 2024-09-07T08:15:22.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:22 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-07T08:15:22.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:22 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:22.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:22 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:22.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:22 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-07T08:15:22.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:22 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-07T08:15:22.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:22 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:22.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:22 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:22.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:22 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:15:22.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:22 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:23.668 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:23 smithi090 ceph-mon[33260]: Detected new or changed devices on smithi018 2024-09-07T08:15:23.668 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:23 smithi090 ceph-mon[33260]: Adjusting osd_memory_target on smithi018 to 8546M 2024-09-07T08:15:23.859 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:23 smithi018 ceph-mon[30322]: Detected new or changed devices on smithi018 2024-09-07T08:15:23.859 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:23 smithi018 ceph-mon[30322]: Adjusting osd_memory_target on smithi018 to 8546M 2024-09-07T08:15:23.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:23 smithi191 ceph-mon[34025]: Detected new or changed devices on smithi018 2024-09-07T08:15:23.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:23 smithi191 ceph-mon[34025]: Adjusting osd_memory_target on smithi018 to 8546M 2024-09-07T08:15:24.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:24 smithi191 ceph-mon[34025]: pgmap v61: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-07T08:15:24.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:24 smithi191 ceph-mon[34025]: osdmap e14: 2 total, 2 up, 2 in 2024-09-07T08:15:24.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:24 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-07T08:15:24.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:24 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-07T08:15:24.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:24 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:24.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:24 smithi018 ceph-mon[30322]: pgmap v61: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-07T08:15:24.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:24 smithi018 ceph-mon[30322]: osdmap e14: 2 total, 2 up, 2 in 2024-09-07T08:15:24.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:24 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-07T08:15:24.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:24 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-07T08:15:24.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:24 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:24.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:24 smithi090 ceph-mon[33260]: pgmap v61: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-07T08:15:24.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:24 smithi090 ceph-mon[33260]: osdmap e14: 2 total, 2 up, 2 in 2024-09-07T08:15:24.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:24 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-07T08:15:24.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:24 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-07T08:15:24.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:24 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:25.620 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:25 smithi090 ceph-mon[33260]: from='client.24140 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi090:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:15:25.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:25 smithi191 ceph-mon[34025]: from='client.24140 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi090:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:15:25.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:25 smithi018 ceph-mon[30322]: from='client.24140 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi090:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:15:26.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:26 smithi191 ceph-mon[34025]: pgmap v63: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-07T08:15:26.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:26 smithi191 ceph-mon[34025]: from='client.? 172.21.15.90:0/2285783206' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a56a3ed6-c671-4fe7-872f-f8bccc582797"}]: dispatch 2024-09-07T08:15:26.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:26 smithi191 ceph-mon[34025]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a56a3ed6-c671-4fe7-872f-f8bccc582797"}]: dispatch 2024-09-07T08:15:26.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:26 smithi191 ceph-mon[34025]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "a56a3ed6-c671-4fe7-872f-f8bccc582797"}]': finished 2024-09-07T08:15:26.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:26 smithi191 ceph-mon[34025]: osdmap e15: 3 total, 2 up, 3 in 2024-09-07T08:15:26.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:26 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-07T08:15:26.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:26 smithi191 ceph-mon[34025]: from='client.? 172.21.15.90:0/1440118737' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-07T08:15:26.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:26 smithi018 ceph-mon[30322]: pgmap v63: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-07T08:15:26.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:26 smithi018 ceph-mon[30322]: from='client.? 172.21.15.90:0/2285783206' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a56a3ed6-c671-4fe7-872f-f8bccc582797"}]: dispatch 2024-09-07T08:15:26.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:26 smithi018 ceph-mon[30322]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a56a3ed6-c671-4fe7-872f-f8bccc582797"}]: dispatch 2024-09-07T08:15:26.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:26 smithi018 ceph-mon[30322]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "a56a3ed6-c671-4fe7-872f-f8bccc582797"}]': finished 2024-09-07T08:15:26.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:26 smithi018 ceph-mon[30322]: osdmap e15: 3 total, 2 up, 3 in 2024-09-07T08:15:26.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:26 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-07T08:15:26.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:26 smithi018 ceph-mon[30322]: from='client.? 172.21.15.90:0/1440118737' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-07T08:15:26.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:26 smithi090 ceph-mon[33260]: pgmap v63: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-07T08:15:26.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:26 smithi090 ceph-mon[33260]: from='client.? 172.21.15.90:0/2285783206' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a56a3ed6-c671-4fe7-872f-f8bccc582797"}]: dispatch 2024-09-07T08:15:26.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:26 smithi090 ceph-mon[33260]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a56a3ed6-c671-4fe7-872f-f8bccc582797"}]: dispatch 2024-09-07T08:15:26.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:26 smithi090 ceph-mon[33260]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "a56a3ed6-c671-4fe7-872f-f8bccc582797"}]': finished 2024-09-07T08:15:26.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:26 smithi090 ceph-mon[33260]: osdmap e15: 3 total, 2 up, 3 in 2024-09-07T08:15:26.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:26 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-07T08:15:26.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:26 smithi090 ceph-mon[33260]: from='client.? 172.21.15.90:0/1440118737' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-07T08:15:28.754 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:28 smithi090 ceph-mon[33260]: pgmap v65: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-07T08:15:28.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:28 smithi191 ceph-mon[34025]: pgmap v65: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-07T08:15:28.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:28 smithi018 ceph-mon[30322]: pgmap v65: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-07T08:15:30.612 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:30 smithi090 ceph-mon[33260]: pgmap v66: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-07T08:15:30.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:30 smithi191 ceph-mon[34025]: pgmap v66: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-07T08:15:30.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:30 smithi018 ceph-mon[30322]: pgmap v66: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-07T08:15:32.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:32 smithi090 ceph-mon[33260]: pgmap v67: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-07T08:15:32.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:32 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-07T08:15:32.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:32 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:32.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:32 smithi191 ceph-mon[34025]: pgmap v67: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-07T08:15:32.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:32 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-07T08:15:32.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:32 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:32.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:32 smithi018 ceph-mon[30322]: pgmap v67: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-07T08:15:32.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:32 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-07T08:15:32.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:32 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:33.564 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:33 smithi090 ceph-mon[33260]: Deploying daemon osd.2 on smithi090 2024-09-07T08:15:33.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:33 smithi191 ceph-mon[34025]: Deploying daemon osd.2 on smithi090 2024-09-07T08:15:33.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:33 smithi018 ceph-mon[30322]: Deploying daemon osd.2 on smithi090 2024-09-07T08:15:34.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:34 smithi090 ceph-mon[33260]: pgmap v68: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-07T08:15:34.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:34 smithi191 ceph-mon[34025]: pgmap v68: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-07T08:15:34.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:34 smithi018 ceph-mon[30322]: pgmap v68: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-07T08:15:36.807 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:36 smithi090 ceph-mon[33260]: pgmap v69: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-07T08:15:36.807 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:36 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:15:36.808 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:36 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:36.808 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:36 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:36.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:36 smithi191 ceph-mon[34025]: pgmap v69: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-07T08:15:36.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:36 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:15:36.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:36 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:36.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:36 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:36.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:36 smithi018 ceph-mon[30322]: pgmap v69: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-07T08:15:36.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:36 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:15:36.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:36 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:36.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:36 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:38.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:38 smithi191 ceph-mon[34025]: pgmap v70: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-07T08:15:38.921 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:38 smithi090 ceph-mon[33260]: pgmap v70: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-07T08:15:38.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:38 smithi018 ceph-mon[30322]: pgmap v70: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-07T08:15:39.521 INFO:teuthology.orchestra.run.smithi090.stdout:Created osd(s) 2 on host 'smithi090' 2024-09-07T08:15:40.098 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:39 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:40.099 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:39 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:40.099 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:39 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:40.099 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:39 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:15:40.099 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:39 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:40.099 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:39 smithi090 ceph-mon[33260]: pgmap v71: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-07T08:15:40.099 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:39 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:15:40.099 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:39 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:40.099 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:39 smithi090 ceph-mon[33260]: from='osd.2 [v2:172.21.15.90:6800/2467369961,v1:172.21.15.90:6801/2467369961]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-07T08:15:40.099 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:39 smithi090 ceph-mon[33260]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-07T08:15:40.099 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:39 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:40.119 DEBUG:teuthology.orchestra.run.smithi090:osd.2> sudo journalctl -f -n 0 -u ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@osd.2.service 2024-09-07T08:15:40.121 INFO:tasks.cephadm:Deploying osd.3 on smithi090 with /dev/vg_nvme/lv_3... 2024-09-07T08:15:40.121 DEBUG:teuthology.orchestra.run.smithi090:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-09-07T08:15:40.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:39 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:40.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:39 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:40.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:39 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:40.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:39 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:15:40.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:39 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:40.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:39 smithi191 ceph-mon[34025]: pgmap v71: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-07T08:15:40.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:39 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:15:40.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:39 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:40.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:39 smithi191 ceph-mon[34025]: from='osd.2 [v2:172.21.15.90:6800/2467369961,v1:172.21.15.90:6801/2467369961]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-07T08:15:40.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:39 smithi191 ceph-mon[34025]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-07T08:15:40.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:39 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:40.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:39 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:40.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:39 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:40.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:39 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:40.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:39 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:15:40.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:39 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:40.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:39 smithi018 ceph-mon[30322]: pgmap v71: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-07T08:15:40.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:39 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:15:40.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:39 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:40.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:39 smithi018 ceph-mon[30322]: from='osd.2 [v2:172.21.15.90:6800/2467369961,v1:172.21.15.90:6801/2467369961]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-07T08:15:40.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:39 smithi018 ceph-mon[30322]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-07T08:15:40.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:39 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:41.180 INFO:teuthology.orchestra.run.smithi090.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.b/config 2024-09-07T08:15:41.630 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:41 smithi090 ceph-mon[33260]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-07T08:15:41.630 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:41 smithi090 ceph-mon[33260]: osdmap e16: 3 total, 2 up, 3 in 2024-09-07T08:15:41.630 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:41 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-07T08:15:41.630 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:41 smithi090 ceph-mon[33260]: from='osd.2 [v2:172.21.15.90:6800/2467369961,v1:172.21.15.90:6801/2467369961]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi090", "root=default"]}]: dispatch 2024-09-07T08:15:41.630 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:41 smithi090 ceph-mon[33260]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi090", "root=default"]}]: dispatch 2024-09-07T08:15:41.631 INFO:journalctl@ceph.osd.2.smithi090.stdout:Sep 07 08:15:41 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-2[37416]: 2024-09-07T08:15:41.520+0000 7f591ba36640 -1 osd.2 0 waiting for initial osdmap 2024-09-07T08:15:41.631 INFO:journalctl@ceph.osd.2.smithi090.stdout:Sep 07 08:15:41 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-2[37416]: 2024-09-07T08:15:41.523+0000 7f591785f640 -1 osd.2 17 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-07T08:15:41.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:41 smithi191 ceph-mon[34025]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-07T08:15:41.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:41 smithi191 ceph-mon[34025]: osdmap e16: 3 total, 2 up, 3 in 2024-09-07T08:15:41.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:41 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-07T08:15:41.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:41 smithi191 ceph-mon[34025]: from='osd.2 [v2:172.21.15.90:6800/2467369961,v1:172.21.15.90:6801/2467369961]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi090", "root=default"]}]: dispatch 2024-09-07T08:15:41.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:41 smithi191 ceph-mon[34025]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi090", "root=default"]}]: dispatch 2024-09-07T08:15:41.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:41 smithi018 ceph-mon[30322]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-07T08:15:41.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:41 smithi018 ceph-mon[30322]: osdmap e16: 3 total, 2 up, 3 in 2024-09-07T08:15:41.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:41 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-07T08:15:41.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:41 smithi018 ceph-mon[30322]: from='osd.2 [v2:172.21.15.90:6800/2467369961,v1:172.21.15.90:6801/2467369961]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi090", "root=default"]}]: dispatch 2024-09-07T08:15:41.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:41 smithi018 ceph-mon[30322]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi090", "root=default"]}]: dispatch 2024-09-07T08:15:42.616 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:42 smithi090 ceph-mon[33260]: purged_snaps scrub starts 2024-09-07T08:15:42.616 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:42 smithi090 ceph-mon[33260]: purged_snaps scrub ok 2024-09-07T08:15:42.616 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:42 smithi090 ceph-mon[33260]: pgmap v73: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-07T08:15:42.617 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:42 smithi090 ceph-mon[33260]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi090", "root=default"]}]': finished 2024-09-07T08:15:42.617 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:42 smithi090 ceph-mon[33260]: osdmap e17: 3 total, 2 up, 3 in 2024-09-07T08:15:42.617 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:42 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-07T08:15:42.617 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:42 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-07T08:15:42.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:42 smithi191 ceph-mon[34025]: purged_snaps scrub starts 2024-09-07T08:15:42.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:42 smithi191 ceph-mon[34025]: purged_snaps scrub ok 2024-09-07T08:15:42.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:42 smithi191 ceph-mon[34025]: pgmap v73: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-07T08:15:42.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:42 smithi191 ceph-mon[34025]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi090", "root=default"]}]': finished 2024-09-07T08:15:42.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:42 smithi191 ceph-mon[34025]: osdmap e17: 3 total, 2 up, 3 in 2024-09-07T08:15:42.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:42 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-07T08:15:42.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:42 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-07T08:15:42.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:42 smithi018 ceph-mon[30322]: purged_snaps scrub starts 2024-09-07T08:15:42.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:42 smithi018 ceph-mon[30322]: purged_snaps scrub ok 2024-09-07T08:15:42.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:42 smithi018 ceph-mon[30322]: pgmap v73: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-07T08:15:42.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:42 smithi018 ceph-mon[30322]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi090", "root=default"]}]': finished 2024-09-07T08:15:42.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:42 smithi018 ceph-mon[30322]: osdmap e17: 3 total, 2 up, 3 in 2024-09-07T08:15:42.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:42 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-07T08:15:42.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:42 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-07T08:15:43.210 INFO:teuthology.orchestra.run.smithi090.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-09-07T08:15:43.293 INFO:teuthology.orchestra.run.smithi090.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-09-07T08:15:43.310 INFO:teuthology.orchestra.run.smithi090.stderr: stderr: 10+0 records in 2024-09-07T08:15:43.310 INFO:teuthology.orchestra.run.smithi090.stderr:10+0 records out 2024-09-07T08:15:43.310 INFO:teuthology.orchestra.run.smithi090.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0150126 s, 698 MB/s 2024-09-07T08:15:43.310 INFO:teuthology.orchestra.run.smithi090.stderr:--> Zapping successful for: 2024-09-07T08:15:43.807 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:43 smithi090 ceph-mon[33260]: osd.2 [v2:172.21.15.90:6800/2467369961,v1:172.21.15.90:6801/2467369961] boot 2024-09-07T08:15:43.807 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:43 smithi090 ceph-mon[33260]: osdmap e18: 3 total, 3 up, 3 in 2024-09-07T08:15:43.807 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:43 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-07T08:15:44.061 DEBUG:teuthology.orchestra.run.smithi090:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph orch daemon add osd smithi090:vg_nvme/lv_3 2024-09-07T08:15:44.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:43 smithi191 ceph-mon[34025]: osd.2 [v2:172.21.15.90:6800/2467369961,v1:172.21.15.90:6801/2467369961] boot 2024-09-07T08:15:44.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:43 smithi191 ceph-mon[34025]: osdmap e18: 3 total, 3 up, 3 in 2024-09-07T08:15:44.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:43 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-07T08:15:44.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:43 smithi018 ceph-mon[30322]: osd.2 [v2:172.21.15.90:6800/2467369961,v1:172.21.15.90:6801/2467369961] boot 2024-09-07T08:15:44.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:43 smithi018 ceph-mon[30322]: osdmap e18: 3 total, 3 up, 3 in 2024-09-07T08:15:44.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:43 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-07T08:15:44.486 INFO:teuthology.orchestra.run.smithi090.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.b/config 2024-09-07T08:15:44.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:44 smithi090 ceph-mon[33260]: pgmap v76: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-07T08:15:44.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:44 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' 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-07T08:15:44.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:44 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' 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-07T08:15:44.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:44 smithi090 ceph-mon[33260]: osdmap e19: 3 total, 3 up, 3 in 2024-09-07T08:15:44.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:44 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-07T08:15:44.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:44 smithi090 ceph-mon[33260]: Detected new or changed devices on smithi090 2024-09-07T08:15:44.980 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:44 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:44.980 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:44 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:44.980 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:44 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-07T08:15:44.980 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:44 smithi090 ceph-mon[33260]: Adjusting osd_memory_target on smithi090 to 17088M 2024-09-07T08:15:44.980 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:44 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:44.980 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:44 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:44.980 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:44 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:15:44.980 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:44 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:45.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:44 smithi191 ceph-mon[34025]: pgmap v76: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-07T08:15:45.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:44 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' 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-07T08:15:45.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:44 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' 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-07T08:15:45.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:44 smithi191 ceph-mon[34025]: osdmap e19: 3 total, 3 up, 3 in 2024-09-07T08:15:45.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:44 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-07T08:15:45.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:44 smithi191 ceph-mon[34025]: Detected new or changed devices on smithi090 2024-09-07T08:15:45.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:44 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:45.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:44 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:45.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:44 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-07T08:15:45.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:44 smithi191 ceph-mon[34025]: Adjusting osd_memory_target on smithi090 to 17088M 2024-09-07T08:15:45.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:44 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:45.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:44 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:45.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:44 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:15:45.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:44 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:45.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:44 smithi018 ceph-mon[30322]: pgmap v76: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-07T08:15:45.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:44 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' 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-07T08:15:45.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:44 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' 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-07T08:15:45.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:44 smithi018 ceph-mon[30322]: osdmap e19: 3 total, 3 up, 3 in 2024-09-07T08:15:45.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:44 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-07T08:15:45.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:44 smithi018 ceph-mon[30322]: Detected new or changed devices on smithi090 2024-09-07T08:15:45.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:44 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:45.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:44 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:45.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:44 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-07T08:15:45.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:44 smithi018 ceph-mon[30322]: Adjusting osd_memory_target on smithi090 to 17088M 2024-09-07T08:15:45.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:44 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:45.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:44 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:45.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:44 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:15:45.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:44 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:45.916 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:45 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-07T08:15:45.916 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:45 smithi018 ceph-mon[30322]: osdmap e20: 3 total, 3 up, 3 in 2024-09-07T08:15:45.916 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:45 smithi018 ceph-mon[30322]: pgmap v79: 1 pgs: 1 unknown; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-07T08:15:45.916 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 07 08:15:45 smithi018 sudo[54165]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-07T08:15:45.916 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 07 08:15:45 smithi018 sudo[54165]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-07T08:15:45.916 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 07 08:15:45 smithi018 sudo[54165]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-07T08:15:45.916 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 07 08:15:45 smithi018 sudo[54165]: pam_unix(sudo:session): session closed for user root 2024-09-07T08:15:45.967 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:45 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-07T08:15:45.967 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:45 smithi090 ceph-mon[33260]: osdmap e20: 3 total, 3 up, 3 in 2024-09-07T08:15:45.967 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:45 smithi090 ceph-mon[33260]: pgmap v79: 1 pgs: 1 unknown; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-07T08:15:46.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:45 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-07T08:15:46.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:45 smithi191 ceph-mon[34025]: osdmap e20: 3 total, 3 up, 3 in 2024-09-07T08:15:46.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:45 smithi191 ceph-mon[34025]: pgmap v79: 1 pgs: 1 unknown; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-07T08:15:46.192 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 07 08:15:45 smithi018 sudo[54168]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-07T08:15:46.192 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 07 08:15:45 smithi018 sudo[54168]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-07T08:15:46.192 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 07 08:15:45 smithi018 sudo[54168]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-07T08:15:46.192 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 07 08:15:45 smithi018 sudo[54168]: pam_unix(sudo:session): session closed for user root 2024-09-07T08:15:46.456 INFO:journalctl@ceph.osd.1.smithi018.stdout:Sep 07 08:15:46 smithi018 sudo[54171]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-07T08:15:46.456 INFO:journalctl@ceph.osd.1.smithi018.stdout:Sep 07 08:15:46 smithi018 sudo[54171]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-07T08:15:46.456 INFO:journalctl@ceph.osd.1.smithi018.stdout:Sep 07 08:15:46 smithi018 sudo[54171]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-07T08:15:46.456 INFO:journalctl@ceph.osd.1.smithi018.stdout:Sep 07 08:15:46 smithi018 sudo[54171]: pam_unix(sudo:session): session closed for user root 2024-09-07T08:15:46.722 INFO:journalctl@ceph.osd.1.smithi018.stdout:Sep 07 08:15:46 smithi018 sudo[54174]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-07T08:15:46.722 INFO:journalctl@ceph.osd.1.smithi018.stdout:Sep 07 08:15:46 smithi018 sudo[54174]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-07T08:15:46.723 INFO:journalctl@ceph.osd.1.smithi018.stdout:Sep 07 08:15:46 smithi018 sudo[54174]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-07T08:15:46.723 INFO:journalctl@ceph.osd.1.smithi018.stdout:Sep 07 08:15:46 smithi018 sudo[54174]: pam_unix(sudo:session): session closed for user root 2024-09-07T08:15:46.771 INFO:journalctl@ceph.osd.2.smithi090.stdout:Sep 07 08:15:46 smithi090 sudo[41129]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-07T08:15:46.771 INFO:journalctl@ceph.osd.2.smithi090.stdout:Sep 07 08:15:46 smithi090 sudo[41129]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-07T08:15:46.771 INFO:journalctl@ceph.osd.2.smithi090.stdout:Sep 07 08:15:46 smithi090 sudo[41129]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-07T08:15:46.771 INFO:journalctl@ceph.osd.2.smithi090.stdout:Sep 07 08:15:46 smithi090 sudo[41129]: pam_unix(sudo:session): session closed for user root 2024-09-07T08:15:46.771 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:46 smithi090 ceph-mon[33260]: mgrmap e15: a(active, since 2m), standbys: b 2024-09-07T08:15:46.771 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:46 smithi090 ceph-mon[33260]: osdmap e21: 3 total, 3 up, 3 in 2024-09-07T08:15:46.771 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:46 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:46.771 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:46 smithi090 ceph-mon[33260]: from='client.24173 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi090:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:15:46.771 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:46 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-07T08:15:46.772 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:46 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-07T08:15:46.772 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:46 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:47.124 INFO:journalctl@ceph.osd.2.smithi090.stdout:Sep 07 08:15:46 smithi090 sudo[41132]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-07T08:15:47.124 INFO:journalctl@ceph.osd.2.smithi090.stdout:Sep 07 08:15:46 smithi090 sudo[41132]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-07T08:15:47.124 INFO:journalctl@ceph.osd.2.smithi090.stdout:Sep 07 08:15:46 smithi090 sudo[41132]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-07T08:15:47.124 INFO:journalctl@ceph.osd.2.smithi090.stdout:Sep 07 08:15:46 smithi090 sudo[41132]: pam_unix(sudo:session): session closed for user root 2024-09-07T08:15:47.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:46 smithi191 ceph-mon[34025]: mgrmap e15: a(active, since 2m), standbys: b 2024-09-07T08:15:47.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:46 smithi191 ceph-mon[34025]: osdmap e21: 3 total, 3 up, 3 in 2024-09-07T08:15:47.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:46 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:47.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:46 smithi191 ceph-mon[34025]: from='client.24173 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi090:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:15:47.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:46 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-07T08:15:47.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:46 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-07T08:15:47.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:46 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:47.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:46 smithi018 ceph-mon[30322]: mgrmap e15: a(active, since 2m), standbys: b 2024-09-07T08:15:47.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:46 smithi018 ceph-mon[30322]: osdmap e21: 3 total, 3 up, 3 in 2024-09-07T08:15:47.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:46 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:47.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:46 smithi018 ceph-mon[30322]: from='client.24173 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi090:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:15:47.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:46 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-07T08:15:47.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:46 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-07T08:15:47.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:46 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:47.525 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:47 smithi018 sudo[54177]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-07T08:15:47.525 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:47 smithi018 sudo[54177]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-07T08:15:47.525 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:47 smithi018 sudo[54177]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-07T08:15:47.525 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:47 smithi018 sudo[54177]: pam_unix(sudo:session): session closed for user root 2024-09-07T08:15:47.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:47 smithi018 sudo[54180]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-07T08:15:47.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:47 smithi018 sudo[54180]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-07T08:15:47.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:47 smithi018 sudo[54180]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-07T08:15:47.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:47 smithi018 sudo[54180]: pam_unix(sudo:session): session closed for user root 2024-09-07T08:15:48.024 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:47 smithi191 sudo[35958]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-07T08:15:48.024 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:47 smithi191 sudo[35958]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-07T08:15:48.025 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:47 smithi191 sudo[35958]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-07T08:15:48.025 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:47 smithi191 sudo[35958]: pam_unix(sudo:session): session closed for user root 2024-09-07T08:15:48.298 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:48 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:48.299 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:48 smithi090 ceph-mon[33260]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-07T08:15:48.299 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:48 smithi090 ceph-mon[33260]: pgmap v81: 1 pgs: 1 unknown; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-07T08:15:48.299 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:48 smithi090 ceph-mon[33260]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-07T08:15:48.299 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:48 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-07T08:15:48.299 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:48 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:15:48.299 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:48 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-07T08:15:48.299 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:48 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-07T08:15:48.299 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:48 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:15:48.299 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:48 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-07T08:15:48.391 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:48 smithi191 sudo[35961]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-07T08:15:48.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:48 smithi191 sudo[35961]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-07T08:15:48.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:48 smithi191 sudo[35961]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-07T08:15:48.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:48 smithi191 sudo[35961]: pam_unix(sudo:session): session closed for user root 2024-09-07T08:15:48.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:48 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:48.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:48 smithi191 ceph-mon[34025]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-07T08:15:48.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:48 smithi191 ceph-mon[34025]: pgmap v81: 1 pgs: 1 unknown; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-07T08:15:48.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:48 smithi191 ceph-mon[34025]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-07T08:15:48.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:48 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-07T08:15:48.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:48 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:15:48.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:48 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-07T08:15:48.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:48 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-07T08:15:48.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:48 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:15:48.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:48 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-07T08:15:48.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:48 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:48.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:48 smithi018 ceph-mon[30322]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-07T08:15:48.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:48 smithi018 ceph-mon[30322]: pgmap v81: 1 pgs: 1 unknown; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-07T08:15:48.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:48 smithi018 ceph-mon[30322]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-07T08:15:48.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:48 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-07T08:15:48.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:48 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:15:48.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:48 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-07T08:15:48.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:48 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-07T08:15:48.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:48 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:15:48.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:48 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-07T08:15:48.559 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:48 smithi090 sudo[41206]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-07T08:15:48.559 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:48 smithi090 sudo[41206]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-07T08:15:48.559 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:48 smithi090 sudo[41206]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-07T08:15:48.559 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:48 smithi090 sudo[41206]: pam_unix(sudo:session): session closed for user root 2024-09-07T08:15:48.819 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:48 smithi090 sudo[41210]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-07T08:15:48.819 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:48 smithi090 sudo[41210]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-07T08:15:48.819 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:48 smithi090 sudo[41210]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-07T08:15:48.819 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:48 smithi090 sudo[41210]: pam_unix(sudo:session): session closed for user root 2024-09-07T08:15:49.163 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:49 smithi090 ceph-mon[33260]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-07T08:15:49.164 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:49 smithi090 ceph-mon[33260]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-07T08:15:49.164 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:49 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:49.164 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:49 smithi090 ceph-mon[33260]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-07T08:15:49.164 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:49 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-07T08:15:49.164 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:49 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:15:49.164 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:49 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-07T08:15:49.164 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:49 smithi090 ceph-mon[33260]: from='client.? 172.21.15.90:0/1826969915' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "40309a12-242a-4c66-a427-d204bbd8d28a"}]: dispatch 2024-09-07T08:15:49.164 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:49 smithi090 ceph-mon[33260]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-07T08:15:49.164 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:49 smithi090 ceph-mon[33260]: from='client.? 172.21.15.90:0/1826969915' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "40309a12-242a-4c66-a427-d204bbd8d28a"}]': finished 2024-09-07T08:15:49.164 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:49 smithi090 ceph-mon[33260]: osdmap e22: 4 total, 3 up, 4 in 2024-09-07T08:15:49.164 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:49 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-07T08:15:49.391 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:49 smithi191 ceph-mon[34025]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-07T08:15:49.391 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:49 smithi191 ceph-mon[34025]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-07T08:15:49.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:49 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:49.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:49 smithi191 ceph-mon[34025]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-07T08:15:49.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:49 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-07T08:15:49.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:49 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:15:49.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:49 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-07T08:15:49.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:49 smithi191 ceph-mon[34025]: from='client.? 172.21.15.90:0/1826969915' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "40309a12-242a-4c66-a427-d204bbd8d28a"}]: dispatch 2024-09-07T08:15:49.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:49 smithi191 ceph-mon[34025]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-07T08:15:49.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:49 smithi191 ceph-mon[34025]: from='client.? 172.21.15.90:0/1826969915' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "40309a12-242a-4c66-a427-d204bbd8d28a"}]': finished 2024-09-07T08:15:49.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:49 smithi191 ceph-mon[34025]: osdmap e22: 4 total, 3 up, 4 in 2024-09-07T08:15:49.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:49 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-07T08:15:49.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:49 smithi018 ceph-mon[30322]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-07T08:15:49.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:49 smithi018 ceph-mon[30322]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-07T08:15:49.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:49 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:49.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:49 smithi018 ceph-mon[30322]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-07T08:15:49.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:49 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-07T08:15:49.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:49 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:15:49.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:49 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-07T08:15:49.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:49 smithi018 ceph-mon[30322]: from='client.? 172.21.15.90:0/1826969915' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "40309a12-242a-4c66-a427-d204bbd8d28a"}]: dispatch 2024-09-07T08:15:49.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:49 smithi018 ceph-mon[30322]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-07T08:15:49.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:49 smithi018 ceph-mon[30322]: from='client.? 172.21.15.90:0/1826969915' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "40309a12-242a-4c66-a427-d204bbd8d28a"}]': finished 2024-09-07T08:15:49.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:49 smithi018 ceph-mon[30322]: osdmap e22: 4 total, 3 up, 4 in 2024-09-07T08:15:49.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:49 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-07T08:15:50.391 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:50 smithi191 ceph-mon[34025]: from='client.? 172.21.15.90:0/2631006501' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-07T08:15:50.391 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:50 smithi191 ceph-mon[34025]: pgmap v83: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-09-07T08:15:50.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:50 smithi018 ceph-mon[30322]: from='client.? 172.21.15.90:0/2631006501' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-07T08:15:50.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:50 smithi018 ceph-mon[30322]: pgmap v83: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-09-07T08:15:50.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:50 smithi090 ceph-mon[33260]: from='client.? 172.21.15.90:0/2631006501' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-07T08:15:50.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:50 smithi090 ceph-mon[33260]: pgmap v83: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-09-07T08:15:52.666 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:52 smithi090 ceph-mon[33260]: pgmap v84: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-09-07T08:15:52.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:52 smithi191 ceph-mon[34025]: pgmap v84: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-09-07T08:15:52.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:52 smithi018 ceph-mon[30322]: pgmap v84: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-09-07T08:15:54.723 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:54 smithi090 ceph-mon[33260]: pgmap v85: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-09-07T08:15:54.757 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:54 smithi018 ceph-mon[30322]: pgmap v85: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-09-07T08:15:54.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:54 smithi191 ceph-mon[34025]: pgmap v85: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-09-07T08:15:55.670 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:55 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-07T08:15:55.670 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:55 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:55.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:55 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-07T08:15:55.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:55 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:55.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:55 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-07T08:15:55.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:55 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:15:56.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:56 smithi090 ceph-mon[33260]: Deploying daemon osd.3 on smithi090 2024-09-07T08:15:56.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:56 smithi090 ceph-mon[33260]: pgmap v86: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail; 1.3 KiB/s rd, 38 KiB/s wr, 3 op/s 2024-09-07T08:15:56.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:56 smithi191 ceph-mon[34025]: Deploying daemon osd.3 on smithi090 2024-09-07T08:15:56.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:56 smithi191 ceph-mon[34025]: pgmap v86: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail; 1.3 KiB/s rd, 38 KiB/s wr, 3 op/s 2024-09-07T08:15:56.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:56 smithi018 ceph-mon[30322]: Deploying daemon osd.3 on smithi090 2024-09-07T08:15:56.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:56 smithi018 ceph-mon[30322]: pgmap v86: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail; 1.3 KiB/s rd, 38 KiB/s wr, 3 op/s 2024-09-07T08:15:58.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:58 smithi090 ceph-mon[33260]: pgmap v87: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail; 1.0 KiB/s rd, 30 KiB/s wr, 2 op/s 2024-09-07T08:15:58.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:58 smithi191 ceph-mon[34025]: pgmap v87: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail; 1.0 KiB/s rd, 30 KiB/s wr, 2 op/s 2024-09-07T08:15:58.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:58 smithi018 ceph-mon[30322]: pgmap v87: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail; 1.0 KiB/s rd, 30 KiB/s wr, 2 op/s 2024-09-07T08:15:59.709 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:59 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:15:59.709 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:59 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:59.709 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:15:59 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:59.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:59 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:15:59.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:59 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:59.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:15:59 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:59.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:59 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:15:59.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:59 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:15:59.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:15:59 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:00.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:00 smithi090 ceph-mon[33260]: pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail; 850 B/s rd, 24 KiB/s wr, 2 op/s 2024-09-07T08:16:00.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:00 smithi191 ceph-mon[34025]: pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail; 850 B/s rd, 24 KiB/s wr, 2 op/s 2024-09-07T08:16:00.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:00 smithi018 ceph-mon[30322]: pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail; 850 B/s rd, 24 KiB/s wr, 2 op/s 2024-09-07T08:16:01.901 INFO:teuthology.orchestra.run.smithi090.stdout:Created osd(s) 3 on host 'smithi090' 2024-09-07T08:16:02.516 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:02 smithi090 ceph-mon[33260]: pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail; 767 B/s rd, 22 KiB/s wr, 1 op/s 2024-09-07T08:16:02.516 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:02 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:02.516 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:02 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:02.517 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:02 smithi090 ceph-mon[33260]: from='osd.3 [v2:172.21.15.90:6808/188191346,v1:172.21.15.90:6809/188191346]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-07T08:16:02.517 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:02 smithi090 ceph-mon[33260]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-07T08:16:02.537 DEBUG:teuthology.orchestra.run.smithi090:osd.3> sudo journalctl -f -n 0 -u ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@osd.3.service 2024-09-07T08:16:02.539 INFO:tasks.cephadm:Deploying osd.4 on smithi191 with /dev/vg_nvme/lv_4... 2024-09-07T08:16:02.540 DEBUG:teuthology.orchestra.run.smithi191:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-09-07T08:16:02.753 INFO:teuthology.orchestra.run.smithi191.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.c/config 2024-09-07T08:16:02.853 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:02 smithi191 ceph-mon[34025]: pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail; 767 B/s rd, 22 KiB/s wr, 1 op/s 2024-09-07T08:16:02.854 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:02 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:02.854 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:02 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:02.854 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:02 smithi191 ceph-mon[34025]: from='osd.3 [v2:172.21.15.90:6808/188191346,v1:172.21.15.90:6809/188191346]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-07T08:16:02.854 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:02 smithi191 ceph-mon[34025]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-07T08:16:02.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:02 smithi018 ceph-mon[30322]: pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail; 767 B/s rd, 22 KiB/s wr, 1 op/s 2024-09-07T08:16:02.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:02 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:02.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:02 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:02.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:02 smithi018 ceph-mon[30322]: from='osd.3 [v2:172.21.15.90:6808/188191346,v1:172.21.15.90:6809/188191346]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-07T08:16:02.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:02 smithi018 ceph-mon[30322]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-07T08:16:04.028 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:03 smithi191 ceph-mon[34025]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-07T08:16:04.028 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:03 smithi191 ceph-mon[34025]: osdmap e23: 4 total, 3 up, 4 in 2024-09-07T08:16:04.029 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:03 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-07T08:16:04.029 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:03 smithi191 ceph-mon[34025]: from='osd.3 [v2:172.21.15.90:6808/188191346,v1:172.21.15.90:6809/188191346]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi090", "root=default"]}]: dispatch 2024-09-07T08:16:04.029 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:03 smithi191 ceph-mon[34025]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi090", "root=default"]}]: dispatch 2024-09-07T08:16:04.029 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:03 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:04.029 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:03 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:04.029 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:03 smithi191 ceph-mon[34025]: pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail; 921 B/s rd, 26 KiB/s wr, 2 op/s 2024-09-07T08:16:04.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:03 smithi018 ceph-mon[30322]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-07T08:16:04.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:03 smithi018 ceph-mon[30322]: osdmap e23: 4 total, 3 up, 4 in 2024-09-07T08:16:04.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:03 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-07T08:16:04.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:03 smithi018 ceph-mon[30322]: from='osd.3 [v2:172.21.15.90:6808/188191346,v1:172.21.15.90:6809/188191346]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi090", "root=default"]}]: dispatch 2024-09-07T08:16:04.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:03 smithi018 ceph-mon[30322]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi090", "root=default"]}]: dispatch 2024-09-07T08:16:04.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:03 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:04.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:03 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:04.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:03 smithi018 ceph-mon[30322]: pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail; 921 B/s rd, 26 KiB/s wr, 2 op/s 2024-09-07T08:16:04.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:03 smithi090 ceph-mon[33260]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-07T08:16:04.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:03 smithi090 ceph-mon[33260]: osdmap e23: 4 total, 3 up, 4 in 2024-09-07T08:16:04.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:03 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-07T08:16:04.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:03 smithi090 ceph-mon[33260]: from='osd.3 [v2:172.21.15.90:6808/188191346,v1:172.21.15.90:6809/188191346]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi090", "root=default"]}]: dispatch 2024-09-07T08:16:04.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:03 smithi090 ceph-mon[33260]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi090", "root=default"]}]: dispatch 2024-09-07T08:16:04.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:03 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:04.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:03 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:04.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:03 smithi090 ceph-mon[33260]: pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail; 921 B/s rd, 26 KiB/s wr, 2 op/s 2024-09-07T08:16:04.382 INFO:teuthology.orchestra.run.smithi191.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-09-07T08:16:04.470 INFO:teuthology.orchestra.run.smithi191.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-09-07T08:16:04.494 INFO:teuthology.orchestra.run.smithi191.stderr: stderr: 10+0 records in 2024-09-07T08:16:04.494 INFO:teuthology.orchestra.run.smithi191.stderr:10+0 records out 2024-09-07T08:16:04.494 INFO:teuthology.orchestra.run.smithi191.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0113597 s, 923 MB/s 2024-09-07T08:16:04.495 INFO:teuthology.orchestra.run.smithi191.stderr:--> Zapping successful for: 2024-09-07T08:16:04.640 INFO:journalctl@ceph.osd.3.smithi090.stdout:Sep 07 08:16:04 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-3[42870]: 2024-09-07T08:16:04.339+0000 7fde2f313640 -1 osd.3 0 waiting for initial osdmap 2024-09-07T08:16:04.640 INFO:journalctl@ceph.osd.3.smithi090.stdout:Sep 07 08:16:04 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-3[42870]: 2024-09-07T08:16:04.342+0000 7fde27134640 -1 osd.3 24 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-07T08:16:04.930 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:04 smithi090 ceph-mon[33260]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi090", "root=default"]}]': finished 2024-09-07T08:16:04.931 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:04 smithi090 ceph-mon[33260]: osdmap e24: 4 total, 3 up, 4 in 2024-09-07T08:16:04.931 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:04 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-07T08:16:04.931 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:04 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-07T08:16:04.931 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:04 smithi090 ceph-mon[33260]: from='osd.3 ' entity='osd.3' 2024-09-07T08:16:04.931 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:04 smithi090 ceph-mon[33260]: osd.3 [v2:172.21.15.90:6808/188191346,v1:172.21.15.90:6809/188191346] boot 2024-09-07T08:16:04.931 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:04 smithi090 ceph-mon[33260]: osdmap e25: 4 total, 4 up, 4 in 2024-09-07T08:16:04.931 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:04 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-07T08:16:04.988 DEBUG:teuthology.orchestra.run.smithi191:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph orch daemon add osd smithi191:vg_nvme/lv_4 2024-09-07T08:16:05.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:04 smithi191 ceph-mon[34025]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi090", "root=default"]}]': finished 2024-09-07T08:16:05.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:04 smithi191 ceph-mon[34025]: osdmap e24: 4 total, 3 up, 4 in 2024-09-07T08:16:05.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:04 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-07T08:16:05.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:04 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-07T08:16:05.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:04 smithi191 ceph-mon[34025]: from='osd.3 ' entity='osd.3' 2024-09-07T08:16:05.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:04 smithi191 ceph-mon[34025]: osd.3 [v2:172.21.15.90:6808/188191346,v1:172.21.15.90:6809/188191346] boot 2024-09-07T08:16:05.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:04 smithi191 ceph-mon[34025]: osdmap e25: 4 total, 4 up, 4 in 2024-09-07T08:16:05.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:04 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-07T08:16:05.180 INFO:teuthology.orchestra.run.smithi191.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.c/config 2024-09-07T08:16:05.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:04 smithi018 ceph-mon[30322]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi090", "root=default"]}]': finished 2024-09-07T08:16:05.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:04 smithi018 ceph-mon[30322]: osdmap e24: 4 total, 3 up, 4 in 2024-09-07T08:16:05.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:04 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-07T08:16:05.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:04 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-07T08:16:05.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:04 smithi018 ceph-mon[30322]: from='osd.3 ' entity='osd.3' 2024-09-07T08:16:05.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:04 smithi018 ceph-mon[30322]: osd.3 [v2:172.21.15.90:6808/188191346,v1:172.21.15.90:6809/188191346] boot 2024-09-07T08:16:05.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:04 smithi018 ceph-mon[30322]: osdmap e25: 4 total, 4 up, 4 in 2024-09-07T08:16:05.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:04 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-07T08:16:06.114 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:05 smithi090 ceph-mon[33260]: purged_snaps scrub starts 2024-09-07T08:16:06.114 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:05 smithi090 ceph-mon[33260]: purged_snaps scrub ok 2024-09-07T08:16:06.114 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:05 smithi090 ceph-mon[33260]: pgmap v94: 1 pgs: 1 unknown; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:16:06.114 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:05 smithi090 ceph-mon[33260]: osdmap e26: 4 total, 4 up, 4 in 2024-09-07T08:16:06.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:05 smithi018 ceph-mon[30322]: purged_snaps scrub starts 2024-09-07T08:16:06.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:05 smithi018 ceph-mon[30322]: purged_snaps scrub ok 2024-09-07T08:16:06.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:05 smithi018 ceph-mon[30322]: pgmap v94: 1 pgs: 1 unknown; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:16:06.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:05 smithi018 ceph-mon[30322]: osdmap e26: 4 total, 4 up, 4 in 2024-09-07T08:16:06.313 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:05 smithi191 ceph-mon[34025]: purged_snaps scrub starts 2024-09-07T08:16:06.313 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:05 smithi191 ceph-mon[34025]: purged_snaps scrub ok 2024-09-07T08:16:06.313 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:05 smithi191 ceph-mon[34025]: pgmap v94: 1 pgs: 1 unknown; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:16:06.313 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:05 smithi191 ceph-mon[34025]: osdmap e26: 4 total, 4 up, 4 in 2024-09-07T08:16:07.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:07 smithi018 ceph-mon[30322]: Detected new or changed devices on smithi090 2024-09-07T08:16:07.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:07 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:07.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:07 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:07.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:07 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-07T08:16:07.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:07 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-07T08:16:07.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:07 smithi018 ceph-mon[30322]: Adjusting osd_memory_target on smithi090 to 8544M 2024-09-07T08:16:07.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:07 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:07.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:07 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:16:07.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:07 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:16:07.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:07 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:07.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:07 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:16:07.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:07 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:16:07.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:07 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:16:07.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:07 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:07.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:07 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-07T08:16:07.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:07 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-07T08:16:07.457 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:07 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:16:07.458 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:07 smithi018 ceph-mon[30322]: osdmap e27: 4 total, 4 up, 4 in 2024-09-07T08:16:07.461 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:07 smithi191 ceph-mon[34025]: Detected new or changed devices on smithi090 2024-09-07T08:16:07.461 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:07 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:07.462 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:07 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:07.462 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:07 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-07T08:16:07.462 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:07 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-07T08:16:07.462 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:07 smithi191 ceph-mon[34025]: Adjusting osd_memory_target on smithi090 to 8544M 2024-09-07T08:16:07.462 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:07 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:07.462 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:07 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:16:07.463 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:07 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:16:07.463 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:07 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:07.463 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:07 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:16:07.463 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:07 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:16:07.463 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:07 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:16:07.464 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:07 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:07.464 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:07 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-07T08:16:07.464 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:07 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-07T08:16:07.464 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:07 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:16:07.464 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:07 smithi191 ceph-mon[34025]: osdmap e27: 4 total, 4 up, 4 in 2024-09-07T08:16:07.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:07 smithi090 ceph-mon[33260]: Detected new or changed devices on smithi090 2024-09-07T08:16:07.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:07 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:07.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:07 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:07.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:07 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-07T08:16:07.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:07 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-07T08:16:07.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:07 smithi090 ceph-mon[33260]: Adjusting osd_memory_target on smithi090 to 8544M 2024-09-07T08:16:07.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:07 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:07.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:07 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:16:07.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:07 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:16:07.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:07 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:07.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:07 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:16:07.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:07 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:16:07.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:07 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:16:07.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:07 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:07.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:07 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-07T08:16:07.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:07 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-07T08:16:07.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:07 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:16:07.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:07 smithi090 ceph-mon[33260]: osdmap e27: 4 total, 4 up, 4 in 2024-09-07T08:16:08.369 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:08 smithi191 ceph-mon[34025]: from='client.24172 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi191:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:16:08.369 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:08 smithi191 ceph-mon[34025]: pgmap v97: 1 pgs: 1 unknown; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:16:08.369 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:08 smithi191 ceph-mon[34025]: osdmap e28: 4 total, 4 up, 4 in 2024-09-07T08:16:08.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:08 smithi018 ceph-mon[30322]: from='client.24172 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi191:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:16:08.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:08 smithi018 ceph-mon[30322]: pgmap v97: 1 pgs: 1 unknown; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:16:08.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:08 smithi018 ceph-mon[30322]: osdmap e28: 4 total, 4 up, 4 in 2024-09-07T08:16:08.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:08 smithi090 ceph-mon[33260]: from='client.24172 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi191:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:16:08.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:08 smithi090 ceph-mon[33260]: pgmap v97: 1 pgs: 1 unknown; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:16:08.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:08 smithi090 ceph-mon[33260]: osdmap e28: 4 total, 4 up, 4 in 2024-09-07T08:16:10.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:09 smithi191 ceph-mon[34025]: osdmap e29: 4 total, 4 up, 4 in 2024-09-07T08:16:10.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:09 smithi191 ceph-mon[34025]: from='client.? 172.21.15.191:0/170808399' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0eeec5cf-67a2-4193-a05a-ae3cbb0a05ee"}]: dispatch 2024-09-07T08:16:10.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:09 smithi191 ceph-mon[34025]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0eeec5cf-67a2-4193-a05a-ae3cbb0a05ee"}]: dispatch 2024-09-07T08:16:10.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:09 smithi191 ceph-mon[34025]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0eeec5cf-67a2-4193-a05a-ae3cbb0a05ee"}]': finished 2024-09-07T08:16:10.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:09 smithi191 ceph-mon[34025]: osdmap e30: 5 total, 4 up, 5 in 2024-09-07T08:16:10.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:09 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-07T08:16:10.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:09 smithi191 ceph-mon[34025]: pgmap v101: 1 pgs: 1 unknown; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:16:10.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:09 smithi191 ceph-mon[34025]: from='client.? 172.21.15.191:0/2395855546' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-07T08:16:10.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:09 smithi018 ceph-mon[30322]: osdmap e29: 4 total, 4 up, 4 in 2024-09-07T08:16:10.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:09 smithi018 ceph-mon[30322]: from='client.? 172.21.15.191:0/170808399' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0eeec5cf-67a2-4193-a05a-ae3cbb0a05ee"}]: dispatch 2024-09-07T08:16:10.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:09 smithi018 ceph-mon[30322]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0eeec5cf-67a2-4193-a05a-ae3cbb0a05ee"}]: dispatch 2024-09-07T08:16:10.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:09 smithi018 ceph-mon[30322]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0eeec5cf-67a2-4193-a05a-ae3cbb0a05ee"}]': finished 2024-09-07T08:16:10.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:09 smithi018 ceph-mon[30322]: osdmap e30: 5 total, 4 up, 5 in 2024-09-07T08:16:10.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:09 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-07T08:16:10.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:09 smithi018 ceph-mon[30322]: pgmap v101: 1 pgs: 1 unknown; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:16:10.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:09 smithi018 ceph-mon[30322]: from='client.? 172.21.15.191:0/2395855546' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-07T08:16:10.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:09 smithi090 ceph-mon[33260]: osdmap e29: 4 total, 4 up, 4 in 2024-09-07T08:16:10.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:09 smithi090 ceph-mon[33260]: from='client.? 172.21.15.191:0/170808399' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0eeec5cf-67a2-4193-a05a-ae3cbb0a05ee"}]: dispatch 2024-09-07T08:16:10.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:09 smithi090 ceph-mon[33260]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0eeec5cf-67a2-4193-a05a-ae3cbb0a05ee"}]: dispatch 2024-09-07T08:16:10.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:09 smithi090 ceph-mon[33260]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0eeec5cf-67a2-4193-a05a-ae3cbb0a05ee"}]': finished 2024-09-07T08:16:10.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:09 smithi090 ceph-mon[33260]: osdmap e30: 5 total, 4 up, 5 in 2024-09-07T08:16:10.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:09 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-07T08:16:10.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:09 smithi090 ceph-mon[33260]: pgmap v101: 1 pgs: 1 unknown; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:16:10.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:09 smithi090 ceph-mon[33260]: from='client.? 172.21.15.191:0/2395855546' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-07T08:16:12.714 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:12 smithi191 ceph-mon[34025]: pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail; 128 KiB/s, 0 objects/s recovering 2024-09-07T08:16:12.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:12 smithi090 ceph-mon[33260]: pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail; 128 KiB/s, 0 objects/s recovering 2024-09-07T08:16:12.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:12 smithi018 ceph-mon[30322]: pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail; 128 KiB/s, 0 objects/s recovering 2024-09-07T08:16:14.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:14 smithi191 ceph-mon[34025]: 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-07T08:16:14.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:14 smithi090 ceph-mon[33260]: 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-07T08:16:14.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:14 smithi018 ceph-mon[30322]: 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-07T08:16:15.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:15 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-07T08:16:15.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:15 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:16:15.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:15 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-07T08:16:15.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:15 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:16:15.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:15 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-07T08:16:15.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:15 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:16:16.510 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:16 smithi191 ceph-mon[34025]: Deploying daemon osd.4 on smithi191 2024-09-07T08:16:16.511 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:16 smithi191 ceph-mon[34025]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail; 77 KiB/s, 0 objects/s recovering 2024-09-07T08:16:16.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:16 smithi090 ceph-mon[33260]: Deploying daemon osd.4 on smithi191 2024-09-07T08:16:16.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:16 smithi090 ceph-mon[33260]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail; 77 KiB/s, 0 objects/s recovering 2024-09-07T08:16:16.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:16 smithi018 ceph-mon[30322]: Deploying daemon osd.4 on smithi191 2024-09-07T08:16:16.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:16 smithi018 ceph-mon[30322]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail; 77 KiB/s, 0 objects/s recovering 2024-09-07T08:16:18.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:18 smithi191 ceph-mon[34025]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail; 68 KiB/s, 0 objects/s recovering 2024-09-07T08:16:18.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:18 smithi090 ceph-mon[33260]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail; 68 KiB/s, 0 objects/s recovering 2024-09-07T08:16:18.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:18 smithi018 ceph-mon[30322]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail; 68 KiB/s, 0 objects/s recovering 2024-09-07T08:16:20.553 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:20 smithi191 ceph-mon[34025]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail; 55 KiB/s, 0 objects/s recovering 2024-09-07T08:16:20.553 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:20 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:16:20.553 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:20 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:20.553 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:20 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:20.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:20 smithi090 ceph-mon[33260]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail; 55 KiB/s, 0 objects/s recovering 2024-09-07T08:16:20.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:20 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:16:20.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:20 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:20.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:20 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:20.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:20 smithi018 ceph-mon[30322]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail; 55 KiB/s, 0 objects/s recovering 2024-09-07T08:16:20.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:20 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:16:20.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:20 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:20.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:20 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:22.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:22 smithi090 ceph-mon[33260]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-07T08:16:22.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:22 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:22.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:22 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:22.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:22 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:16:22.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:22 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:16:22.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:22 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:22.762 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:22 smithi191 ceph-mon[34025]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-07T08:16:22.763 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:22 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:22.763 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:22 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:22.763 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:22 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:16:22.763 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:22 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:16:22.763 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:22 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:22.794 INFO:teuthology.orchestra.run.smithi191.stdout:Created osd(s) 4 on host 'smithi191' 2024-09-07T08:16:22.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:22 smithi018 ceph-mon[30322]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-07T08:16:22.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:22 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:22.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:22 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:22.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:22 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:16:22.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:22 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:16:22.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:22 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:23.328 DEBUG:teuthology.orchestra.run.smithi191:osd.4> sudo journalctl -f -n 0 -u ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@osd.4.service 2024-09-07T08:16:23.331 INFO:tasks.cephadm:Deploying osd.5 on smithi191 with /dev/vg_nvme/lv_3... 2024-09-07T08:16:23.331 DEBUG:teuthology.orchestra.run.smithi191:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-09-07T08:16:23.575 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:23 smithi191 ceph-mon[34025]: from='osd.4 [v2:172.21.15.191:6800/1699685294,v1:172.21.15.191:6801/1699685294]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-07T08:16:23.575 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:23 smithi191 ceph-mon[34025]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-07T08:16:23.575 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:23 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:16:23.575 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:23 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:23.575 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:23 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:23.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:23 smithi018 ceph-mon[30322]: from='osd.4 [v2:172.21.15.191:6800/1699685294,v1:172.21.15.191:6801/1699685294]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-07T08:16:23.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:23 smithi018 ceph-mon[30322]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-07T08:16:23.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:23 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:16:23.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:23 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:23.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:23 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:23.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:23 smithi090 ceph-mon[33260]: from='osd.4 [v2:172.21.15.191:6800/1699685294,v1:172.21.15.191:6801/1699685294]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-07T08:16:23.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:23 smithi090 ceph-mon[33260]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-07T08:16:23.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:23 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:16:23.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:23 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:23.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:23 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:24.138 INFO:teuthology.orchestra.run.smithi191.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.c/config 2024-09-07T08:16:24.857 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:24 smithi018 ceph-mon[30322]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:16:24.857 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:24 smithi018 ceph-mon[30322]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-07T08:16:24.857 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:24 smithi018 ceph-mon[30322]: osdmap e31: 5 total, 4 up, 5 in 2024-09-07T08:16:24.857 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:24 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-07T08:16:24.858 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:24 smithi018 ceph-mon[30322]: from='osd.4 [v2:172.21.15.191:6800/1699685294,v1:172.21.15.191:6801/1699685294]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi191", "root=default"]}]: dispatch 2024-09-07T08:16:24.858 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:24 smithi018 ceph-mon[30322]: 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-07T08:16:24.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:24 smithi191 ceph-mon[34025]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:16:24.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:24 smithi191 ceph-mon[34025]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-07T08:16:24.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:24 smithi191 ceph-mon[34025]: osdmap e31: 5 total, 4 up, 5 in 2024-09-07T08:16:24.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:24 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-07T08:16:24.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:24 smithi191 ceph-mon[34025]: from='osd.4 [v2:172.21.15.191:6800/1699685294,v1:172.21.15.191:6801/1699685294]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi191", "root=default"]}]: dispatch 2024-09-07T08:16:24.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:24 smithi191 ceph-mon[34025]: 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-07T08:16:24.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:24 smithi090 ceph-mon[33260]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:16:24.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:24 smithi090 ceph-mon[33260]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-07T08:16:24.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:24 smithi090 ceph-mon[33260]: osdmap e31: 5 total, 4 up, 5 in 2024-09-07T08:16:24.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:24 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-07T08:16:24.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:24 smithi090 ceph-mon[33260]: from='osd.4 [v2:172.21.15.191:6800/1699685294,v1:172.21.15.191:6801/1699685294]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi191", "root=default"]}]: dispatch 2024-09-07T08:16:24.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:24 smithi090 ceph-mon[33260]: 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-07T08:16:25.219 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 07 08:16:24 smithi191 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-4[38362]: 2024-09-07T08:16:24.947+0000 7f7f8dea5640 -1 osd.4 0 waiting for initial osdmap 2024-09-07T08:16:25.219 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 07 08:16:24 smithi191 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-4[38362]: 2024-09-07T08:16:24.951+0000 7f7f85cc6640 -1 osd.4 32 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-07T08:16:25.667 INFO:teuthology.orchestra.run.smithi191.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-09-07T08:16:25.761 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:25 smithi191 ceph-mon[34025]: 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-07T08:16:25.761 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:25 smithi191 ceph-mon[34025]: osdmap e32: 5 total, 4 up, 5 in 2024-09-07T08:16:25.761 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:25 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-07T08:16:25.761 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:25 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-07T08:16:25.762 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:25 smithi191 ceph-mon[34025]: from='osd.4 ' entity='osd.4' 2024-09-07T08:16:25.762 INFO:teuthology.orchestra.run.smithi191.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-09-07T08:16:25.775 INFO:teuthology.orchestra.run.smithi191.stderr: stderr: 10+0 records in 2024-09-07T08:16:25.775 INFO:teuthology.orchestra.run.smithi191.stderr:10+0 records out 2024-09-07T08:16:25.775 INFO:teuthology.orchestra.run.smithi191.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.012422 s, 844 MB/s 2024-09-07T08:16:25.775 INFO:teuthology.orchestra.run.smithi191.stderr:--> Zapping successful for: 2024-09-07T08:16:25.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:25 smithi018 ceph-mon[30322]: 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-07T08:16:25.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:25 smithi018 ceph-mon[30322]: osdmap e32: 5 total, 4 up, 5 in 2024-09-07T08:16:25.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:25 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-07T08:16:25.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:25 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-07T08:16:25.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:25 smithi018 ceph-mon[30322]: from='osd.4 ' entity='osd.4' 2024-09-07T08:16:25.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:25 smithi090 ceph-mon[33260]: 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-07T08:16:25.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:25 smithi090 ceph-mon[33260]: osdmap e32: 5 total, 4 up, 5 in 2024-09-07T08:16:25.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:25 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-07T08:16:25.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:25 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-07T08:16:25.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:25 smithi090 ceph-mon[33260]: from='osd.4 ' entity='osd.4' 2024-09-07T08:16:26.815 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:26 smithi191 ceph-mon[34025]: purged_snaps scrub starts 2024-09-07T08:16:26.815 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:26 smithi191 ceph-mon[34025]: purged_snaps scrub ok 2024-09-07T08:16:26.816 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:26 smithi191 ceph-mon[34025]: pgmap v111: 1 pgs: 1 peering; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:16:26.816 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:26 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-07T08:16:26.816 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:26 smithi191 ceph-mon[34025]: osd.4 [v2:172.21.15.191:6800/1699685294,v1:172.21.15.191:6801/1699685294] boot 2024-09-07T08:16:26.816 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:26 smithi191 ceph-mon[34025]: osdmap e33: 5 total, 5 up, 5 in 2024-09-07T08:16:26.816 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:26 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-07T08:16:26.836 DEBUG:teuthology.orchestra.run.smithi191:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph orch daemon add osd smithi191:vg_nvme/lv_3 2024-09-07T08:16:26.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:26 smithi018 ceph-mon[30322]: purged_snaps scrub starts 2024-09-07T08:16:26.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:26 smithi018 ceph-mon[30322]: purged_snaps scrub ok 2024-09-07T08:16:26.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:26 smithi018 ceph-mon[30322]: pgmap v111: 1 pgs: 1 peering; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:16:26.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:26 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-07T08:16:26.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:26 smithi018 ceph-mon[30322]: osd.4 [v2:172.21.15.191:6800/1699685294,v1:172.21.15.191:6801/1699685294] boot 2024-09-07T08:16:26.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:26 smithi018 ceph-mon[30322]: osdmap e33: 5 total, 5 up, 5 in 2024-09-07T08:16:26.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:26 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-07T08:16:26.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:26 smithi090 ceph-mon[33260]: purged_snaps scrub starts 2024-09-07T08:16:26.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:26 smithi090 ceph-mon[33260]: purged_snaps scrub ok 2024-09-07T08:16:26.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:26 smithi090 ceph-mon[33260]: pgmap v111: 1 pgs: 1 peering; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:16:26.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:26 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-07T08:16:26.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:26 smithi090 ceph-mon[33260]: osd.4 [v2:172.21.15.191:6800/1699685294,v1:172.21.15.191:6801/1699685294] boot 2024-09-07T08:16:26.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:26 smithi090 ceph-mon[33260]: osdmap e33: 5 total, 5 up, 5 in 2024-09-07T08:16:26.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:26 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-07T08:16:27.192 INFO:teuthology.orchestra.run.smithi191.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.c/config 2024-09-07T08:16:27.792 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:27 smithi191 ceph-mon[34025]: osdmap e34: 5 total, 5 up, 5 in 2024-09-07T08:16:27.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:27 smithi018 ceph-mon[30322]: osdmap e34: 5 total, 5 up, 5 in 2024-09-07T08:16:27.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:27 smithi090 ceph-mon[33260]: osdmap e34: 5 total, 5 up, 5 in 2024-09-07T08:16:28.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:28 smithi090 ceph-mon[33260]: pgmap v114: 1 pgs: 1 peering; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-07T08:16:28.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:28 smithi090 ceph-mon[33260]: osdmap e35: 5 total, 5 up, 5 in 2024-09-07T08:16:28.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:28 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:28.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:28 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:28.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:28 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-07T08:16:28.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:28 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:28.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:28 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:16:28.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:28 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:16:28.730 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:28 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:28.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:28 smithi191 ceph-mon[34025]: pgmap v114: 1 pgs: 1 peering; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-07T08:16:28.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:28 smithi191 ceph-mon[34025]: osdmap e35: 5 total, 5 up, 5 in 2024-09-07T08:16:28.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:28 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:28.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:28 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:28.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:28 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-07T08:16:28.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:28 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:28.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:28 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:16:28.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:28 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:16:28.892 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:28 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:28.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:28 smithi018 ceph-mon[30322]: pgmap v114: 1 pgs: 1 peering; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-07T08:16:28.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:28 smithi018 ceph-mon[30322]: osdmap e35: 5 total, 5 up, 5 in 2024-09-07T08:16:28.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:28 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:28.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:28 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:28.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:28 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-07T08:16:28.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:28 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:28.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:28 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:16:28.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:28 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:16:28.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:28 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:29.790 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:29 smithi191 ceph-mon[34025]: Detected new or changed devices on smithi191 2024-09-07T08:16:29.790 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:29 smithi191 ceph-mon[34025]: Adjusting osd_memory_target on smithi191 to 21184M 2024-09-07T08:16:29.791 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:29 smithi191 ceph-mon[34025]: osdmap e36: 5 total, 5 up, 5 in 2024-09-07T08:16:29.791 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:29 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-07T08:16:29.791 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:29 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-07T08:16:29.791 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:29 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:16:29.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:29 smithi018 ceph-mon[30322]: Detected new or changed devices on smithi191 2024-09-07T08:16:29.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:29 smithi018 ceph-mon[30322]: Adjusting osd_memory_target on smithi191 to 21184M 2024-09-07T08:16:29.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:29 smithi018 ceph-mon[30322]: osdmap e36: 5 total, 5 up, 5 in 2024-09-07T08:16:29.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:29 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-07T08:16:29.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:29 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-07T08:16:29.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:29 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:16:29.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:29 smithi090 ceph-mon[33260]: Detected new or changed devices on smithi191 2024-09-07T08:16:29.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:29 smithi090 ceph-mon[33260]: Adjusting osd_memory_target on smithi191 to 21184M 2024-09-07T08:16:29.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:29 smithi090 ceph-mon[33260]: osdmap e36: 5 total, 5 up, 5 in 2024-09-07T08:16:29.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:29 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-07T08:16:29.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:29 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-07T08:16:29.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:29 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:16:30.776 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:30 smithi191 ceph-mon[34025]: from='client.24199 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi191:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:16:30.777 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:30 smithi191 ceph-mon[34025]: pgmap v117: 1 pgs: 1 peering; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-07T08:16:30.777 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:30 smithi191 ceph-mon[34025]: osdmap e37: 5 total, 5 up, 5 in 2024-09-07T08:16:30.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:30 smithi018 ceph-mon[30322]: from='client.24199 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi191:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:16:30.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:30 smithi018 ceph-mon[30322]: pgmap v117: 1 pgs: 1 peering; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-07T08:16:30.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:30 smithi018 ceph-mon[30322]: osdmap e37: 5 total, 5 up, 5 in 2024-09-07T08:16:30.978 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:30 smithi090 ceph-mon[33260]: from='client.24199 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi191:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:16:30.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:30 smithi090 ceph-mon[33260]: pgmap v117: 1 pgs: 1 peering; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-07T08:16:30.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:30 smithi090 ceph-mon[33260]: osdmap e37: 5 total, 5 up, 5 in 2024-09-07T08:16:31.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:31 smithi191 ceph-mon[34025]: from='client.? 172.21.15.191:0/2973083187' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "641adffc-b6d6-4506-b0f2-350cf1a47721"}]: dispatch 2024-09-07T08:16:31.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:31 smithi191 ceph-mon[34025]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "641adffc-b6d6-4506-b0f2-350cf1a47721"}]: dispatch 2024-09-07T08:16:31.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:31 smithi191 ceph-mon[34025]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "641adffc-b6d6-4506-b0f2-350cf1a47721"}]': finished 2024-09-07T08:16:31.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:31 smithi191 ceph-mon[34025]: osdmap e38: 6 total, 5 up, 6 in 2024-09-07T08:16:31.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:31 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-07T08:16:31.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:31 smithi018 ceph-mon[30322]: from='client.? 172.21.15.191:0/2973083187' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "641adffc-b6d6-4506-b0f2-350cf1a47721"}]: dispatch 2024-09-07T08:16:31.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:31 smithi018 ceph-mon[30322]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "641adffc-b6d6-4506-b0f2-350cf1a47721"}]: dispatch 2024-09-07T08:16:31.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:31 smithi018 ceph-mon[30322]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "641adffc-b6d6-4506-b0f2-350cf1a47721"}]': finished 2024-09-07T08:16:31.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:31 smithi018 ceph-mon[30322]: osdmap e38: 6 total, 5 up, 6 in 2024-09-07T08:16:31.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:31 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-07T08:16:31.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:31 smithi090 ceph-mon[33260]: from='client.? 172.21.15.191:0/2973083187' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "641adffc-b6d6-4506-b0f2-350cf1a47721"}]: dispatch 2024-09-07T08:16:31.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:31 smithi090 ceph-mon[33260]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "641adffc-b6d6-4506-b0f2-350cf1a47721"}]: dispatch 2024-09-07T08:16:31.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:31 smithi090 ceph-mon[33260]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "641adffc-b6d6-4506-b0f2-350cf1a47721"}]': finished 2024-09-07T08:16:31.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:31 smithi090 ceph-mon[33260]: osdmap e38: 6 total, 5 up, 6 in 2024-09-07T08:16:31.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:31 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-07T08:16:32.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:32 smithi191 ceph-mon[34025]: pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 117 KiB/s, 0 objects/s recovering 2024-09-07T08:16:32.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:32 smithi191 ceph-mon[34025]: from='client.? 172.21.15.191:0/2479023643' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-07T08:16:32.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:32 smithi018 ceph-mon[30322]: pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 117 KiB/s, 0 objects/s recovering 2024-09-07T08:16:32.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:32 smithi018 ceph-mon[30322]: from='client.? 172.21.15.191:0/2479023643' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-07T08:16:32.978 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:32 smithi090 ceph-mon[33260]: pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 117 KiB/s, 0 objects/s recovering 2024-09-07T08:16:32.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:32 smithi090 ceph-mon[33260]: from='client.? 172.21.15.191:0/2479023643' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-07T08:16:34.795 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:34 smithi191 ceph-mon[34025]: pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 98 KiB/s, 0 objects/s recovering 2024-09-07T08:16:34.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:34 smithi018 ceph-mon[30322]: pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 98 KiB/s, 0 objects/s recovering 2024-09-07T08:16:34.978 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:34 smithi090 ceph-mon[33260]: pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 98 KiB/s, 0 objects/s recovering 2024-09-07T08:16:36.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:36 smithi191 ceph-mon[34025]: pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 83 KiB/s, 0 objects/s recovering 2024-09-07T08:16:36.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:36 smithi018 ceph-mon[30322]: pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 83 KiB/s, 0 objects/s recovering 2024-09-07T08:16:36.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:36 smithi090 ceph-mon[33260]: pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 83 KiB/s, 0 objects/s recovering 2024-09-07T08:16:37.787 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:37 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-07T08:16:37.787 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:37 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:16:37.787 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:37 smithi191 ceph-mon[34025]: Deploying daemon osd.5 on smithi191 2024-09-07T08:16:37.787 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:37 smithi191 ceph-mon[34025]: pgmap v123: 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-07T08:16:37.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:37 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-07T08:16:37.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:37 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:16:37.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:37 smithi018 ceph-mon[30322]: Deploying daemon osd.5 on smithi191 2024-09-07T08:16:37.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:37 smithi018 ceph-mon[30322]: pgmap v123: 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-07T08:16:37.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:37 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-07T08:16:37.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:37 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:16:37.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:37 smithi090 ceph-mon[33260]: Deploying daemon osd.5 on smithi191 2024-09-07T08:16:37.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:37 smithi090 ceph-mon[33260]: pgmap v123: 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-07T08:16:40.685 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:40 smithi191 ceph-mon[34025]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-07T08:16:40.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:40 smithi090 ceph-mon[33260]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-07T08:16:40.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:40 smithi018 ceph-mon[30322]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-07T08:16:42.604 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:42 smithi191 ceph-mon[34025]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-07T08:16:42.604 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:42 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:16:42.604 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:42 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:42.604 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:42 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:42.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:42 smithi090 ceph-mon[33260]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-07T08:16:42.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:42 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:16:42.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:42 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:42.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:42 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:42.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:42 smithi018 ceph-mon[30322]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-07T08:16:42.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:42 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:16:42.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:42 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:42.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:42 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:44.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:44 smithi191 ceph-mon[34025]: pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-07T08:16:44.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:44 smithi090 ceph-mon[33260]: pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-07T08:16:44.748 INFO:teuthology.orchestra.run.smithi191.stdout:Created osd(s) 5 on host 'smithi191' 2024-09-07T08:16:44.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:44 smithi018 ceph-mon[30322]: pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-07T08:16:45.334 DEBUG:teuthology.orchestra.run.smithi191:osd.5> sudo journalctl -f -n 0 -u ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@osd.5.service 2024-09-07T08:16:45.336 INFO:tasks.cephadm:Waiting for 6 OSDs to come up... 2024-09-07T08:16:45.336 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-07T08:16:45.550 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:16:45.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:45 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:45.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:45 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:45.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:45 smithi018 ceph-mon[30322]: from='osd.5 [v2:172.21.15.191:6808/2553231110,v1:172.21.15.191:6809/2553231110]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-07T08:16:45.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:45 smithi018 ceph-mon[30322]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-07T08:16:45.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:45 smithi018 ceph-mon[30322]: pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-07T08:16:45.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:45 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:45.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:45 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:46.008 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:45 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:46.008 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:45 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:46.008 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:45 smithi191 ceph-mon[34025]: from='osd.5 [v2:172.21.15.191:6808/2553231110,v1:172.21.15.191:6809/2553231110]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-07T08:16:46.008 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:45 smithi191 ceph-mon[34025]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-07T08:16:46.008 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:45 smithi191 ceph-mon[34025]: pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-07T08:16:46.008 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:45 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:46.009 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:45 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:46.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:45 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:46.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:45 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:46.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:45 smithi090 ceph-mon[33260]: from='osd.5 [v2:172.21.15.191:6808/2553231110,v1:172.21.15.191:6809/2553231110]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-07T08:16:46.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:45 smithi090 ceph-mon[33260]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-07T08:16:46.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:45 smithi090 ceph-mon[33260]: pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-07T08:16:46.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:45 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:46.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:45 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:46.885 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:46 smithi191 ceph-mon[34025]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-07T08:16:46.885 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:46 smithi191 ceph-mon[34025]: osdmap e39: 6 total, 5 up, 6 in 2024-09-07T08:16:46.885 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:46 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-07T08:16:46.885 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:46 smithi191 ceph-mon[34025]: from='osd.5 [v2:172.21.15.191:6808/2553231110,v1:172.21.15.191:6809/2553231110]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi191", "root=default"]}]: dispatch 2024-09-07T08:16:46.885 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:46 smithi191 ceph-mon[34025]: 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-07T08:16:46.885 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 07 08:16:46 smithi191 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-5[44085]: 2024-09-07T08:16:46.757+0000 7f446300c640 -1 osd.5 0 waiting for initial osdmap 2024-09-07T08:16:46.885 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 07 08:16:46 smithi191 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-5[44085]: 2024-09-07T08:16:46.763+0000 7f445ee35640 -1 osd.5 40 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-07T08:16:46.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:46 smithi018 ceph-mon[30322]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-07T08:16:46.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:46 smithi018 ceph-mon[30322]: osdmap e39: 6 total, 5 up, 6 in 2024-09-07T08:16:46.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:46 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-07T08:16:46.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:46 smithi018 ceph-mon[30322]: from='osd.5 [v2:172.21.15.191:6808/2553231110,v1:172.21.15.191:6809/2553231110]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi191", "root=default"]}]: dispatch 2024-09-07T08:16:46.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:46 smithi018 ceph-mon[30322]: 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-07T08:16:47.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:46 smithi090 ceph-mon[33260]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-07T08:16:47.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:46 smithi090 ceph-mon[33260]: osdmap e39: 6 total, 5 up, 6 in 2024-09-07T08:16:47.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:46 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-07T08:16:47.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:46 smithi090 ceph-mon[33260]: from='osd.5 [v2:172.21.15.191:6808/2553231110,v1:172.21.15.191:6809/2553231110]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi191", "root=default"]}]: dispatch 2024-09-07T08:16:47.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:46 smithi090 ceph-mon[33260]: 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-07T08:16:47.431 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:16:47.868 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:47 smithi191 ceph-mon[34025]: 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-07T08:16:47.868 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:47 smithi191 ceph-mon[34025]: osdmap e40: 6 total, 5 up, 6 in 2024-09-07T08:16:47.868 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:47 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-07T08:16:47.868 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:47 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-07T08:16:47.868 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:47 smithi191 ceph-mon[34025]: pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-07T08:16:47.869 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:47 smithi191 ceph-mon[34025]: from='client.? 172.21.15.18:0/2521942893' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-07T08:16:47.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:47 smithi018 ceph-mon[30322]: 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-07T08:16:47.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:47 smithi018 ceph-mon[30322]: osdmap e40: 6 total, 5 up, 6 in 2024-09-07T08:16:47.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:47 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-07T08:16:47.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:47 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-07T08:16:47.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:47 smithi018 ceph-mon[30322]: pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-07T08:16:47.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:47 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/2521942893' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-07T08:16:48.200 INFO:teuthology.orchestra.run.smithi018.stdout:{"epoch":40,"num_osds":6,"num_up_osds":5,"osd_up_since":1725696985,"num_in_osds":6,"osd_in_since":1725696991,"num_remapped_pgs":0} 2024-09-07T08:16:48.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:47 smithi090 ceph-mon[33260]: 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-07T08:16:48.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:47 smithi090 ceph-mon[33260]: osdmap e40: 6 total, 5 up, 6 in 2024-09-07T08:16:48.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:47 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-07T08:16:48.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:47 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-07T08:16:48.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:47 smithi090 ceph-mon[33260]: pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-07T08:16:48.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:47 smithi090 ceph-mon[33260]: from='client.? 172.21.15.18:0/2521942893' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-07T08:16:49.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:48 smithi191 ceph-mon[34025]: purged_snaps scrub starts 2024-09-07T08:16:49.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:48 smithi191 ceph-mon[34025]: purged_snaps scrub ok 2024-09-07T08:16:49.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:48 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-07T08:16:49.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:48 smithi191 ceph-mon[34025]: osd.5 [v2:172.21.15.191:6808/2553231110,v1:172.21.15.191:6809/2553231110] boot 2024-09-07T08:16:49.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:48 smithi191 ceph-mon[34025]: osdmap e41: 6 total, 6 up, 6 in 2024-09-07T08:16:49.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:48 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-07T08:16:49.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:48 smithi191 ceph-mon[34025]: Detected new or changed devices on smithi191 2024-09-07T08:16:49.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:48 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:49.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:48 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:49.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:48 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-07T08:16:49.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:48 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-07T08:16:49.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:48 smithi191 ceph-mon[34025]: Adjusting osd_memory_target on smithi191 to 10592M 2024-09-07T08:16:49.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:48 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:49.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:48 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:16:49.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:48 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:16:49.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:48 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:49.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:48 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:16:49.143 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:48 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:16:49.143 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:48 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:16:49.143 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:48 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:49.201 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-07T08:16:49.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:48 smithi018 ceph-mon[30322]: purged_snaps scrub starts 2024-09-07T08:16:49.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:48 smithi018 ceph-mon[30322]: purged_snaps scrub ok 2024-09-07T08:16:49.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:48 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-07T08:16:49.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:48 smithi018 ceph-mon[30322]: osd.5 [v2:172.21.15.191:6808/2553231110,v1:172.21.15.191:6809/2553231110] boot 2024-09-07T08:16:49.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:48 smithi018 ceph-mon[30322]: osdmap e41: 6 total, 6 up, 6 in 2024-09-07T08:16:49.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:48 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-07T08:16:49.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:48 smithi018 ceph-mon[30322]: Detected new or changed devices on smithi191 2024-09-07T08:16:49.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:48 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:49.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:48 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:49.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:48 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-07T08:16:49.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:48 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-07T08:16:49.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:48 smithi018 ceph-mon[30322]: Adjusting osd_memory_target on smithi191 to 10592M 2024-09-07T08:16:49.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:48 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:49.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:48 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:16:49.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:48 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:16:49.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:48 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:49.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:48 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:16:49.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:48 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:16:49.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:48 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:16:49.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:48 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:49.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:48 smithi090 ceph-mon[33260]: purged_snaps scrub starts 2024-09-07T08:16:49.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:48 smithi090 ceph-mon[33260]: purged_snaps scrub ok 2024-09-07T08:16:49.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:48 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-07T08:16:49.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:48 smithi090 ceph-mon[33260]: osd.5 [v2:172.21.15.191:6808/2553231110,v1:172.21.15.191:6809/2553231110] boot 2024-09-07T08:16:49.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:48 smithi090 ceph-mon[33260]: osdmap e41: 6 total, 6 up, 6 in 2024-09-07T08:16:49.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:48 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-07T08:16:49.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:48 smithi090 ceph-mon[33260]: Detected new or changed devices on smithi191 2024-09-07T08:16:49.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:48 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:49.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:48 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:49.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:48 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-07T08:16:49.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:48 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-07T08:16:49.230 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:48 smithi090 ceph-mon[33260]: Adjusting osd_memory_target on smithi191 to 10592M 2024-09-07T08:16:49.230 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:48 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:49.230 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:48 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:16:49.230 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:48 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:16:49.230 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:48 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:49.230 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:48 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:16:49.230 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:48 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:16:49.230 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:48 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:16:49.230 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:48 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:16:49.402 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:16:49.774 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:49 smithi018 ceph-mon[30322]: osdmap e42: 6 total, 6 up, 6 in 2024-09-07T08:16:49.774 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:49 smithi018 ceph-mon[30322]: pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:16:49.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:49 smithi090 ceph-mon[33260]: osdmap e42: 6 total, 6 up, 6 in 2024-09-07T08:16:49.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:49 smithi090 ceph-mon[33260]: pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:16:50.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:49 smithi191 ceph-mon[34025]: osdmap e42: 6 total, 6 up, 6 in 2024-09-07T08:16:50.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:49 smithi191 ceph-mon[34025]: pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:16:50.995 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:50 smithi018 ceph-mon[30322]: osdmap e43: 6 total, 6 up, 6 in 2024-09-07T08:16:51.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:50 smithi191 ceph-mon[34025]: osdmap e43: 6 total, 6 up, 6 in 2024-09-07T08:16:51.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:50 smithi090 ceph-mon[33260]: osdmap e43: 6 total, 6 up, 6 in 2024-09-07T08:16:51.260 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:16:51.882 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:51 smithi018 ceph-mon[30322]: osdmap e44: 6 total, 6 up, 6 in 2024-09-07T08:16:51.882 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:51 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/922770304' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-07T08:16:51.882 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:51 smithi018 ceph-mon[30322]: pgmap v136: 1 pgs: 1 activating+undersized+degraded+remapped; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail; 2/6 objects degraded (33.333%) 2024-09-07T08:16:51.906 INFO:teuthology.orchestra.run.smithi018.stdout:{"epoch":44,"num_osds":6,"num_up_osds":6,"osd_up_since":1725697007,"num_in_osds":6,"osd_in_since":1725696991,"num_remapped_pgs":0} 2024-09-07T08:16:51.906 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph osd dump --format=json 2024-09-07T08:16:52.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:51 smithi191 ceph-mon[34025]: osdmap e44: 6 total, 6 up, 6 in 2024-09-07T08:16:52.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:51 smithi191 ceph-mon[34025]: from='client.? 172.21.15.18:0/922770304' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-07T08:16:52.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:51 smithi191 ceph-mon[34025]: pgmap v136: 1 pgs: 1 activating+undersized+degraded+remapped; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail; 2/6 objects degraded (33.333%) 2024-09-07T08:16:52.145 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:16:52.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:51 smithi090 ceph-mon[33260]: osdmap e44: 6 total, 6 up, 6 in 2024-09-07T08:16:52.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:51 smithi090 ceph-mon[33260]: from='client.? 172.21.15.18:0/922770304' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-07T08:16:52.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:51 smithi090 ceph-mon[33260]: pgmap v136: 1 pgs: 1 activating+undersized+degraded+remapped; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail; 2/6 objects degraded (33.333%) 2024-09-07T08:16:52.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:52 smithi018 ceph-mon[30322]: Health check failed: Degraded data redundancy: 2/6 objects degraded (33.333%), 1 pg degraded (PG_DEGRADED) 2024-09-07T08:16:52.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:52 smithi018 ceph-mon[30322]: osdmap e45: 6 total, 6 up, 6 in 2024-09-07T08:16:53.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:52 smithi191 ceph-mon[34025]: Health check failed: Degraded data redundancy: 2/6 objects degraded (33.333%), 1 pg degraded (PG_DEGRADED) 2024-09-07T08:16:53.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:52 smithi191 ceph-mon[34025]: osdmap e45: 6 total, 6 up, 6 in 2024-09-07T08:16:53.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:52 smithi090 ceph-mon[33260]: Health check failed: Degraded data redundancy: 2/6 objects degraded (33.333%), 1 pg degraded (PG_DEGRADED) 2024-09-07T08:16:53.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:52 smithi090 ceph-mon[33260]: osdmap e45: 6 total, 6 up, 6 in 2024-09-07T08:16:54.073 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:16:54.073 INFO:teuthology.orchestra.run.smithi018.stdout:{"epoch":45,"fsid":"d3fad026-6cf0-11ef-bcea-c7b262605968","created":"2024-09-07T08:12:40.488979+0000","modified":"2024-09-07T08:16:51.780192+0000","last_up_change":"2024-09-07T08:16:47.754335+0000","last_in_change":"2024-09-07T08:16:31.452434+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":"reef","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-07T08:15:43.706593+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,"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_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":"80c19d76-c3ee-4828-8cdb-edbf144e703e","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.18:6802","nonce":353772314},{"type":"v1","addr":"172.21.15.18:6803","nonce":353772314}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6804","nonce":353772314},{"type":"v1","addr":"172.21.15.18:6805","nonce":353772314}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6808","nonce":353772314},{"type":"v1","addr":"172.21.15.18:6809","nonce":353772314}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6806","nonce":353772314},{"type":"v1","addr":"172.21.15.18:6807","nonce":353772314}]},"public_addr":"172.21.15.18:6803/353772314","cluster_addr":"172.21.15.18:6805/353772314","heartbeat_back_addr":"172.21.15.18:6809/353772314","heartbeat_front_addr":"172.21.15.18:6807/353772314","state":["exists","up"]},{"osd":1,"uuid":"a035da25-5d18-45fa-bd1b-ac94304741a5","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.18:6810","nonce":2613913137},{"type":"v1","addr":"172.21.15.18:6811","nonce":2613913137}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6812","nonce":2613913137},{"type":"v1","addr":"172.21.15.18:6813","nonce":2613913137}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6816","nonce":2613913137},{"type":"v1","addr":"172.21.15.18:6817","nonce":2613913137}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6814","nonce":2613913137},{"type":"v1","addr":"172.21.15.18:6815","nonce":2613913137}]},"public_addr":"172.21.15.18:6811/2613913137","cluster_addr":"172.21.15.18:6813/2613913137","heartbeat_back_addr":"172.21.15.18:6817/2613913137","heartbeat_front_addr":"172.21.15.18:6815/2613913137","state":["exists","up"]},{"osd":2,"uuid":"a56a3ed6-c671-4fe7-872f-f8bccc582797","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.90:6800","nonce":2467369961},{"type":"v1","addr":"172.21.15.90:6801","nonce":2467369961}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.90:6802","nonce":2467369961},{"type":"v1","addr":"172.21.15.90:6803","nonce":2467369961}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.90:6806","nonce":2467369961},{"type":"v1","addr":"172.21.15.90:6807","nonce":2467369961}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.90:6804","nonce":2467369961},{"type":"v1","addr":"172.21.15.90:6805","nonce":2467369961}]},"public_addr":"172.21.15.90:6801/2467369961","cluster_addr":"172.21.15.90:6803/2467369961","heartbeat_back_addr":"172.21.15.90:6807/2467369961","heartbeat_front_addr":"172.21.15.90:6805/2467369961","state":["exists","up"]},{"osd":3,"uuid":"40309a12-242a-4c66-a427-d204bbd8d28a","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":44,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.90:6808","nonce":188191346},{"type":"v1","addr":"172.21.15.90:6809","nonce":188191346}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.90:6810","nonce":188191346},{"type":"v1","addr":"172.21.15.90:6811","nonce":188191346}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.90:6814","nonce":188191346},{"type":"v1","addr":"172.21.15.90:6815","nonce":188191346}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.90:6812","nonce":188191346},{"type":"v1","addr":"172.21.15.90:6813","nonce":188191346}]},"public_addr":"172.21.15.90:6809/188191346","cluster_addr":"172.21.15.90:6811/188191346","heartbeat_back_addr":"172.21.15.90:6815/188191346","heartbeat_front_addr":"172.21.15.90:6813/188191346","state":["exists","up"]},{"osd":4,"uuid":"0eeec5cf-67a2-4193-a05a-ae3cbb0a05ee","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":33,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6800","nonce":1699685294},{"type":"v1","addr":"172.21.15.191:6801","nonce":1699685294}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6802","nonce":1699685294},{"type":"v1","addr":"172.21.15.191:6803","nonce":1699685294}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6806","nonce":1699685294},{"type":"v1","addr":"172.21.15.191:6807","nonce":1699685294}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6804","nonce":1699685294},{"type":"v1","addr":"172.21.15.191:6805","nonce":1699685294}]},"public_addr":"172.21.15.191:6801/1699685294","cluster_addr":"172.21.15.191:6803/1699685294","heartbeat_back_addr":"172.21.15.191:6807/1699685294","heartbeat_front_addr":"172.21.15.191:6805/1699685294","state":["exists","up"]},{"osd":5,"uuid":"641adffc-b6d6-4506-b0f2-350cf1a47721","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":41,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6808","nonce":2553231110},{"type":"v1","addr":"172.21.15.191:6809","nonce":2553231110}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6810","nonce":2553231110},{"type":"v1","addr":"172.21.15.191:6811","nonce":2553231110}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6814","nonce":2553231110},{"type":"v1","addr":"172.21.15.191:6815","nonce":2553231110}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6812","nonce":2553231110},{"type":"v1","addr":"172.21.15.191:6813","nonce":2553231110}]},"public_addr":"172.21.15.191:6809/2553231110","cluster_addr":"172.21.15.191:6811/2553231110","heartbeat_back_addr":"172.21.15.191:6815/2553231110","heartbeat_front_addr":"172.21.15.191:6813/2553231110","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-07T08:14:56.421470+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-07T08:15:19.450007+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-07T08:15:40.516155+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-07T08:16:03.408347+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-07T08:16:23.721061+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-07T08:16:46.098643+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.18:6801/4006326945":"2024-09-08T08:13:27.378137+0000","172.21.15.18:6800/4006326945":"2024-09-08T08:13:27.378137+0000","172.21.15.18:0/1840383351":"2024-09-08T08:13:27.378137+0000","172.21.15.18:0/3764472665":"2024-09-08T08:13:27.378137+0000","172.21.15.18:0/3036528443":"2024-09-08T08:13:27.378137+0000","172.21.15.18:0/2892727778":"2024-09-08T08:13:03.449171+0000","172.21.15.18:6801/2999896523":"2024-09-08T08:13:03.449171+0000","172.21.15.18:6800/2999896523":"2024-09-08T08:13:03.449171+0000","172.21.15.18:0/3830702976":"2024-09-08T08:13:03.449171+0000","172.21.15.18:0/2869030268":"2024-09-08T08:13:03.449171+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-07T08:16:54.074 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:53 smithi018 ceph-mon[30322]: pgmap v138: 1 pgs: 1 activating+undersized+degraded+remapped; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail; 2/6 objects degraded (33.333%) 2024-09-07T08:16:54.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:53 smithi191 ceph-mon[34025]: pgmap v138: 1 pgs: 1 activating+undersized+degraded+remapped; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail; 2/6 objects degraded (33.333%) 2024-09-07T08:16:54.228 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:53 smithi090 ceph-mon[33260]: pgmap v138: 1 pgs: 1 activating+undersized+degraded+remapped; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail; 2/6 objects degraded (33.333%) 2024-09-07T08:16:54.844 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-09-07T08:15:43.706593+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, '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_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-07T08:16:54.845 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph osd pool get .mgr pg_num 2024-09-07T08:16:55.045 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:16:55.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:54 smithi191 ceph-mon[34025]: from='client.? 172.21.15.18:0/1606700714' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-07T08:16:55.166 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:54 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/1606700714' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-07T08:16:55.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:54 smithi090 ceph-mon[33260]: from='client.? 172.21.15.18:0/1606700714' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-07T08:16:56.076 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:55 smithi018 ceph-mon[30322]: pgmap v139: 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-07T08:16:56.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:55 smithi191 ceph-mon[34025]: pgmap v139: 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-07T08:16:56.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:55 smithi090 ceph-mon[33260]: pgmap v139: 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-07T08:16:56.712 INFO:teuthology.orchestra.run.smithi018.stdout:pg_num: 1 2024-09-07T08:16:57.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:56 smithi191 ceph-mon[34025]: Health check cleared: PG_DEGRADED (was: Degraded data redundancy: 2/6 objects degraded (33.333%), 1 pg degraded) 2024-09-07T08:16:57.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:56 smithi191 ceph-mon[34025]: Cluster is now healthy 2024-09-07T08:16:57.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:56 smithi191 ceph-mon[34025]: from='client.? 172.21.15.18:0/3746072654' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-07T08:16:57.173 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:56 smithi018 ceph-mon[30322]: Health check cleared: PG_DEGRADED (was: Degraded data redundancy: 2/6 objects degraded (33.333%), 1 pg degraded) 2024-09-07T08:16:57.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:56 smithi018 ceph-mon[30322]: Cluster is now healthy 2024-09-07T08:16:57.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:56 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/3746072654' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-07T08:16:57.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:56 smithi090 ceph-mon[33260]: Health check cleared: PG_DEGRADED (was: Degraded data redundancy: 2/6 objects degraded (33.333%), 1 pg degraded) 2024-09-07T08:16:57.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:56 smithi090 ceph-mon[33260]: Cluster is now healthy 2024-09-07T08:16:57.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:56 smithi090 ceph-mon[33260]: from='client.? 172.21.15.18:0/3746072654' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-07T08:16:57.288 INFO:tasks.cephadm:Setting up client nodes... 2024-09-07T08:16:57.288 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-09-07T08:16:57.289 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-09-07T08:16:57.289 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph mgr dump --format=json 2024-09-07T08:16:57.485 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:16:57.919 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:57 smithi018 ceph-mon[30322]: pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail; 75 KiB/s, 0 objects/s recovering 2024-09-07T08:16:58.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:57 smithi191 ceph-mon[34025]: pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail; 75 KiB/s, 0 objects/s recovering 2024-09-07T08:16:58.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:57 smithi090 ceph-mon[33260]: pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail; 75 KiB/s, 0 objects/s recovering 2024-09-07T08:16:59.230 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:16:59.537 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:16:59 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/410565168' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-07T08:16:59.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:16:59 smithi191 ceph-mon[34025]: from='client.? 172.21.15.18:0/410565168' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-07T08:16:59.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:16:59 smithi090 ceph-mon[33260]: from='client.? 172.21.15.18:0/410565168' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-07T08:16:59.844 INFO:teuthology.orchestra.run.smithi018.stdout:{"epoch":15,"flags":0,"active_gid":14150,"active_name":"a","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6800","nonce":954083333},{"type":"v1","addr":"172.21.15.18:6801","nonce":954083333}]},"active_addr":"172.21.15.18:6801/954083333","active_change":"2024-09-07T08:13:27.378247+0000","active_mgr_features":4540138322906710015,"available":true,"standbys":[{"gid":24104,"name":"b","mgr_features":4540138322906710015,"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","upmap"],"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":[]},"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/ceph-grafana:9.4.7","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.0.0","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_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":[]},"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":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","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":[]}}},{"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":[]},"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","upmap"],"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":[]},"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/ceph-grafana:9.4.7","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.0.0","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_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":[]},"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":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","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":[]}}},{"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":[]},"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.18: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"]},"last_failure_osd_epoch":3,"active_clients":[{"name":"devicehealth","addrvec":[{"type":"v2","addr":"172.21.15.18:0","nonce":1074981438}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.18:0","nonce":137252748}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.18:0","nonce":2057172992}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.18:0","nonce":3629342435}]}]} 2024-09-07T08:16:59.848 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-09-07T08:16:59.848 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-09-07T08:16:59.848 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph osd dump --format=json 2024-09-07T08:17:00.045 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:17:00.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:00 smithi018 ceph-mon[30322]: pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail; 67 KiB/s, 0 objects/s recovering 2024-09-07T08:17:00.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:00 smithi191 ceph-mon[34025]: pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail; 67 KiB/s, 0 objects/s recovering 2024-09-07T08:17:00.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:00 smithi090 ceph-mon[33260]: pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail; 67 KiB/s, 0 objects/s recovering 2024-09-07T08:17:01.806 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:17:01.806 INFO:teuthology.orchestra.run.smithi018.stdout:{"epoch":45,"fsid":"d3fad026-6cf0-11ef-bcea-c7b262605968","created":"2024-09-07T08:12:40.488979+0000","modified":"2024-09-07T08:16:51.780192+0000","last_up_change":"2024-09-07T08:16:47.754335+0000","last_in_change":"2024-09-07T08:16:31.452434+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":"reef","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-07T08:15:43.706593+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,"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_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":"80c19d76-c3ee-4828-8cdb-edbf144e703e","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.18:6802","nonce":353772314},{"type":"v1","addr":"172.21.15.18:6803","nonce":353772314}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6804","nonce":353772314},{"type":"v1","addr":"172.21.15.18:6805","nonce":353772314}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6808","nonce":353772314},{"type":"v1","addr":"172.21.15.18:6809","nonce":353772314}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6806","nonce":353772314},{"type":"v1","addr":"172.21.15.18:6807","nonce":353772314}]},"public_addr":"172.21.15.18:6803/353772314","cluster_addr":"172.21.15.18:6805/353772314","heartbeat_back_addr":"172.21.15.18:6809/353772314","heartbeat_front_addr":"172.21.15.18:6807/353772314","state":["exists","up"]},{"osd":1,"uuid":"a035da25-5d18-45fa-bd1b-ac94304741a5","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.18:6810","nonce":2613913137},{"type":"v1","addr":"172.21.15.18:6811","nonce":2613913137}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6812","nonce":2613913137},{"type":"v1","addr":"172.21.15.18:6813","nonce":2613913137}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6816","nonce":2613913137},{"type":"v1","addr":"172.21.15.18:6817","nonce":2613913137}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6814","nonce":2613913137},{"type":"v1","addr":"172.21.15.18:6815","nonce":2613913137}]},"public_addr":"172.21.15.18:6811/2613913137","cluster_addr":"172.21.15.18:6813/2613913137","heartbeat_back_addr":"172.21.15.18:6817/2613913137","heartbeat_front_addr":"172.21.15.18:6815/2613913137","state":["exists","up"]},{"osd":2,"uuid":"a56a3ed6-c671-4fe7-872f-f8bccc582797","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.90:6800","nonce":2467369961},{"type":"v1","addr":"172.21.15.90:6801","nonce":2467369961}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.90:6802","nonce":2467369961},{"type":"v1","addr":"172.21.15.90:6803","nonce":2467369961}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.90:6806","nonce":2467369961},{"type":"v1","addr":"172.21.15.90:6807","nonce":2467369961}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.90:6804","nonce":2467369961},{"type":"v1","addr":"172.21.15.90:6805","nonce":2467369961}]},"public_addr":"172.21.15.90:6801/2467369961","cluster_addr":"172.21.15.90:6803/2467369961","heartbeat_back_addr":"172.21.15.90:6807/2467369961","heartbeat_front_addr":"172.21.15.90:6805/2467369961","state":["exists","up"]},{"osd":3,"uuid":"40309a12-242a-4c66-a427-d204bbd8d28a","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":44,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.90:6808","nonce":188191346},{"type":"v1","addr":"172.21.15.90:6809","nonce":188191346}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.90:6810","nonce":188191346},{"type":"v1","addr":"172.21.15.90:6811","nonce":188191346}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.90:6814","nonce":188191346},{"type":"v1","addr":"172.21.15.90:6815","nonce":188191346}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.90:6812","nonce":188191346},{"type":"v1","addr":"172.21.15.90:6813","nonce":188191346}]},"public_addr":"172.21.15.90:6809/188191346","cluster_addr":"172.21.15.90:6811/188191346","heartbeat_back_addr":"172.21.15.90:6815/188191346","heartbeat_front_addr":"172.21.15.90:6813/188191346","state":["exists","up"]},{"osd":4,"uuid":"0eeec5cf-67a2-4193-a05a-ae3cbb0a05ee","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":33,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6800","nonce":1699685294},{"type":"v1","addr":"172.21.15.191:6801","nonce":1699685294}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6802","nonce":1699685294},{"type":"v1","addr":"172.21.15.191:6803","nonce":1699685294}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6806","nonce":1699685294},{"type":"v1","addr":"172.21.15.191:6807","nonce":1699685294}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6804","nonce":1699685294},{"type":"v1","addr":"172.21.15.191:6805","nonce":1699685294}]},"public_addr":"172.21.15.191:6801/1699685294","cluster_addr":"172.21.15.191:6803/1699685294","heartbeat_back_addr":"172.21.15.191:6807/1699685294","heartbeat_front_addr":"172.21.15.191:6805/1699685294","state":["exists","up"]},{"osd":5,"uuid":"641adffc-b6d6-4506-b0f2-350cf1a47721","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":41,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6808","nonce":2553231110},{"type":"v1","addr":"172.21.15.191:6809","nonce":2553231110}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6810","nonce":2553231110},{"type":"v1","addr":"172.21.15.191:6811","nonce":2553231110}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6814","nonce":2553231110},{"type":"v1","addr":"172.21.15.191:6815","nonce":2553231110}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6812","nonce":2553231110},{"type":"v1","addr":"172.21.15.191:6813","nonce":2553231110}]},"public_addr":"172.21.15.191:6809/2553231110","cluster_addr":"172.21.15.191:6811/2553231110","heartbeat_back_addr":"172.21.15.191:6815/2553231110","heartbeat_front_addr":"172.21.15.191:6813/2553231110","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-07T08:14:56.421470+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-07T08:15:19.450007+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-07T08:15:40.516155+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-07T08:16:03.408347+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-07T08:16:23.721061+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-07T08:16:46.098643+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.18:6801/4006326945":"2024-09-08T08:13:27.378137+0000","172.21.15.18:6800/4006326945":"2024-09-08T08:13:27.378137+0000","172.21.15.18:0/1840383351":"2024-09-08T08:13:27.378137+0000","172.21.15.18:0/3764472665":"2024-09-08T08:13:27.378137+0000","172.21.15.18:0/3036528443":"2024-09-08T08:13:27.378137+0000","172.21.15.18:0/2892727778":"2024-09-08T08:13:03.449171+0000","172.21.15.18:6801/2999896523":"2024-09-08T08:13:03.449171+0000","172.21.15.18:6800/2999896523":"2024-09-08T08:13:03.449171+0000","172.21.15.18:0/3830702976":"2024-09-08T08:13:03.449171+0000","172.21.15.18:0/2869030268":"2024-09-08T08:13:03.449171+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-07T08:17:02.423 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-09-07T08:17:02.423 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph osd dump --format=json 2024-09-07T08:17:02.621 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:17:02.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:02 smithi090 ceph-mon[33260]: pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-07T08:17:02.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:02 smithi090 ceph-mon[33260]: from='client.? 172.21.15.18:0/3709755175' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-07T08:17:02.742 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:02 smithi018 ceph-mon[30322]: pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-07T08:17:02.742 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:02 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/3709755175' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-07T08:17:02.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:02 smithi191 ceph-mon[34025]: pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-07T08:17:02.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:02 smithi191 ceph-mon[34025]: from='client.? 172.21.15.18:0/3709755175' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-07T08:17:04.378 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:17:04.378 INFO:teuthology.orchestra.run.smithi018.stdout:{"epoch":45,"fsid":"d3fad026-6cf0-11ef-bcea-c7b262605968","created":"2024-09-07T08:12:40.488979+0000","modified":"2024-09-07T08:16:51.780192+0000","last_up_change":"2024-09-07T08:16:47.754335+0000","last_in_change":"2024-09-07T08:16:31.452434+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":"reef","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-07T08:15:43.706593+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,"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_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":"80c19d76-c3ee-4828-8cdb-edbf144e703e","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.18:6802","nonce":353772314},{"type":"v1","addr":"172.21.15.18:6803","nonce":353772314}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6804","nonce":353772314},{"type":"v1","addr":"172.21.15.18:6805","nonce":353772314}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6808","nonce":353772314},{"type":"v1","addr":"172.21.15.18:6809","nonce":353772314}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6806","nonce":353772314},{"type":"v1","addr":"172.21.15.18:6807","nonce":353772314}]},"public_addr":"172.21.15.18:6803/353772314","cluster_addr":"172.21.15.18:6805/353772314","heartbeat_back_addr":"172.21.15.18:6809/353772314","heartbeat_front_addr":"172.21.15.18:6807/353772314","state":["exists","up"]},{"osd":1,"uuid":"a035da25-5d18-45fa-bd1b-ac94304741a5","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.18:6810","nonce":2613913137},{"type":"v1","addr":"172.21.15.18:6811","nonce":2613913137}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6812","nonce":2613913137},{"type":"v1","addr":"172.21.15.18:6813","nonce":2613913137}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6816","nonce":2613913137},{"type":"v1","addr":"172.21.15.18:6817","nonce":2613913137}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6814","nonce":2613913137},{"type":"v1","addr":"172.21.15.18:6815","nonce":2613913137}]},"public_addr":"172.21.15.18:6811/2613913137","cluster_addr":"172.21.15.18:6813/2613913137","heartbeat_back_addr":"172.21.15.18:6817/2613913137","heartbeat_front_addr":"172.21.15.18:6815/2613913137","state":["exists","up"]},{"osd":2,"uuid":"a56a3ed6-c671-4fe7-872f-f8bccc582797","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.90:6800","nonce":2467369961},{"type":"v1","addr":"172.21.15.90:6801","nonce":2467369961}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.90:6802","nonce":2467369961},{"type":"v1","addr":"172.21.15.90:6803","nonce":2467369961}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.90:6806","nonce":2467369961},{"type":"v1","addr":"172.21.15.90:6807","nonce":2467369961}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.90:6804","nonce":2467369961},{"type":"v1","addr":"172.21.15.90:6805","nonce":2467369961}]},"public_addr":"172.21.15.90:6801/2467369961","cluster_addr":"172.21.15.90:6803/2467369961","heartbeat_back_addr":"172.21.15.90:6807/2467369961","heartbeat_front_addr":"172.21.15.90:6805/2467369961","state":["exists","up"]},{"osd":3,"uuid":"40309a12-242a-4c66-a427-d204bbd8d28a","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":44,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.90:6808","nonce":188191346},{"type":"v1","addr":"172.21.15.90:6809","nonce":188191346}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.90:6810","nonce":188191346},{"type":"v1","addr":"172.21.15.90:6811","nonce":188191346}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.90:6814","nonce":188191346},{"type":"v1","addr":"172.21.15.90:6815","nonce":188191346}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.90:6812","nonce":188191346},{"type":"v1","addr":"172.21.15.90:6813","nonce":188191346}]},"public_addr":"172.21.15.90:6809/188191346","cluster_addr":"172.21.15.90:6811/188191346","heartbeat_back_addr":"172.21.15.90:6815/188191346","heartbeat_front_addr":"172.21.15.90:6813/188191346","state":["exists","up"]},{"osd":4,"uuid":"0eeec5cf-67a2-4193-a05a-ae3cbb0a05ee","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":33,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6800","nonce":1699685294},{"type":"v1","addr":"172.21.15.191:6801","nonce":1699685294}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6802","nonce":1699685294},{"type":"v1","addr":"172.21.15.191:6803","nonce":1699685294}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6806","nonce":1699685294},{"type":"v1","addr":"172.21.15.191:6807","nonce":1699685294}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6804","nonce":1699685294},{"type":"v1","addr":"172.21.15.191:6805","nonce":1699685294}]},"public_addr":"172.21.15.191:6801/1699685294","cluster_addr":"172.21.15.191:6803/1699685294","heartbeat_back_addr":"172.21.15.191:6807/1699685294","heartbeat_front_addr":"172.21.15.191:6805/1699685294","state":["exists","up"]},{"osd":5,"uuid":"641adffc-b6d6-4506-b0f2-350cf1a47721","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":41,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6808","nonce":2553231110},{"type":"v1","addr":"172.21.15.191:6809","nonce":2553231110}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6810","nonce":2553231110},{"type":"v1","addr":"172.21.15.191:6811","nonce":2553231110}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6814","nonce":2553231110},{"type":"v1","addr":"172.21.15.191:6815","nonce":2553231110}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6812","nonce":2553231110},{"type":"v1","addr":"172.21.15.191:6813","nonce":2553231110}]},"public_addr":"172.21.15.191:6809/2553231110","cluster_addr":"172.21.15.191:6811/2553231110","heartbeat_back_addr":"172.21.15.191:6815/2553231110","heartbeat_front_addr":"172.21.15.191:6813/2553231110","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-07T08:14:56.421470+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-07T08:15:19.450007+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-07T08:15:40.516155+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-07T08:16:03.408347+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-07T08:16:23.721061+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-07T08:16:46.098643+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.18:6801/4006326945":"2024-09-08T08:13:27.378137+0000","172.21.15.18:6800/4006326945":"2024-09-08T08:13:27.378137+0000","172.21.15.18:0/1840383351":"2024-09-08T08:13:27.378137+0000","172.21.15.18:0/3764472665":"2024-09-08T08:13:27.378137+0000","172.21.15.18:0/3036528443":"2024-09-08T08:13:27.378137+0000","172.21.15.18:0/2892727778":"2024-09-08T08:13:03.449171+0000","172.21.15.18:6801/2999896523":"2024-09-08T08:13:03.449171+0000","172.21.15.18:6800/2999896523":"2024-09-08T08:13:03.449171+0000","172.21.15.18:0/3830702976":"2024-09-08T08:13:03.449171+0000","172.21.15.18:0/2869030268":"2024-09-08T08:13:03.449171+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-07T08:17:04.680 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:04 smithi018 ceph-mon[30322]: pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail; 50 KiB/s, 0 objects/s recovering 2024-09-07T08:17:04.680 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:04 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/4211653247' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-07T08:17:04.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:04 smithi090 ceph-mon[33260]: pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail; 50 KiB/s, 0 objects/s recovering 2024-09-07T08:17:04.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:04 smithi090 ceph-mon[33260]: from='client.? 172.21.15.18:0/4211653247' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-07T08:17:04.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:04 smithi191 ceph-mon[34025]: pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail; 50 KiB/s, 0 objects/s recovering 2024-09-07T08:17:04.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:04 smithi191 ceph-mon[34025]: from='client.? 172.21.15.18:0/4211653247' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-07T08:17:04.953 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph tell osd.0 flush_pg_stats 2024-09-07T08:17:04.954 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph tell osd.1 flush_pg_stats 2024-09-07T08:17:04.954 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph tell osd.2 flush_pg_stats 2024-09-07T08:17:04.955 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph tell osd.3 flush_pg_stats 2024-09-07T08:17:04.955 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph tell osd.4 flush_pg_stats 2024-09-07T08:17:04.956 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph tell osd.5 flush_pg_stats 2024-09-07T08:17:05.188 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:17:05.194 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:17:06.473 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:17:06.473 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:17:06.593 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:06 smithi018 ceph-mon[30322]: pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-07T08:17:06.842 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:17:06.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:06 smithi191 ceph-mon[34025]: pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-07T08:17:06.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:06 smithi090 ceph-mon[33260]: pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-07T08:17:07.484 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:17:08.682 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:08 smithi018 ceph-mon[30322]: pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:08.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:08 smithi191 ceph-mon[34025]: pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:08.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:08 smithi090 ceph-mon[33260]: pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:10.452 INFO:teuthology.orchestra.run.smithi018.stdout:77309411348 2024-09-07T08:17:10.452 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph osd last-stat-seq osd.2 2024-09-07T08:17:10.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:10 smithi018 ceph-mon[30322]: pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:10.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:10 smithi191 ceph-mon[34025]: pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:10.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:10 smithi090 ceph-mon[33260]: pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:12.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:12 smithi191 ceph-mon[34025]: pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:12.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:12 smithi018 ceph-mon[30322]: pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:12.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:12 smithi090 ceph-mon[33260]: pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:13.272 INFO:teuthology.orchestra.run.smithi018.stdout:141733920781 2024-09-07T08:17:13.273 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph osd last-stat-seq osd.4 2024-09-07T08:17:14.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:14 smithi018 ceph-mon[30322]: pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:14.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:14 smithi191 ceph-mon[34025]: pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:14.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:14 smithi090 ceph-mon[33260]: pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:14.992 INFO:teuthology.orchestra.run.smithi018.stdout:55834574874 2024-09-07T08:17:14.992 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph osd last-stat-seq osd.1 2024-09-07T08:17:15.385 INFO:teuthology.orchestra.run.smithi018.stdout:107374182416 2024-09-07T08:17:15.385 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph osd last-stat-seq osd.3 2024-09-07T08:17:15.768 INFO:teuthology.orchestra.run.smithi018.stdout:176093659144 2024-09-07T08:17:15.768 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph osd last-stat-seq osd.5 2024-09-07T08:17:16.150 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:17:16.184 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:17:16.781 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:16 smithi090 ceph-mon[33260]: pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:16.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:16 smithi191 ceph-mon[34025]: pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:16.915 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:16 smithi018 ceph-mon[30322]: pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:17.015 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:17:18.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:18 smithi018 ceph-mon[30322]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:18.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:18 smithi191 ceph-mon[34025]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:18.978 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:18 smithi090 ceph-mon[33260]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:19.542 INFO:teuthology.orchestra.run.smithi018.stdout:34359738399 2024-09-07T08:17:19.543 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph osd last-stat-seq osd.0 2024-09-07T08:17:20.794 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:20 smithi018 ceph-mon[30322]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:20.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:20 smithi191 ceph-mon[34025]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:20.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:20 smithi090 ceph-mon[33260]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:21.235 INFO:teuthology.orchestra.run.smithi018.stdout:141733920782 2024-09-07T08:17:21.410 INFO:teuthology.orchestra.run.smithi018.stdout:107374182417 2024-09-07T08:17:21.425 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:17:21.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:21 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/326263437' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-07T08:17:21.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:21 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/3454268027' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-07T08:17:21.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:21 smithi191 ceph-mon[34025]: from='client.? 172.21.15.18:0/326263437' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-07T08:17:21.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:21 smithi191 ceph-mon[34025]: from='client.? 172.21.15.18:0/3454268027' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-07T08:17:21.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:21 smithi090 ceph-mon[33260]: from='client.? 172.21.15.18:0/326263437' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-07T08:17:21.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:21 smithi090 ceph-mon[33260]: from='client.? 172.21.15.18:0/3454268027' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-07T08:17:22.003 INFO:tasks.cephadm.ceph_manager.ceph:need seq 107374182416 got 107374182417 for osd.3 2024-09-07T08:17:22.003 DEBUG:teuthology.parallel:result is None 2024-09-07T08:17:22.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:22 smithi018 ceph-mon[30322]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:22.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:22 smithi191 ceph-mon[34025]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:22.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:22 smithi090 ceph-mon[33260]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:23.557 INFO:tasks.cephadm.ceph_manager.ceph:need seq 141733920781 got 141733920782 for osd.4 2024-09-07T08:17:23.557 DEBUG:teuthology.parallel:result is None 2024-09-07T08:17:23.778 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:17:23.796 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:17:24.607 INFO:teuthology.orchestra.run.smithi018.stdout:77309411350 2024-09-07T08:17:24.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:24 smithi191 ceph-mon[34025]: pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:24.914 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:24 smithi018 ceph-mon[30322]: pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:24.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:24 smithi090 ceph-mon[33260]: pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:25.177 INFO:teuthology.orchestra.run.smithi018.stdout:55834574876 2024-09-07T08:17:25.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:25 smithi191 ceph-mon[34025]: from='client.? 172.21.15.18:0/1225745088' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-07T08:17:25.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:25 smithi191 ceph-mon[34025]: from='client.? 172.21.15.18:0/1965126205' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-07T08:17:25.909 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:25 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/1225745088' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-07T08:17:25.909 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:25 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/1965126205' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-07T08:17:25.938 INFO:tasks.cephadm.ceph_manager.ceph:need seq 55834574874 got 55834574876 for osd.1 2024-09-07T08:17:25.938 DEBUG:teuthology.parallel:result is None 2024-09-07T08:17:25.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:25 smithi090 ceph-mon[33260]: from='client.? 172.21.15.18:0/1225745088' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-07T08:17:25.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:25 smithi090 ceph-mon[33260]: from='client.? 172.21.15.18:0/1965126205' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-07T08:17:26.325 INFO:tasks.cephadm.ceph_manager.ceph:need seq 77309411348 got 77309411350 for osd.2 2024-09-07T08:17:26.325 DEBUG:teuthology.parallel:result is None 2024-09-07T08:17:26.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:26 smithi018 ceph-mon[30322]: pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:26.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:26 smithi191 ceph-mon[34025]: pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:26.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:26 smithi090 ceph-mon[33260]: pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:28.276 INFO:teuthology.orchestra.run.smithi018.stdout:176093659147 2024-09-07T08:17:28.856 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:28 smithi018 ceph-mon[30322]: pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:28.856 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:28 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/3576374277' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-07T08:17:28.864 INFO:teuthology.orchestra.run.smithi018.stdout:34359738401 2024-09-07T08:17:28.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:28 smithi191 ceph-mon[34025]: pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:28.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:28 smithi191 ceph-mon[34025]: from='client.? 172.21.15.18:0/3576374277' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-07T08:17:28.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:28 smithi090 ceph-mon[33260]: pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:28.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:28 smithi090 ceph-mon[33260]: from='client.? 172.21.15.18:0/3576374277' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-07T08:17:29.144 INFO:tasks.cephadm.ceph_manager.ceph:need seq 176093659144 got 176093659147 for osd.5 2024-09-07T08:17:29.144 DEBUG:teuthology.parallel:result is None 2024-09-07T08:17:29.819 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:29 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/3360121341' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-07T08:17:29.846 INFO:tasks.cephadm.ceph_manager.ceph:need seq 34359738399 got 34359738401 for osd.0 2024-09-07T08:17:29.846 DEBUG:teuthology.parallel:result is None 2024-09-07T08:17:29.847 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-09-07T08:17:29.847 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph pg dump --format=json 2024-09-07T08:17:29.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:29 smithi191 ceph-mon[34025]: from='client.? 172.21.15.18:0/3360121341' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-07T08:17:29.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:29 smithi090 ceph-mon[33260]: from='client.? 172.21.15.18:0/3360121341' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-07T08:17:30.053 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:17:30.705 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:30 smithi018 ceph-mon[30322]: pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:30.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:30 smithi191 ceph-mon[34025]: pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:30.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:30 smithi090 ceph-mon[33260]: pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:31.715 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:17:31.716 INFO:teuthology.orchestra.run.smithi018.stderr:dumped all 2024-09-07T08:17:32.280 INFO:teuthology.orchestra.run.smithi018.stdout:{"pg_ready":true,"pg_map":{"version":157,"stamp":"2024-09-07T08:17:31.422107+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":174484,"kb_used_data":4140,"kb_used_omap":9,"kb_used_meta":170230,"kb_avail":562296428,"statfs":{"total":575970213888,"available":575791542272,"internally_reserved":0,"allocated":4239360,"data_stored":2731764,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9562,"internal_metadata":174316198},"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.002296"},"pg_stats":[{"pgid":"1.0","version":"22'137","reported_seq":267,"reported_epoch":45,"state":"active+clean","last_fresh":"2024-09-07T08:16:51.793443+0000","last_change":"2024-09-07T08:16:51.793443+0000","last_active":"2024-09-07T08:16:51.793443+0000","last_peered":"2024-09-07T08:16:51.793443+0000","last_clean":"2024-09-07T08:16:51.793443+0000","last_became_active":"2024-09-07T08:16:51.793041+0000","last_became_peered":"2024-09-07T08:16:51.793041+0000","last_unstale":"2024-09-07T08:16:51.793443+0000","last_undegraded":"2024-09-07T08:16:51.793443+0000","last_fullsized":"2024-09-07T08:16:51.793443+0000","mapping_epoch":44,"log_start":"0'0","ondisk_log_start":"0'0","created":19,"last_epoch_clean":45,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-07T08:15:43.706963+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-07T08:15:43.706963+0000","last_clean_scrub_stamp":"2024-09-07T08:15:43.706963+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-08T19:17:50.643140+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":3563520,"data_stored":3542208,"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":41,"seq":176093659148,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28000,"kb_used_data":980,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717152,"statfs":{"total":95995035648,"available":95966363648,"internally_reserved":0,"allocated":1003520,"data_stored":750478,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"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":[],"network_ping_times":[{"osd":0,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.378}]},{"osd":1,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.36099999999999999}]},{"osd":2,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.40500000000000003}]},{"osd":3,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.433}]},{"osd":4,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.49399999999999999}]}]},{"osd":4,"up_from":33,"seq":141733920784,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27420,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717732,"statfs":{"total":95995035648,"available":95966957568,"internally_reserved":0,"allocated":409600,"data_stored":160110,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"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":[],"network_ping_times":[{"osd":0,"last update":"Sat Sep 7 08:17:26 2024","interfaces":[{"interface":"back","average":{"1min":0.47999999999999998,"5min":0.47999999999999998,"15min":0.47999999999999998},"min":{"1min":0.35399999999999998,"5min":0.35399999999999998,"15min":0.35399999999999998},"max":{"1min":0.63300000000000001,"5min":0.63300000000000001,"15min":0.63300000000000001},"last":0.45100000000000001},{"interface":"front","average":{"1min":0.46800000000000003,"5min":0.46800000000000003,"15min":0.46800000000000003},"min":{"1min":0.33800000000000002,"5min":0.33800000000000002,"15min":0.33800000000000002},"max":{"1min":0.67800000000000005,"5min":0.67800000000000005,"15min":0.67800000000000005},"last":0.46400000000000002}]},{"osd":1,"last update":"Sat Sep 7 08:17:26 2024","interfaces":[{"interface":"back","average":{"1min":0.441,"5min":0.441,"15min":0.441},"min":{"1min":0.31900000000000001,"5min":0.31900000000000001,"15min":0.31900000000000001},"max":{"1min":0.621,"5min":0.621,"15min":0.621},"last":0.42699999999999999},{"interface":"front","average":{"1min":0.48199999999999998,"5min":0.48199999999999998,"15min":0.48199999999999998},"min":{"1min":0.376,"5min":0.376,"15min":0.376},"max":{"1min":0.63400000000000001,"5min":0.63400000000000001,"15min":0.63400000000000001},"last":0.41099999999999998}]},{"osd":2,"last update":"Sat Sep 7 08:17:26 2024","interfaces":[{"interface":"back","average":{"1min":0.53500000000000003,"5min":0.53500000000000003,"15min":0.53500000000000003},"min":{"1min":0.36199999999999999,"5min":0.36199999999999999,"15min":0.36199999999999999},"max":{"1min":0.71199999999999997,"5min":0.71199999999999997,"15min":0.71199999999999997},"last":0.64900000000000002},{"interface":"front","average":{"1min":0.50700000000000001,"5min":0.50700000000000001,"15min":0.50700000000000001},"min":{"1min":0.38500000000000001,"5min":0.38500000000000001,"15min":0.38500000000000001},"max":{"1min":0.625,"5min":0.625,"15min":0.625},"last":0.55000000000000004}]},{"osd":3,"last update":"Sat Sep 7 08:17:26 2024","interfaces":[{"interface":"back","average":{"1min":0.51900000000000002,"5min":0.51900000000000002,"15min":0.51900000000000002},"min":{"1min":0.37,"5min":0.37,"15min":0.37},"max":{"1min":0.68899999999999995,"5min":0.68899999999999995,"15min":0.68899999999999995},"last":0.5},{"interface":"front","average":{"1min":0.504,"5min":0.504,"15min":0.504},"min":{"1min":0.34599999999999997,"5min":0.34599999999999997,"15min":0.34599999999999997},"max":{"1min":0.61499999999999999,"5min":0.61499999999999999,"15min":0.61499999999999999},"last":0.57199999999999995}]},{"osd":5,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.35199999999999998}]}]},{"osd":3,"up_from":25,"seq":107374182420,"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":980,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717144,"statfs":{"total":95995035648,"available":95966355456,"internally_reserved":0,"allocated":1003520,"data_stored":750478,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1592,"internal_metadata":27654600},"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":[],"network_ping_times":[{"osd":0,"last update":"Sat Sep 7 08:17:05 2024","interfaces":[{"interface":"back","average":{"1min":0.505,"5min":0.505,"15min":0.505},"min":{"1min":0.35499999999999998,"5min":0.35499999999999998,"15min":0.35499999999999998},"max":{"1min":0.73399999999999999,"5min":0.73399999999999999,"15min":0.73399999999999999},"last":0.45200000000000001},{"interface":"front","average":{"1min":0.496,"5min":0.496,"15min":0.496},"min":{"1min":0.36599999999999999,"5min":0.36599999999999999,"15min":0.36599999999999999},"max":{"1min":0.64200000000000002,"5min":0.64200000000000002,"15min":0.64200000000000002},"last":0.35199999999999998}]},{"osd":1,"last update":"Sat Sep 7 08:17:05 2024","interfaces":[{"interface":"back","average":{"1min":0.50900000000000001,"5min":0.50900000000000001,"15min":0.50900000000000001},"min":{"1min":0.376,"5min":0.376,"15min":0.376},"max":{"1min":0.71099999999999997,"5min":0.71099999999999997,"15min":0.71099999999999997},"last":0.47199999999999998},{"interface":"front","average":{"1min":0.48199999999999998,"5min":0.48199999999999998,"15min":0.48199999999999998},"min":{"1min":0.38300000000000001,"5min":0.38300000000000001,"15min":0.38300000000000001},"max":{"1min":0.64400000000000002,"5min":0.64400000000000002,"15min":0.64400000000000002},"last":0.39000000000000001}]},{"osd":2,"last update":"Sat Sep 7 08:17:05 2024","interfaces":[{"interface":"back","average":{"1min":0.35799999999999998,"5min":0.35799999999999998,"15min":0.35799999999999998},"min":{"1min":0.26400000000000001,"5min":0.26400000000000001,"15min":0.26400000000000001},"max":{"1min":0.56100000000000005,"5min":0.56100000000000005,"15min":0.56100000000000005},"last":0.41699999999999998},{"interface":"front","average":{"1min":0.36299999999999999,"5min":0.36299999999999999,"15min":0.36299999999999999},"min":{"1min":0.28000000000000003,"5min":0.28000000000000003,"15min":0.28000000000000003},"max":{"1min":0.55300000000000005,"5min":0.55300000000000005,"15min":0.55300000000000005},"last":0.432}]},{"osd":4,"last update":"Sat Sep 7 08:17:27 2024","interfaces":[{"interface":"back","average":{"1min":0.54100000000000004,"5min":0.54100000000000004,"15min":0.54100000000000004},"min":{"1min":0.33000000000000002,"5min":0.33000000000000002,"15min":0.33000000000000002},"max":{"1min":0.876,"5min":0.876,"15min":0.876},"last":0.51100000000000001},{"interface":"front","average":{"1min":0.54000000000000004,"5min":0.54000000000000004,"15min":0.54000000000000004},"min":{"1min":0.316,"5min":0.316,"15min":0.316},"max":{"1min":0.76800000000000002,"5min":0.76800000000000002,"15min":0.76800000000000002},"last":0.58899999999999997}]},{"osd":5,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.56499999999999995}]}]},{"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":980,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717144,"statfs":{"total":95995035648,"available":95966355456,"internally_reserved":0,"allocated":1003520,"data_stored":750478,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"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":[],"network_ping_times":[{"osd":0,"last update":"Sat Sep 7 08:16:43 2024","interfaces":[{"interface":"back","average":{"1min":0.47799999999999998,"5min":0.47799999999999998,"15min":0.47799999999999998},"min":{"1min":0.315,"5min":0.315,"15min":0.315},"max":{"1min":0.60099999999999998,"5min":0.60099999999999998,"15min":0.60099999999999998},"last":0.53700000000000003},{"interface":"front","average":{"1min":0.48199999999999998,"5min":0.48199999999999998,"15min":0.48199999999999998},"min":{"1min":0.34599999999999997,"5min":0.34599999999999997,"15min":0.34599999999999997},"max":{"1min":0.66400000000000003,"5min":0.66400000000000003,"15min":0.66400000000000003},"last":0.443}]},{"osd":1,"last update":"Sat Sep 7 08:16:43 2024","interfaces":[{"interface":"back","average":{"1min":0.48699999999999999,"5min":0.48699999999999999,"15min":0.48699999999999999},"min":{"1min":0.35199999999999998,"5min":0.35199999999999998,"15min":0.35199999999999998},"max":{"1min":0.59199999999999997,"5min":0.59199999999999997,"15min":0.59199999999999997},"last":0.52300000000000002},{"interface":"front","average":{"1min":0.45700000000000002,"5min":0.45700000000000002,"15min":0.45700000000000002},"min":{"1min":0.34300000000000003,"5min":0.34300000000000003,"15min":0.34300000000000003},"max":{"1min":0.57599999999999996,"5min":0.57599999999999996,"15min":0.57599999999999996},"last":0.46800000000000003}]},{"osd":3,"last update":"Sat Sep 7 08:17:07 2024","interfaces":[{"interface":"back","average":{"1min":0.34699999999999998,"5min":0.34699999999999998,"15min":0.34699999999999998},"min":{"1min":0.22800000000000001,"5min":0.22800000000000001,"15min":0.22800000000000001},"max":{"1min":0.51700000000000002,"5min":0.51700000000000002,"15min":0.51700000000000002},"last":0.33700000000000002},{"interface":"front","average":{"1min":0.40799999999999997,"5min":0.40799999999999997,"15min":0.40799999999999997},"min":{"1min":0.29999999999999999,"5min":0.29999999999999999,"15min":0.29999999999999999},"max":{"1min":0.52700000000000002,"5min":0.52700000000000002,"15min":0.52700000000000002},"last":0.36799999999999999}]},{"osd":4,"last update":"Sat Sep 7 08:17:26 2024","interfaces":[{"interface":"back","average":{"1min":0.52400000000000002,"5min":0.52400000000000002,"15min":0.52400000000000002},"min":{"1min":0.36299999999999999,"5min":0.36299999999999999,"15min":0.36299999999999999},"max":{"1min":0.65200000000000002,"5min":0.65200000000000002,"15min":0.65200000000000002},"last":0.55000000000000004},{"interface":"front","average":{"1min":0.51700000000000002,"5min":0.51700000000000002,"15min":0.51700000000000002},"min":{"1min":0.36599999999999999,"5min":0.36599999999999999,"15min":0.36599999999999999},"max":{"1min":0.755,"5min":0.755,"15min":0.755},"last":0.60699999999999998}]},{"osd":5,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.64600000000000002}]}]},{"osd":1,"up_from":13,"seq":55834574877,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31524,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":31102,"kb_avail":93713628,"statfs":{"total":95995035648,"available":95962755072,"internally_reserved":0,"allocated":409600,"data_stored":160110,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":31848902},"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":[],"network_ping_times":[{"osd":0,"last update":"Sat Sep 7 08:17:26 2024","interfaces":[{"interface":"back","average":{"1min":0.33300000000000002,"5min":0.318,"15min":0.316},"min":{"1min":0.251,"5min":0.248,"15min":0.248},"max":{"1min":0.498,"5min":0.498,"15min":0.498},"last":0.49299999999999999},{"interface":"front","average":{"1min":0.35199999999999998,"5min":0.32800000000000001,"15min":0.32400000000000001},"min":{"1min":0.23899999999999999,"5min":0.22,"15min":0.22},"max":{"1min":0.55100000000000005,"5min":0.55100000000000005,"15min":0.55100000000000005},"last":0.55100000000000005}]},{"osd":2,"last update":"Sat Sep 7 08:16:46 2024","interfaces":[{"interface":"back","average":{"1min":0.51600000000000001,"5min":0.51600000000000001,"15min":0.51600000000000001},"min":{"1min":0.39600000000000002,"5min":0.39600000000000002,"15min":0.39600000000000002},"max":{"1min":0.67600000000000005,"5min":0.67600000000000005,"15min":0.67600000000000005},"last":0.46800000000000003},{"interface":"front","average":{"1min":0.52900000000000003,"5min":0.52900000000000003,"15min":0.52900000000000003},"min":{"1min":0.36299999999999999,"5min":0.36299999999999999,"15min":0.36299999999999999},"max":{"1min":0.70899999999999996,"5min":0.70899999999999996,"15min":0.70899999999999996},"last":0.44700000000000001}]},{"osd":3,"last update":"Sat Sep 7 08:17:05 2024","interfaces":[{"interface":"back","average":{"1min":1.2230000000000001,"5min":1.2230000000000001,"15min":1.2230000000000001},"min":{"1min":0.38500000000000001,"5min":0.38500000000000001,"15min":0.38500000000000001},"max":{"1min":14.898,"5min":14.898,"15min":14.898},"last":0.51700000000000002},{"interface":"front","average":{"1min":0.58399999999999996,"5min":0.58399999999999996,"15min":0.58399999999999996},"min":{"1min":0.36899999999999999,"5min":0.36899999999999999,"15min":0.36899999999999999},"max":{"1min":0.74399999999999999,"5min":0.74399999999999999,"15min":0.74399999999999999},"last":0.53000000000000003}]},{"osd":4,"last update":"Sat Sep 7 08:17:26 2024","interfaces":[{"interface":"back","average":{"1min":0.50900000000000001,"5min":0.50900000000000001,"15min":0.50900000000000001},"min":{"1min":0.39700000000000002,"5min":0.39700000000000002,"15min":0.39700000000000002},"max":{"1min":0.76200000000000001,"5min":0.76200000000000001,"15min":0.76200000000000001},"last":0.59699999999999998},{"interface":"front","average":{"1min":0.78300000000000003,"5min":0.78300000000000003,"15min":0.78300000000000003},"min":{"1min":0.36399999999999999,"5min":0.36399999999999999,"15min":0.36399999999999999},"max":{"1min":6.835,"5min":6.835,"15min":6.835},"last":0.62}]},{"osd":5,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.65200000000000002}]}]},{"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":31524,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":31102,"kb_avail":93713628,"statfs":{"total":95995035648,"available":95962755072,"internally_reserved":0,"allocated":409600,"data_stored":160110,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":31848902},"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":[],"network_ping_times":[{"osd":1,"last update":"Sat Sep 7 08:17:25 2024","interfaces":[{"interface":"back","average":{"1min":0.33700000000000002,"5min":0.318,"15min":0.315},"min":{"1min":0.22700000000000001,"5min":0.191,"15min":0.191},"max":{"1min":0.45900000000000002,"5min":0.45900000000000002,"15min":0.45900000000000002},"last":0.28299999999999997},{"interface":"front","average":{"1min":0.35199999999999998,"5min":0.32800000000000001,"15min":0.32400000000000001},"min":{"1min":0.24199999999999999,"5min":0.214,"15min":0.214},"max":{"1min":0.46400000000000002,"5min":0.46400000000000002,"15min":0.46400000000000002},"last":0.246}]},{"osd":2,"last update":"Sat Sep 7 08:16:43 2024","interfaces":[{"interface":"back","average":{"1min":0.51600000000000001,"5min":0.51600000000000001,"15min":0.51600000000000001},"min":{"1min":0.36799999999999999,"5min":0.36799999999999999,"15min":0.36799999999999999},"max":{"1min":0.71199999999999997,"5min":0.71199999999999997,"15min":0.71199999999999997},"last":0.47599999999999998},{"interface":"front","average":{"1min":0.52800000000000002,"5min":0.52800000000000002,"15min":0.52800000000000002},"min":{"1min":0.33200000000000002,"5min":0.33200000000000002,"15min":0.33200000000000002},"max":{"1min":0.745,"5min":0.745,"15min":0.745},"last":0.56699999999999995}]},{"osd":3,"last update":"Sat Sep 7 08:17:05 2024","interfaces":[{"interface":"back","average":{"1min":0.52800000000000002,"5min":0.52800000000000002,"15min":0.52800000000000002},"min":{"1min":0.33300000000000002,"5min":0.33300000000000002,"15min":0.33300000000000002},"max":{"1min":0.66400000000000003,"5min":0.66400000000000003,"15min":0.66400000000000003},"last":0.49299999999999999},{"interface":"front","average":{"1min":0.53500000000000003,"5min":0.53500000000000003,"15min":0.53500000000000003},"min":{"1min":0.34699999999999998,"5min":0.34699999999999998,"15min":0.34699999999999998},"max":{"1min":0.70699999999999996,"5min":0.70699999999999996,"15min":0.70699999999999996},"last":0.501}]},{"osd":4,"last update":"Sat Sep 7 08:17:25 2024","interfaces":[{"interface":"back","average":{"1min":0.54800000000000004,"5min":0.54800000000000004,"15min":0.54800000000000004},"min":{"1min":0.38,"5min":0.38,"15min":0.38},"max":{"1min":0.71899999999999997,"5min":0.71899999999999997,"15min":0.71899999999999997},"last":0.41099999999999998},{"interface":"front","average":{"1min":0.53300000000000003,"5min":0.53300000000000003,"15min":0.53300000000000003},"min":{"1min":0.39500000000000002,"5min":0.39500000000000002,"15min":0.39500000000000002},"max":{"1min":0.65100000000000002,"5min":0.65100000000000002,"15min":0.65100000000000002},"last":0.443}]},{"osd":5,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.42799999999999999}]}]}],"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":593920,"data_stored":590368,"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-07T08:17:32.282 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph pg dump --format=json 2024-09-07T08:17:32.477 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:17:32.810 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:32 smithi018 ceph-mon[30322]: pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:32.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:32 smithi191 ceph-mon[34025]: pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:32.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:32 smithi090 ceph-mon[33260]: pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:33.816 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:33 smithi018 ceph-mon[30322]: from='client.14466 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-07T08:17:33.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:33 smithi191 ceph-mon[34025]: from='client.14466 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-07T08:17:33.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:33 smithi090 ceph-mon[33260]: from='client.14466 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-07T08:17:34.187 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:17:34.188 INFO:teuthology.orchestra.run.smithi018.stderr:dumped all 2024-09-07T08:17:34.784 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:34 smithi018 ceph-mon[30322]: pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:34.785 INFO:teuthology.orchestra.run.smithi018.stdout:{"pg_ready":true,"pg_map":{"version":158,"stamp":"2024-09-07T08:17:33.422435+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":174484,"kb_used_data":4140,"kb_used_omap":9,"kb_used_meta":170230,"kb_avail":562296428,"statfs":{"total":575970213888,"available":575791542272,"internally_reserved":0,"allocated":4239360,"data_stored":2731764,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9562,"internal_metadata":174316198},"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.002334"},"pg_stats":[{"pgid":"1.0","version":"22'137","reported_seq":267,"reported_epoch":45,"state":"active+clean","last_fresh":"2024-09-07T08:16:51.793443+0000","last_change":"2024-09-07T08:16:51.793443+0000","last_active":"2024-09-07T08:16:51.793443+0000","last_peered":"2024-09-07T08:16:51.793443+0000","last_clean":"2024-09-07T08:16:51.793443+0000","last_became_active":"2024-09-07T08:16:51.793041+0000","last_became_peered":"2024-09-07T08:16:51.793041+0000","last_unstale":"2024-09-07T08:16:51.793443+0000","last_undegraded":"2024-09-07T08:16:51.793443+0000","last_fullsized":"2024-09-07T08:16:51.793443+0000","mapping_epoch":44,"log_start":"0'0","ondisk_log_start":"0'0","created":19,"last_epoch_clean":45,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-07T08:15:43.706963+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-07T08:15:43.706963+0000","last_clean_scrub_stamp":"2024-09-07T08:15:43.706963+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-08T19:17:50.643140+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":3563520,"data_stored":3542208,"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":41,"seq":176093659148,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28000,"kb_used_data":980,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717152,"statfs":{"total":95995035648,"available":95966363648,"internally_reserved":0,"allocated":1003520,"data_stored":750478,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"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":[],"network_ping_times":[{"osd":0,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.378}]},{"osd":1,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.36099999999999999}]},{"osd":2,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.40500000000000003}]},{"osd":3,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.433}]},{"osd":4,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.49399999999999999}]}]},{"osd":4,"up_from":33,"seq":141733920785,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27420,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717732,"statfs":{"total":95995035648,"available":95966957568,"internally_reserved":0,"allocated":409600,"data_stored":160110,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"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":[],"network_ping_times":[{"osd":0,"last update":"Sat Sep 7 08:17:26 2024","interfaces":[{"interface":"back","average":{"1min":0.47999999999999998,"5min":0.47999999999999998,"15min":0.47999999999999998},"min":{"1min":0.35399999999999998,"5min":0.35399999999999998,"15min":0.35399999999999998},"max":{"1min":0.63300000000000001,"5min":0.63300000000000001,"15min":0.63300000000000001},"last":0.56999999999999995},{"interface":"front","average":{"1min":0.46800000000000003,"5min":0.46800000000000003,"15min":0.46800000000000003},"min":{"1min":0.33800000000000002,"5min":0.33800000000000002,"15min":0.33800000000000002},"max":{"1min":0.67800000000000005,"5min":0.67800000000000005,"15min":0.67800000000000005},"last":0.53800000000000003}]},{"osd":1,"last update":"Sat Sep 7 08:17:26 2024","interfaces":[{"interface":"back","average":{"1min":0.441,"5min":0.441,"15min":0.441},"min":{"1min":0.31900000000000001,"5min":0.31900000000000001,"15min":0.31900000000000001},"max":{"1min":0.621,"5min":0.621,"15min":0.621},"last":0.51700000000000002},{"interface":"front","average":{"1min":0.48199999999999998,"5min":0.48199999999999998,"15min":0.48199999999999998},"min":{"1min":0.376,"5min":0.376,"15min":0.376},"max":{"1min":0.63400000000000001,"5min":0.63400000000000001,"15min":0.63400000000000001},"last":0.60799999999999998}]},{"osd":2,"last update":"Sat Sep 7 08:17:26 2024","interfaces":[{"interface":"back","average":{"1min":0.53500000000000003,"5min":0.53500000000000003,"15min":0.53500000000000003},"min":{"1min":0.36199999999999999,"5min":0.36199999999999999,"15min":0.36199999999999999},"max":{"1min":0.71199999999999997,"5min":0.71199999999999997,"15min":0.71199999999999997},"last":0.64000000000000001},{"interface":"front","average":{"1min":0.50700000000000001,"5min":0.50700000000000001,"15min":0.50700000000000001},"min":{"1min":0.38500000000000001,"5min":0.38500000000000001,"15min":0.38500000000000001},"max":{"1min":0.625,"5min":0.625,"15min":0.625},"last":0.55700000000000005}]},{"osd":3,"last update":"Sat Sep 7 08:17:26 2024","interfaces":[{"interface":"back","average":{"1min":0.51900000000000002,"5min":0.51900000000000002,"15min":0.51900000000000002},"min":{"1min":0.37,"5min":0.37,"15min":0.37},"max":{"1min":0.68899999999999995,"5min":0.68899999999999995,"15min":0.68899999999999995},"last":0.629},{"interface":"front","average":{"1min":0.504,"5min":0.504,"15min":0.504},"min":{"1min":0.34599999999999997,"5min":0.34599999999999997,"15min":0.34599999999999997},"max":{"1min":0.61499999999999999,"5min":0.61499999999999999,"15min":0.61499999999999999},"last":0.59099999999999997}]},{"osd":5,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.42399999999999999}]}]},{"osd":3,"up_from":25,"seq":107374182420,"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":980,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717144,"statfs":{"total":95995035648,"available":95966355456,"internally_reserved":0,"allocated":1003520,"data_stored":750478,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1592,"internal_metadata":27654600},"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":[],"network_ping_times":[{"osd":0,"last update":"Sat Sep 7 08:17:05 2024","interfaces":[{"interface":"back","average":{"1min":0.505,"5min":0.505,"15min":0.505},"min":{"1min":0.35499999999999998,"5min":0.35499999999999998,"15min":0.35499999999999998},"max":{"1min":0.73399999999999999,"5min":0.73399999999999999,"15min":0.73399999999999999},"last":0.45200000000000001},{"interface":"front","average":{"1min":0.496,"5min":0.496,"15min":0.496},"min":{"1min":0.36599999999999999,"5min":0.36599999999999999,"15min":0.36599999999999999},"max":{"1min":0.64200000000000002,"5min":0.64200000000000002,"15min":0.64200000000000002},"last":0.35199999999999998}]},{"osd":1,"last update":"Sat Sep 7 08:17:05 2024","interfaces":[{"interface":"back","average":{"1min":0.50900000000000001,"5min":0.50900000000000001,"15min":0.50900000000000001},"min":{"1min":0.376,"5min":0.376,"15min":0.376},"max":{"1min":0.71099999999999997,"5min":0.71099999999999997,"15min":0.71099999999999997},"last":0.47199999999999998},{"interface":"front","average":{"1min":0.48199999999999998,"5min":0.48199999999999998,"15min":0.48199999999999998},"min":{"1min":0.38300000000000001,"5min":0.38300000000000001,"15min":0.38300000000000001},"max":{"1min":0.64400000000000002,"5min":0.64400000000000002,"15min":0.64400000000000002},"last":0.39000000000000001}]},{"osd":2,"last update":"Sat Sep 7 08:17:05 2024","interfaces":[{"interface":"back","average":{"1min":0.35799999999999998,"5min":0.35799999999999998,"15min":0.35799999999999998},"min":{"1min":0.26400000000000001,"5min":0.26400000000000001,"15min":0.26400000000000001},"max":{"1min":0.56100000000000005,"5min":0.56100000000000005,"15min":0.56100000000000005},"last":0.41699999999999998},{"interface":"front","average":{"1min":0.36299999999999999,"5min":0.36299999999999999,"15min":0.36299999999999999},"min":{"1min":0.28000000000000003,"5min":0.28000000000000003,"15min":0.28000000000000003},"max":{"1min":0.55300000000000005,"5min":0.55300000000000005,"15min":0.55300000000000005},"last":0.432}]},{"osd":4,"last update":"Sat Sep 7 08:17:27 2024","interfaces":[{"interface":"back","average":{"1min":0.54100000000000004,"5min":0.54100000000000004,"15min":0.54100000000000004},"min":{"1min":0.33000000000000002,"5min":0.33000000000000002,"15min":0.33000000000000002},"max":{"1min":0.876,"5min":0.876,"15min":0.876},"last":0.51100000000000001},{"interface":"front","average":{"1min":0.54000000000000004,"5min":0.54000000000000004,"15min":0.54000000000000004},"min":{"1min":0.316,"5min":0.316,"15min":0.316},"max":{"1min":0.76800000000000002,"5min":0.76800000000000002,"15min":0.76800000000000002},"last":0.58899999999999997}]},{"osd":5,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.56499999999999995}]}]},{"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":980,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717144,"statfs":{"total":95995035648,"available":95966355456,"internally_reserved":0,"allocated":1003520,"data_stored":750478,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"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":[],"network_ping_times":[{"osd":0,"last update":"Sat Sep 7 08:16:43 2024","interfaces":[{"interface":"back","average":{"1min":0.47799999999999998,"5min":0.47799999999999998,"15min":0.47799999999999998},"min":{"1min":0.315,"5min":0.315,"15min":0.315},"max":{"1min":0.60099999999999998,"5min":0.60099999999999998,"15min":0.60099999999999998},"last":0.53700000000000003},{"interface":"front","average":{"1min":0.48199999999999998,"5min":0.48199999999999998,"15min":0.48199999999999998},"min":{"1min":0.34599999999999997,"5min":0.34599999999999997,"15min":0.34599999999999997},"max":{"1min":0.66400000000000003,"5min":0.66400000000000003,"15min":0.66400000000000003},"last":0.443}]},{"osd":1,"last update":"Sat Sep 7 08:16:43 2024","interfaces":[{"interface":"back","average":{"1min":0.48699999999999999,"5min":0.48699999999999999,"15min":0.48699999999999999},"min":{"1min":0.35199999999999998,"5min":0.35199999999999998,"15min":0.35199999999999998},"max":{"1min":0.59199999999999997,"5min":0.59199999999999997,"15min":0.59199999999999997},"last":0.52300000000000002},{"interface":"front","average":{"1min":0.45700000000000002,"5min":0.45700000000000002,"15min":0.45700000000000002},"min":{"1min":0.34300000000000003,"5min":0.34300000000000003,"15min":0.34300000000000003},"max":{"1min":0.57599999999999996,"5min":0.57599999999999996,"15min":0.57599999999999996},"last":0.46800000000000003}]},{"osd":3,"last update":"Sat Sep 7 08:17:07 2024","interfaces":[{"interface":"back","average":{"1min":0.34699999999999998,"5min":0.34699999999999998,"15min":0.34699999999999998},"min":{"1min":0.22800000000000001,"5min":0.22800000000000001,"15min":0.22800000000000001},"max":{"1min":0.51700000000000002,"5min":0.51700000000000002,"15min":0.51700000000000002},"last":0.33700000000000002},{"interface":"front","average":{"1min":0.40799999999999997,"5min":0.40799999999999997,"15min":0.40799999999999997},"min":{"1min":0.29999999999999999,"5min":0.29999999999999999,"15min":0.29999999999999999},"max":{"1min":0.52700000000000002,"5min":0.52700000000000002,"15min":0.52700000000000002},"last":0.36799999999999999}]},{"osd":4,"last update":"Sat Sep 7 08:17:26 2024","interfaces":[{"interface":"back","average":{"1min":0.52400000000000002,"5min":0.52400000000000002,"15min":0.52400000000000002},"min":{"1min":0.36299999999999999,"5min":0.36299999999999999,"15min":0.36299999999999999},"max":{"1min":0.65200000000000002,"5min":0.65200000000000002,"15min":0.65200000000000002},"last":0.55000000000000004},{"interface":"front","average":{"1min":0.51700000000000002,"5min":0.51700000000000002,"15min":0.51700000000000002},"min":{"1min":0.36599999999999999,"5min":0.36599999999999999,"15min":0.36599999999999999},"max":{"1min":0.755,"5min":0.755,"15min":0.755},"last":0.60699999999999998}]},{"osd":5,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.64600000000000002}]}]},{"osd":1,"up_from":13,"seq":55834574878,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31524,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":31102,"kb_avail":93713628,"statfs":{"total":95995035648,"available":95962755072,"internally_reserved":0,"allocated":409600,"data_stored":160110,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":31848902},"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":[],"network_ping_times":[{"osd":0,"last update":"Sat Sep 7 08:17:26 2024","interfaces":[{"interface":"back","average":{"1min":0.33300000000000002,"5min":0.318,"15min":0.316},"min":{"1min":0.251,"5min":0.248,"15min":0.248},"max":{"1min":0.498,"5min":0.498,"15min":0.498},"last":0.439},{"interface":"front","average":{"1min":0.35199999999999998,"5min":0.32800000000000001,"15min":0.32400000000000001},"min":{"1min":0.23899999999999999,"5min":0.22,"15min":0.22},"max":{"1min":0.55100000000000005,"5min":0.55100000000000005,"15min":0.55100000000000005},"last":0.48299999999999998}]},{"osd":2,"last update":"Sat Sep 7 08:16:46 2024","interfaces":[{"interface":"back","average":{"1min":0.51600000000000001,"5min":0.51600000000000001,"15min":0.51600000000000001},"min":{"1min":0.39600000000000002,"5min":0.39600000000000002,"15min":0.39600000000000002},"max":{"1min":0.67600000000000005,"5min":0.67600000000000005,"15min":0.67600000000000005},"last":0.624},{"interface":"front","average":{"1min":0.52900000000000003,"5min":0.52900000000000003,"15min":0.52900000000000003},"min":{"1min":0.36299999999999999,"5min":0.36299999999999999,"15min":0.36299999999999999},"max":{"1min":0.70899999999999996,"5min":0.70899999999999996,"15min":0.70899999999999996},"last":0.70099999999999996}]},{"osd":3,"last update":"Sat Sep 7 08:17:05 2024","interfaces":[{"interface":"back","average":{"1min":1.2230000000000001,"5min":1.2230000000000001,"15min":1.2230000000000001},"min":{"1min":0.38500000000000001,"5min":0.38500000000000001,"15min":0.38500000000000001},"max":{"1min":14.898,"5min":14.898,"15min":14.898},"last":0.67600000000000005},{"interface":"front","average":{"1min":0.58399999999999996,"5min":0.58399999999999996,"15min":0.58399999999999996},"min":{"1min":0.36899999999999999,"5min":0.36899999999999999,"15min":0.36899999999999999},"max":{"1min":0.74399999999999999,"5min":0.74399999999999999,"15min":0.74399999999999999},"last":0.66500000000000004}]},{"osd":4,"last update":"Sat Sep 7 08:17:26 2024","interfaces":[{"interface":"back","average":{"1min":0.50900000000000001,"5min":0.50900000000000001,"15min":0.50900000000000001},"min":{"1min":0.39700000000000002,"5min":0.39700000000000002,"15min":0.39700000000000002},"max":{"1min":0.76200000000000001,"5min":0.76200000000000001,"15min":0.76200000000000001},"last":0.59499999999999997},{"interface":"front","average":{"1min":0.78300000000000003,"5min":0.78300000000000003,"15min":0.78300000000000003},"min":{"1min":0.36399999999999999,"5min":0.36399999999999999,"15min":0.36399999999999999},"max":{"1min":6.835,"5min":6.835,"15min":6.835},"last":0.55000000000000004}]},{"osd":5,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.57199999999999995}]}]},{"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":31524,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":31102,"kb_avail":93713628,"statfs":{"total":95995035648,"available":95962755072,"internally_reserved":0,"allocated":409600,"data_stored":160110,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":31848902},"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":[],"network_ping_times":[{"osd":1,"last update":"Sat Sep 7 08:17:25 2024","interfaces":[{"interface":"back","average":{"1min":0.33700000000000002,"5min":0.318,"15min":0.315},"min":{"1min":0.22700000000000001,"5min":0.191,"15min":0.191},"max":{"1min":0.45900000000000002,"5min":0.45900000000000002,"15min":0.45900000000000002},"last":0.28299999999999997},{"interface":"front","average":{"1min":0.35199999999999998,"5min":0.32800000000000001,"15min":0.32400000000000001},"min":{"1min":0.24199999999999999,"5min":0.214,"15min":0.214},"max":{"1min":0.46400000000000002,"5min":0.46400000000000002,"15min":0.46400000000000002},"last":0.246}]},{"osd":2,"last update":"Sat Sep 7 08:16:43 2024","interfaces":[{"interface":"back","average":{"1min":0.51600000000000001,"5min":0.51600000000000001,"15min":0.51600000000000001},"min":{"1min":0.36799999999999999,"5min":0.36799999999999999,"15min":0.36799999999999999},"max":{"1min":0.71199999999999997,"5min":0.71199999999999997,"15min":0.71199999999999997},"last":0.47599999999999998},{"interface":"front","average":{"1min":0.52800000000000002,"5min":0.52800000000000002,"15min":0.52800000000000002},"min":{"1min":0.33200000000000002,"5min":0.33200000000000002,"15min":0.33200000000000002},"max":{"1min":0.745,"5min":0.745,"15min":0.745},"last":0.56699999999999995}]},{"osd":3,"last update":"Sat Sep 7 08:17:05 2024","interfaces":[{"interface":"back","average":{"1min":0.52800000000000002,"5min":0.52800000000000002,"15min":0.52800000000000002},"min":{"1min":0.33300000000000002,"5min":0.33300000000000002,"15min":0.33300000000000002},"max":{"1min":0.66400000000000003,"5min":0.66400000000000003,"15min":0.66400000000000003},"last":0.49299999999999999},{"interface":"front","average":{"1min":0.53500000000000003,"5min":0.53500000000000003,"15min":0.53500000000000003},"min":{"1min":0.34699999999999998,"5min":0.34699999999999998,"15min":0.34699999999999998},"max":{"1min":0.70699999999999996,"5min":0.70699999999999996,"15min":0.70699999999999996},"last":0.501}]},{"osd":4,"last update":"Sat Sep 7 08:17:25 2024","interfaces":[{"interface":"back","average":{"1min":0.54800000000000004,"5min":0.54800000000000004,"15min":0.54800000000000004},"min":{"1min":0.38,"5min":0.38,"15min":0.38},"max":{"1min":0.71899999999999997,"5min":0.71899999999999997,"15min":0.71899999999999997},"last":0.41099999999999998},{"interface":"front","average":{"1min":0.53300000000000003,"5min":0.53300000000000003,"15min":0.53300000000000003},"min":{"1min":0.39500000000000002,"5min":0.39500000000000002,"15min":0.39500000000000002},"max":{"1min":0.65100000000000002,"5min":0.65100000000000002,"15min":0.65100000000000002},"last":0.443}]},{"osd":5,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.42799999999999999}]}]}],"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":593920,"data_stored":590368,"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-07T08:17:34.786 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-09-07T08:17:34.786 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-09-07T08:17:34.786 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-09-07T08:17:34.786 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- ceph health --format=json 2024-09-07T08:17:34.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:34 smithi191 ceph-mon[34025]: pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:34.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:34 smithi090 ceph-mon[33260]: pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:34.981 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:17:35.705 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:35 smithi018 ceph-mon[30322]: from='client.14472 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-07T08:17:35.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:35 smithi191 ceph-mon[34025]: from='client.14472 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-07T08:17:35.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:35 smithi090 ceph-mon[33260]: from='client.14472 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-07T08:17:36.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:36 smithi018 ceph-mon[30322]: pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:36.793 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-07T08:17:36.793 INFO:teuthology.orchestra.run.smithi018.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-09-07T08:17:36.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:36 smithi191 ceph-mon[34025]: pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:36.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:36 smithi090 ceph-mon[33260]: pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:37.498 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-09-07T08:17:37.498 INFO:tasks.cephadm:Setup complete, yielding 2024-09-07T08:17:37.499 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-07T08:17:37.508 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi018.front.sepia.ceph.com 2024-09-07T08:17:37.509 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 -- bash -c 'set -ex 2024-09-07T08:17:37.509 DEBUG:teuthology.orchestra.run.smithi018:> HOSTNAMES=$(ceph orch host ls --format json | jq -r '"'"'.[] | .hostname'"'"') 2024-09-07T08:17:37.509 DEBUG:teuthology.orchestra.run.smithi018:> for host in $HOSTNAMES; do 2024-09-07T08:17:37.509 DEBUG:teuthology.orchestra.run.smithi018:> # find the hostname for "host.c" which will have no mgr 2024-09-07T08:17:37.509 DEBUG:teuthology.orchestra.run.smithi018:> HAS_MGRS=$(ceph orch ps --hostname ${host} --format json | jq '"'"'any(.daemon_type == "mgr")'"'"') 2024-09-07T08:17:37.509 DEBUG:teuthology.orchestra.run.smithi018:> if [ "$HAS_MGRS" == "false" ]; then 2024-09-07T08:17:37.509 DEBUG:teuthology.orchestra.run.smithi018:> HOST_C="${host}" 2024-09-07T08:17:37.509 DEBUG:teuthology.orchestra.run.smithi018:> fi 2024-09-07T08:17:37.510 DEBUG:teuthology.orchestra.run.smithi018:> done 2024-09-07T08:17:37.510 DEBUG:teuthology.orchestra.run.smithi018:> # One last thing to worry about before draining the host 2024-09-07T08:17:37.510 DEBUG:teuthology.orchestra.run.smithi018:> # is that the teuthology test tends to put the explicit 2024-09-07T08:17:37.510 DEBUG:teuthology.orchestra.run.smithi018:> # hostnames in the placement for the mon service. 2024-09-07T08:17:37.510 DEBUG:teuthology.orchestra.run.smithi018:> # We want to make sure we can drain without providing 2024-09-07T08:17:37.510 DEBUG:teuthology.orchestra.run.smithi018:> # --force and there is a check for the host being removed 2024-09-07T08:17:37.510 DEBUG:teuthology.orchestra.run.smithi018:> # being listed explicitly in the placements. Therefore, 2024-09-07T08:17:37.510 DEBUG:teuthology.orchestra.run.smithi018:> # we should remove it from the mon placement. 2024-09-07T08:17:37.510 DEBUG:teuthology.orchestra.run.smithi018:> ceph orch ls mon --export > mon.yaml 2024-09-07T08:17:37.510 DEBUG:teuthology.orchestra.run.smithi018:> sed /"$HOST_C"/d mon.yaml > mon_adjusted.yaml 2024-09-07T08:17:37.510 DEBUG:teuthology.orchestra.run.smithi018:> ceph orch apply -i mon_adjusted.yaml 2024-09-07T08:17:37.510 DEBUG:teuthology.orchestra.run.smithi018:> # now drain that host 2024-09-07T08:17:37.510 DEBUG:teuthology.orchestra.run.smithi018:> ceph orch host drain $HOST_C --zap-osd-devices 2024-09-07T08:17:37.510 DEBUG:teuthology.orchestra.run.smithi018:> # wait for drain to complete 2024-09-07T08:17:37.510 DEBUG:teuthology.orchestra.run.smithi018:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-09-07T08:17:37.511 DEBUG:teuthology.orchestra.run.smithi018:> while [ "$HOST_C_DAEMONS" != "No daemons reported" ]; do 2024-09-07T08:17:37.511 DEBUG:teuthology.orchestra.run.smithi018:> sleep 15 2024-09-07T08:17:37.511 DEBUG:teuthology.orchestra.run.smithi018:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-09-07T08:17:37.511 DEBUG:teuthology.orchestra.run.smithi018:> done 2024-09-07T08:17:37.511 DEBUG:teuthology.orchestra.run.smithi018:> # we want to check the ability to remove the host from 2024-09-07T08:17:37.511 DEBUG:teuthology.orchestra.run.smithi018:> # the CRUSH map, so we should first verify the host is in 2024-09-07T08:17:37.511 DEBUG:teuthology.orchestra.run.smithi018:> # the CRUSH map. 2024-09-07T08:17:37.511 DEBUG:teuthology.orchestra.run.smithi018:> ceph osd getcrushmap -o compiled-crushmap 2024-09-07T08:17:37.511 DEBUG:teuthology.orchestra.run.smithi018:> crushtool -d compiled-crushmap -o crushmap.txt 2024-09-07T08:17:37.511 DEBUG:teuthology.orchestra.run.smithi018:> CRUSH_MAP=$(cat crushmap.txt) 2024-09-07T08:17:37.511 DEBUG:teuthology.orchestra.run.smithi018:> if ! grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-09-07T08:17:37.511 DEBUG:teuthology.orchestra.run.smithi018:> printf "Expected to see $HOST_C in CRUSH map. Saw:\n\n$CRUSH_MAP" 2024-09-07T08:17:37.511 DEBUG:teuthology.orchestra.run.smithi018:> exit 1 2024-09-07T08:17:37.511 DEBUG:teuthology.orchestra.run.smithi018:> fi 2024-09-07T08:17:37.512 DEBUG:teuthology.orchestra.run.smithi018:> # If the drain was successful, we should be able to remove the 2024-09-07T08:17:37.512 DEBUG:teuthology.orchestra.run.smithi018:> # host without force with no issues. If there are still daemons 2024-09-07T08:17:37.512 DEBUG:teuthology.orchestra.run.smithi018:> # we will get a response telling us to drain the host and a 2024-09-07T08:17:37.512 DEBUG:teuthology.orchestra.run.smithi018:> # non-zero return code 2024-09-07T08:17:37.512 DEBUG:teuthology.orchestra.run.smithi018:> ceph orch host rm $HOST_C --rm-crush-entry 2024-09-07T08:17:37.512 DEBUG:teuthology.orchestra.run.smithi018:> # verify we'"'"'ve successfully removed the host from the CRUSH map 2024-09-07T08:17:37.512 DEBUG:teuthology.orchestra.run.smithi018:> sleep 30 2024-09-07T08:17:37.512 DEBUG:teuthology.orchestra.run.smithi018:> ceph osd getcrushmap -o compiled-crushmap 2024-09-07T08:17:37.512 DEBUG:teuthology.orchestra.run.smithi018:> crushtool -d compiled-crushmap -o crushmap.txt 2024-09-07T08:17:37.512 DEBUG:teuthology.orchestra.run.smithi018:> CRUSH_MAP=$(cat crushmap.txt) 2024-09-07T08:17:37.512 DEBUG:teuthology.orchestra.run.smithi018:> if grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-09-07T08:17:37.512 DEBUG:teuthology.orchestra.run.smithi018:> printf "Saw $HOST_C in CRUSH map after it should have been removed.\n\n$CRUSH_MAP" 2024-09-07T08:17:37.512 DEBUG:teuthology.orchestra.run.smithi018:> exit 1 2024-09-07T08:17:37.512 DEBUG:teuthology.orchestra.run.smithi018:> fi 2024-09-07T08:17:37.512 DEBUG:teuthology.orchestra.run.smithi018:> ' 2024-09-07T08:17:37.710 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/mon.a/config 2024-09-07T08:17:37.830 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:37 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/2229932253' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-07T08:17:37.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:37 smithi191 ceph-mon[34025]: from='client.? 172.21.15.18:0/2229932253' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-07T08:17:37.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:37 smithi090 ceph-mon[33260]: from='client.? 172.21.15.18:0/2229932253' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-07T08:17:38.848 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:38 smithi018 ceph-mon[30322]: pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:38.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:38 smithi191 ceph-mon[34025]: pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:38.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:38 smithi090 ceph-mon[33260]: pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:39.228 INFO:teuthology.orchestra.run.smithi018.stderr:++ ceph orch host ls --format json 2024-09-07T08:17:39.228 INFO:teuthology.orchestra.run.smithi018.stderr:++ jq -r '.[] | .hostname' 2024-09-07T08:17:39.434 INFO:teuthology.orchestra.run.smithi018.stderr:+ HOSTNAMES='smithi018 2024-09-07T08:17:39.435 INFO:teuthology.orchestra.run.smithi018.stderr:smithi090 2024-09-07T08:17:39.435 INFO:teuthology.orchestra.run.smithi018.stderr:smithi191' 2024-09-07T08:17:39.435 INFO:teuthology.orchestra.run.smithi018.stderr:+ for host in $HOSTNAMES 2024-09-07T08:17:39.435 INFO:teuthology.orchestra.run.smithi018.stderr:++ ceph orch ps --hostname smithi018 --format json 2024-09-07T08:17:39.435 INFO:teuthology.orchestra.run.smithi018.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-07T08:17:39.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:39 smithi018 ceph-mon[30322]: from='client.14484 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-07T08:17:39.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:39 smithi018 ceph-mon[30322]: pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:39.711 INFO:teuthology.orchestra.run.smithi018.stderr:+ HAS_MGRS=true 2024-09-07T08:17:39.711 INFO:teuthology.orchestra.run.smithi018.stderr:+ '[' true == false ']' 2024-09-07T08:17:39.711 INFO:teuthology.orchestra.run.smithi018.stderr:+ for host in $HOSTNAMES 2024-09-07T08:17:39.711 INFO:teuthology.orchestra.run.smithi018.stderr:++ ceph orch ps --hostname smithi090 --format json 2024-09-07T08:17:39.711 INFO:teuthology.orchestra.run.smithi018.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-07T08:17:39.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:39 smithi191 ceph-mon[34025]: from='client.14484 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-07T08:17:39.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:39 smithi191 ceph-mon[34025]: pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:39.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:39 smithi090 ceph-mon[33260]: from='client.14484 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-07T08:17:39.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:39 smithi090 ceph-mon[33260]: pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:39.985 INFO:teuthology.orchestra.run.smithi018.stderr:+ HAS_MGRS=true 2024-09-07T08:17:39.985 INFO:teuthology.orchestra.run.smithi018.stderr:+ '[' true == false ']' 2024-09-07T08:17:39.985 INFO:teuthology.orchestra.run.smithi018.stderr:+ for host in $HOSTNAMES 2024-09-07T08:17:39.986 INFO:teuthology.orchestra.run.smithi018.stderr:++ ceph orch ps --hostname smithi191 --format json 2024-09-07T08:17:39.986 INFO:teuthology.orchestra.run.smithi018.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-07T08:17:40.259 INFO:teuthology.orchestra.run.smithi018.stderr:+ HAS_MGRS=false 2024-09-07T08:17:40.259 INFO:teuthology.orchestra.run.smithi018.stderr:+ '[' false == false ']' 2024-09-07T08:17:40.259 INFO:teuthology.orchestra.run.smithi018.stderr:+ HOST_C=smithi191 2024-09-07T08:17:40.260 INFO:teuthology.orchestra.run.smithi018.stderr:+ ceph orch ls mon --export 2024-09-07T08:17:40.536 INFO:teuthology.orchestra.run.smithi018.stderr:+ sed /smithi191/d mon.yaml 2024-09-07T08:17:40.536 INFO:teuthology.orchestra.run.smithi018.stderr:+ ceph orch apply -i mon_adjusted.yaml 2024-09-07T08:17:40.807 INFO:teuthology.orchestra.run.smithi018.stdout:Scheduled mon update... 2024-09-07T08:17:40.808 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:40 smithi018 ceph-mon[30322]: from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi018", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-07T08:17:40.808 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:40 smithi018 ceph-mon[30322]: from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi090", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-07T08:17:40.808 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:40 smithi018 ceph-mon[30322]: from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi191", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-07T08:17:40.808 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:40 smithi018 ceph-mon[30322]: from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:17:40.818 INFO:teuthology.orchestra.run.smithi018.stderr:+ ceph orch host drain smithi191 --zap-osd-devices 2024-09-07T08:17:40.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:40 smithi191 ceph-mon[34025]: from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi018", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-07T08:17:40.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:40 smithi191 ceph-mon[34025]: from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi090", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-07T08:17:40.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:40 smithi191 ceph-mon[34025]: from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi191", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-07T08:17:40.891 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:40 smithi191 ceph-mon[34025]: from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:17:40.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:40 smithi090 ceph-mon[33260]: from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi018", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-07T08:17:40.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:40 smithi090 ceph-mon[33260]: from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi090", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-07T08:17:40.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:40 smithi090 ceph-mon[33260]: from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi191", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-07T08:17:40.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:40 smithi090 ceph-mon[33260]: from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:17:41.118 INFO:teuthology.orchestra.run.smithi018.stdout:Scheduled to remove the following daemons from host 'smithi191' 2024-09-07T08:17:41.119 INFO:teuthology.orchestra.run.smithi018.stdout:type id 2024-09-07T08:17:41.119 INFO:teuthology.orchestra.run.smithi018.stdout:-------------------- --------------- 2024-09-07T08:17:41.119 INFO:teuthology.orchestra.run.smithi018.stdout:mon c 2024-09-07T08:17:41.119 INFO:teuthology.orchestra.run.smithi018.stdout:osd 4 2024-09-07T08:17:41.119 INFO:teuthology.orchestra.run.smithi018.stdout:osd 5 2024-09-07T08:17:41.130 INFO:teuthology.orchestra.run.smithi018.stderr:++ ceph orch ps --hostname smithi191 2024-09-07T08:17:41.407 INFO:teuthology.orchestra.run.smithi018.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-07T08:17:41.407 INFO:teuthology.orchestra.run.smithi018.stderr:mon.c smithi191 running (3m) 55s ago 3m 37.8M 2048M 18.2.4-812-g03cef208 6d221832e105 a533fd0d316a 2024-09-07T08:17:41.407 INFO:teuthology.orchestra.run.smithi018.stderr:osd.4 smithi191 running (82s) 55s ago 81s 41.2M 10.3G 18.2.4-812-g03cef208 6d221832e105 5dc5156773ce 2024-09-07T08:17:41.407 INFO:teuthology.orchestra.run.smithi018.stderr:osd.5 smithi191 running (59s) 55s ago 59s 11.9M 10.3G 18.2.4-812-g03cef208 6d221832e105 e14f2341740f ' 2024-09-07T08:17:41.407 INFO:teuthology.orchestra.run.smithi018.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-07T08:17:41.407 INFO:teuthology.orchestra.run.smithi018.stderr:mon.c smithi191 running (3m) 55s ago 3m 37.8M 2048M 18.2.4-812-g03cef208 6d221832e105 a533fd0d316a 2024-09-07T08:17:41.407 INFO:teuthology.orchestra.run.smithi018.stderr:osd.4 smithi191 running (82s) 55s ago 81s 41.2M 10.3G 18.2.4-812-g03cef208 6d221832e105 5dc5156773ce 2024-09-07T08:17:41.408 INFO:teuthology.orchestra.run.smithi018.stderr:osd.5 smithi191 running (59s) 55s ago 59s 11.9M 10.3G 18.2.4-812-g03cef208 6d221832e105 e14f2341740f ' '!=' 'No daemons reported' ']' 2024-09-07T08:17:41.408 INFO:teuthology.orchestra.run.smithi018.stderr:+ sleep 15 2024-09-07T08:17:42.141 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:41 smithi191 ceph-mon[34025]: from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:17:42.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:41 smithi191 ceph-mon[34025]: Saving service mon spec with placement smithi018:172.21.15.18=a;smithi090:172.21.15.90=b;count:3 2024-09-07T08:17:42.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:41 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:42.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:41 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:17:42.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:41 smithi191 ceph-mon[34025]: from='client.14520 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi191", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:17:42.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:41 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:42.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:41 smithi191 ceph-mon[34025]: Added label _no_schedule to host smithi191 2024-09-07T08:17:42.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:41 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:42.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:41 smithi191 ceph-mon[34025]: Added label SpecialHostLabels.DRAIN_CONF_KEYRING to host smithi191 2024-09-07T08:17:42.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:41 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-07T08:17:42.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:41 smithi191 ceph-mon[34025]: osd.4 crush weight is 0.0872955322265625 2024-09-07T08:17:42.142 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:41 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-07T08:17:42.143 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:41 smithi191 ceph-mon[34025]: osd.5 crush weight is 0.0872955322265625 2024-09-07T08:17:42.143 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:41 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:17:42.143 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:41 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:17:42.143 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:41 smithi191 ceph-mon[34025]: Removing smithi191:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-07T08:17:42.143 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:41 smithi191 ceph-mon[34025]: Removing smithi191:/etc/ceph/ceph.client.admin.keyring 2024-09-07T08:17:42.143 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:41 smithi191 ceph-mon[34025]: Removing smithi191:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-07T08:17:42.143 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:41 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:42.143 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:41 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:42.143 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:41 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-07T08:17:42.143 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:41 smithi191 ceph-mon[34025]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-07T08:17:42.143 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:41 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-07T08:17:42.143 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:41 smithi191 ceph-mon[34025]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-07T08:17:42.144 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:41 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-07T08:17:42.144 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:41 smithi191 ceph-mon[34025]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-07T08:17:42.144 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:41 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-09-07T08:17:42.144 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:41 smithi191 ceph-mon[34025]: from='client.14526 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi191", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:17:42.144 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:41 smithi191 ceph-mon[34025]: pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:42.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:41 smithi018 ceph-mon[30322]: from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:17:42.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:41 smithi018 ceph-mon[30322]: Saving service mon spec with placement smithi018:172.21.15.18=a;smithi090:172.21.15.90=b;count:3 2024-09-07T08:17:42.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:41 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:42.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:41 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:17:42.206 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:41 smithi018 ceph-mon[30322]: from='client.14520 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi191", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:17:42.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:41 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:42.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:41 smithi018 ceph-mon[30322]: Added label _no_schedule to host smithi191 2024-09-07T08:17:42.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:41 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:42.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:41 smithi018 ceph-mon[30322]: Added label SpecialHostLabels.DRAIN_CONF_KEYRING to host smithi191 2024-09-07T08:17:42.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:41 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-07T08:17:42.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:41 smithi018 ceph-mon[30322]: osd.4 crush weight is 0.0872955322265625 2024-09-07T08:17:42.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:41 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-07T08:17:42.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:41 smithi018 ceph-mon[30322]: osd.5 crush weight is 0.0872955322265625 2024-09-07T08:17:42.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:41 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:17:42.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:41 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:17:42.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:41 smithi018 ceph-mon[30322]: Removing smithi191:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-07T08:17:42.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:41 smithi018 ceph-mon[30322]: Removing smithi191:/etc/ceph/ceph.client.admin.keyring 2024-09-07T08:17:42.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:41 smithi018 ceph-mon[30322]: Removing smithi191:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-07T08:17:42.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:41 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:42.207 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:41 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:42.208 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:41 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-07T08:17:42.208 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:41 smithi018 ceph-mon[30322]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-07T08:17:42.208 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:41 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-07T08:17:42.208 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:41 smithi018 ceph-mon[30322]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-07T08:17:42.208 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:41 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-07T08:17:42.208 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:41 smithi018 ceph-mon[30322]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-07T08:17:42.208 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:41 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-09-07T08:17:42.208 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:41 smithi018 ceph-mon[30322]: from='client.14526 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi191", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:17:42.208 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:41 smithi018 ceph-mon[30322]: pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:42.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:41 smithi090 ceph-mon[33260]: from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:17:42.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:41 smithi090 ceph-mon[33260]: Saving service mon spec with placement smithi018:172.21.15.18=a;smithi090:172.21.15.90=b;count:3 2024-09-07T08:17:42.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:41 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:42.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:41 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:17:42.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:41 smithi090 ceph-mon[33260]: from='client.14520 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi191", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:17:42.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:41 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:42.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:41 smithi090 ceph-mon[33260]: Added label _no_schedule to host smithi191 2024-09-07T08:17:42.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:41 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:42.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:41 smithi090 ceph-mon[33260]: Added label SpecialHostLabels.DRAIN_CONF_KEYRING to host smithi191 2024-09-07T08:17:42.230 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:41 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-07T08:17:42.230 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:41 smithi090 ceph-mon[33260]: osd.4 crush weight is 0.0872955322265625 2024-09-07T08:17:42.230 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:41 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-07T08:17:42.230 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:41 smithi090 ceph-mon[33260]: osd.5 crush weight is 0.0872955322265625 2024-09-07T08:17:42.230 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:41 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:17:42.230 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:41 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:17:42.230 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:41 smithi090 ceph-mon[33260]: Removing smithi191:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-07T08:17:42.230 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:41 smithi090 ceph-mon[33260]: Removing smithi191:/etc/ceph/ceph.client.admin.keyring 2024-09-07T08:17:42.230 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:41 smithi090 ceph-mon[33260]: Removing smithi191:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-07T08:17:42.230 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:41 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:42.230 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:41 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:42.230 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:41 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-07T08:17:42.230 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:41 smithi090 ceph-mon[33260]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-07T08:17:42.231 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:41 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-07T08:17:42.231 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:41 smithi090 ceph-mon[33260]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-07T08:17:42.231 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:41 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-07T08:17:42.231 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:41 smithi090 ceph-mon[33260]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-07T08:17:42.231 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:41 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-09-07T08:17:42.231 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:41 smithi090 ceph-mon[33260]: from='client.14526 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi191", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:17:42.231 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:41 smithi090 ceph-mon[33260]: pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:42.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:42 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mon-a[30318]: 2024-09-07T08:17:42.276+0000 7f21f2a58640 -1 mon.a@0(leader).osd e46 definitely_dead 0 2024-09-07T08:17:43.549 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:43 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-07T08:17:43.549 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:43 smithi191 ceph-mon[34025]: osdmap e46: 6 total, 6 up, 6 in 2024-09-07T08:17:43.549 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:43 smithi191 ceph-mon[34025]: osd.5 weight is now 0.0 2024-09-07T08:17:43.549 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:43 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-07T08:17:43.549 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:43 smithi191 ceph-mon[34025]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-07T08:17:43.549 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:43 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-07T08:17:43.550 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:43 smithi191 ceph-mon[34025]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-07T08:17:43.550 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:43 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-09-07T08:17:43.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:43 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-07T08:17:43.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:43 smithi018 ceph-mon[30322]: osdmap e46: 6 total, 6 up, 6 in 2024-09-07T08:17:43.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:43 smithi018 ceph-mon[30322]: osd.5 weight is now 0.0 2024-09-07T08:17:43.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:43 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-07T08:17:43.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:43 smithi018 ceph-mon[30322]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-07T08:17:43.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:43 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-07T08:17:43.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:43 smithi018 ceph-mon[30322]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-07T08:17:43.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:43 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-09-07T08:17:43.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:43 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-07T08:17:43.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:43 smithi090 ceph-mon[33260]: osdmap e46: 6 total, 6 up, 6 in 2024-09-07T08:17:43.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:43 smithi090 ceph-mon[33260]: osd.5 weight is now 0.0 2024-09-07T08:17:43.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:43 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-07T08:17:43.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:43 smithi090 ceph-mon[33260]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-07T08:17:43.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:43 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-07T08:17:43.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:43 smithi090 ceph-mon[33260]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-07T08:17:43.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:43 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-09-07T08:17:43.817 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 07 08:17:43 smithi191 systemd[1]: Stopping Ceph osd.4 for d3fad026-6cf0-11ef-bcea-c7b262605968... 2024-09-07T08:17:44.141 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 07 08:17:43 smithi191 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-4[38362]: 2024-09-07T08:17:43.815+0000 7f7f8eebd640 -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-07T08:17:44.141 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 07 08:17:43 smithi191 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-4[38362]: 2024-09-07T08:17:43.815+0000 7f7f8eebd640 -1 osd.4 46 *** Got signal Terminated *** 2024-09-07T08:17:44.141 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 07 08:17:43 smithi191 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-4[38362]: 2024-09-07T08:17:43.815+0000 7f7f8eebd640 -1 osd.4 46 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-07T08:17:44.600 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 07 08:17:44 smithi191 podman[47950]: 2024-09-07 08:17:44.347334173 +0000 UTC m=+0.655784355 container died 5dc5156773ce647ae1d64531de69c84340be0753087ef67acc537be2bf6ab7a3 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-4, ceph=True, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, GIT_CLEAN=True, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240731) 2024-09-07T08:17:44.600 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:44 smithi191 ceph-mon[34025]: Health check failed: 1 osds down (OSD_DOWN) 2024-09-07T08:17:44.600 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:44 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-07T08:17:44.601 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:44 smithi191 ceph-mon[34025]: osdmap e47: 6 total, 5 up, 6 in 2024-09-07T08:17:44.601 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:44 smithi191 ceph-mon[34025]: osd.4 now down 2024-09-07T08:17:44.601 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:44 smithi191 ceph-mon[34025]: Removing daemon osd.4 from smithi191 -- ports [] 2024-09-07T08:17:44.601 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:44 smithi191 ceph-mon[34025]: pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:44.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:44 smithi018 ceph-mon[30322]: Health check failed: 1 osds down (OSD_DOWN) 2024-09-07T08:17:44.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:44 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-07T08:17:44.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:44 smithi018 ceph-mon[30322]: osdmap e47: 6 total, 5 up, 6 in 2024-09-07T08:17:44.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:44 smithi018 ceph-mon[30322]: osd.4 now down 2024-09-07T08:17:44.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:44 smithi018 ceph-mon[30322]: Removing daemon osd.4 from smithi191 -- ports [] 2024-09-07T08:17:44.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:44 smithi018 ceph-mon[30322]: pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:44.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:44 smithi090 ceph-mon[33260]: Health check failed: 1 osds down (OSD_DOWN) 2024-09-07T08:17:44.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:44 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-07T08:17:44.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:44 smithi090 ceph-mon[33260]: osdmap e47: 6 total, 5 up, 6 in 2024-09-07T08:17:44.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:44 smithi090 ceph-mon[33260]: osd.4 now down 2024-09-07T08:17:44.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:44 smithi090 ceph-mon[33260]: Removing daemon osd.4 from smithi191 -- ports [] 2024-09-07T08:17:44.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:44 smithi090 ceph-mon[33260]: pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:44.891 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 07 08:17:44 smithi191 podman[47950]: 2024-09-07 08:17:44.740687174 +0000 UTC m=+1.049137398 container cleanup 5dc5156773ce647ae1d64531de69c84340be0753087ef67acc537be2bf6ab7a3 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-4, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, org.label-schema.license=GPLv2, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , ceph=True, org.label-schema.build-date=20240731) 2024-09-07T08:17:44.891 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 07 08:17:44 smithi191 bash[47950]: ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-4 2024-09-07T08:17:45.286 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 07 08:17:45 smithi191 podman[47965]: 2024-09-07 08:17:45.008634525 +0000 UTC m=+0.660259919 container remove 5dc5156773ce647ae1d64531de69c84340be0753087ef67acc537be2bf6ab7a3 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-4, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, ceph=True, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , GIT_CLEAN=True, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2) 2024-09-07T08:17:45.596 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:45 smithi191 ceph-mon[34025]: osdmap e48: 6 total, 5 up, 6 in 2024-09-07T08:17:45.596 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 07 08:17:45 smithi191 podman[48054]: 2024-09-07 08:17:45.263111681 +0000 UTC m=+0.016014511 image pull 6d221832e1054b498e2b9f082020222573577791586fe066468034523d6f813b quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055 2024-09-07T08:17:45.596 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 07 08:17:45 smithi191 podman[48054]: 2024-09-07 08:17:45.384582248 +0000 UTC m=+0.137485110 container create 4a0a5c69d59e5aa988f41b054a00cbdaac12ee13d109314d4753d68fc6f0625e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-4-deactivate, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, org.label-schema.build-date=20240731, GIT_CLEAN=True, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux ) 2024-09-07T08:17:45.597 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 07 08:17:45 smithi191 podman[48054]: 2024-09-07 08:17:45.595323023 +0000 UTC m=+0.348225843 container init 4a0a5c69d59e5aa988f41b054a00cbdaac12ee13d109314d4753d68fc6f0625e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-4-deactivate, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, GIT_CLEAN=True, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, org.label-schema.license=GPLv2, ceph=True, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux ) 2024-09-07T08:17:45.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:45 smithi018 ceph-mon[30322]: osdmap e48: 6 total, 5 up, 6 in 2024-09-07T08:17:45.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:45 smithi090 ceph-mon[33260]: osdmap e48: 6 total, 5 up, 6 in 2024-09-07T08:17:45.891 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 07 08:17:45 smithi191 podman[48054]: 2024-09-07 08:17:45.598872436 +0000 UTC m=+0.351775262 container start 4a0a5c69d59e5aa988f41b054a00cbdaac12ee13d109314d4753d68fc6f0625e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-4-deactivate, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, GIT_CLEAN=True, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=) 2024-09-07T08:17:45.891 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 07 08:17:45 smithi191 podman[48054]: 2024-09-07 08:17:45.678899337 +0000 UTC m=+0.431802171 container attach 4a0a5c69d59e5aa988f41b054a00cbdaac12ee13d109314d4753d68fc6f0625e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-4-deactivate, org.label-schema.build-date=20240731, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , ceph=True, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.vendor=CentOS) 2024-09-07T08:17:45.892 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 07 08:17:45 smithi191 podman[48054]: 2024-09-07 08:17:45.787976193 +0000 UTC m=+0.540879013 container died 4a0a5c69d59e5aa988f41b054a00cbdaac12ee13d109314d4753d68fc6f0625e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-4-deactivate, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, ceph=True, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, GIT_CLEAN=True, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2) 2024-09-07T08:17:46.317 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:46 smithi191 ceph-mon[34025]: osdmap e49: 6 total, 5 up, 6 in 2024-09-07T08:17:46.318 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:46 smithi191 ceph-mon[34025]: pgmap v168: 1 pgs: 1 remapped+peering; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:46.318 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 07 08:17:46 smithi191 podman[48078]: 2024-09-07 08:17:46.299099876 +0000 UTC m=+0.501458472 container remove 4a0a5c69d59e5aa988f41b054a00cbdaac12ee13d109314d4753d68fc6f0625e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-4-deactivate, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, GIT_CLEAN=True, org.label-schema.license=GPLv2, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.vendor=CentOS, ceph=True, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.37.2, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, org.label-schema.schema-version=1.0) 2024-09-07T08:17:46.318 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 07 08:17:46 smithi191 systemd[1]: ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@osd.4.service: Deactivated successfully. 2024-09-07T08:17:46.318 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 07 08:17:46 smithi191 systemd[1]: Stopped Ceph osd.4 for d3fad026-6cf0-11ef-bcea-c7b262605968. 2024-09-07T08:17:46.318 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 07 08:17:46 smithi191 systemd[1]: ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@osd.4.service: Consumed 1.731s CPU time. 2024-09-07T08:17:46.630 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:46 smithi090 ceph-mon[33260]: osdmap e49: 6 total, 5 up, 6 in 2024-09-07T08:17:46.630 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:46 smithi090 ceph-mon[33260]: pgmap v168: 1 pgs: 1 remapped+peering; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:46.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:46 smithi018 ceph-mon[30322]: osdmap e49: 6 total, 5 up, 6 in 2024-09-07T08:17:46.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:46 smithi018 ceph-mon[30322]: pgmap v168: 1 pgs: 1 remapped+peering; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-07T08:17:47.391 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:47 smithi191 ceph-mon[34025]: Removing key for osd.4 2024-09-07T08:17:47.391 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:47 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-09-07T08:17:47.391 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:47 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-07T08:17:47.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:47 smithi191 ceph-mon[34025]: Successfully removed osd.4 on smithi191 2024-09-07T08:17:47.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:47 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-09-07T08:17:47.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:47 smithi191 ceph-mon[34025]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-07T08:17:47.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:47 smithi191 ceph-mon[34025]: Cluster is now healthy 2024-09-07T08:17:47.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:47 smithi191 ceph-mon[34025]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-07T08:17:47.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:47 smithi191 ceph-mon[34025]: osdmap e50: 5 total, 5 up, 5 in 2024-09-07T08:17:47.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:47 smithi191 ceph-mon[34025]: Successfully purged osd.4 on smithi191 2024-09-07T08:17:47.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:47 smithi191 ceph-mon[34025]: Zapping devices for osd.4 on smithi191 2024-09-07T08:17:47.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:47 smithi191 ceph-mon[34025]: osdmap e51: 5 total, 5 up, 5 in 2024-09-07T08:17:47.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:47 smithi018 ceph-mon[30322]: Removing key for osd.4 2024-09-07T08:17:47.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:47 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-09-07T08:17:47.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:47 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-07T08:17:47.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:47 smithi018 ceph-mon[30322]: Successfully removed osd.4 on smithi191 2024-09-07T08:17:47.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:47 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-09-07T08:17:47.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:47 smithi018 ceph-mon[30322]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-07T08:17:47.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:47 smithi018 ceph-mon[30322]: Cluster is now healthy 2024-09-07T08:17:47.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:47 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-07T08:17:47.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:47 smithi018 ceph-mon[30322]: osdmap e50: 5 total, 5 up, 5 in 2024-09-07T08:17:47.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:47 smithi018 ceph-mon[30322]: Successfully purged osd.4 on smithi191 2024-09-07T08:17:47.707 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:47 smithi018 ceph-mon[30322]: Zapping devices for osd.4 on smithi191 2024-09-07T08:17:47.707 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:47 smithi018 ceph-mon[30322]: osdmap e51: 5 total, 5 up, 5 in 2024-09-07T08:17:47.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:47 smithi090 ceph-mon[33260]: Removing key for osd.4 2024-09-07T08:17:47.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:47 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-09-07T08:17:47.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:47 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-07T08:17:47.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:47 smithi090 ceph-mon[33260]: Successfully removed osd.4 on smithi191 2024-09-07T08:17:47.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:47 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-09-07T08:17:47.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:47 smithi090 ceph-mon[33260]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-07T08:17:47.730 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:47 smithi090 ceph-mon[33260]: Cluster is now healthy 2024-09-07T08:17:47.730 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:47 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-07T08:17:47.730 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:47 smithi090 ceph-mon[33260]: osdmap e50: 5 total, 5 up, 5 in 2024-09-07T08:17:47.730 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:47 smithi090 ceph-mon[33260]: Successfully purged osd.4 on smithi191 2024-09-07T08:17:47.730 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:47 smithi090 ceph-mon[33260]: Zapping devices for osd.4 on smithi191 2024-09-07T08:17:47.730 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:47 smithi090 ceph-mon[33260]: osdmap e51: 5 total, 5 up, 5 in 2024-09-07T08:17:48.391 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:48 smithi191 ceph-mon[34025]: pgmap v171: 1 pgs: 1 remapped+peering; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-09-07T08:17:48.392 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:48 smithi191 ceph-mon[34025]: osdmap e52: 5 total, 5 up, 5 in 2024-09-07T08:17:48.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:48 smithi018 ceph-mon[30322]: pgmap v171: 1 pgs: 1 remapped+peering; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-09-07T08:17:48.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:48 smithi018 ceph-mon[30322]: osdmap e52: 5 total, 5 up, 5 in 2024-09-07T08:17:48.728 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:48 smithi090 ceph-mon[33260]: pgmap v171: 1 pgs: 1 remapped+peering; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-09-07T08:17:48.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:48 smithi090 ceph-mon[33260]: osdmap e52: 5 total, 5 up, 5 in 2024-09-07T08:17:49.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:49 smithi191 podman[48421]: 2024-09-07 08:17:49.36463642 +0000 UTC m=+0.019564455 container died a533fd0d316abce2db5d5148d9701241f84de2fa5ef9a56a182f6171cf94d4d4 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mon-c, org.label-schema.vendor=CentOS, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, GIT_CLEAN=True, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, ceph=True) 2024-09-07T08:17:50.068 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:49 smithi191 podman[48421]: 2024-09-07 08:17:49.808650296 +0000 UTC m=+0.463578322 container remove a533fd0d316abce2db5d5148d9701241f84de2fa5ef9a56a182f6171cf94d4d4 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mon-c, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, ceph=True, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2) 2024-09-07T08:17:50.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:50 smithi191 systemd[1]: ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@mon.c.service: Deactivated successfully. 2024-09-07T08:17:50.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:50 smithi191 systemd[1]: Stopped Ceph mon.c for d3fad026-6cf0-11ef-bcea-c7b262605968. 2024-09-07T08:17:50.641 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 07 08:17:50 smithi191 systemd[1]: ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@mon.c.service: Consumed 3.145s CPU time. 2024-09-07T08:17:51.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:51 smithi018 ceph-mon[30322]: Successfully zapped devices for osd.4 on smithi191 2024-09-07T08:17:51.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:51 smithi018 ceph-mon[30322]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-07T08:17:51.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:51 smithi018 ceph-mon[30322]: Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-09-07T08:17:51.707 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:51 smithi018 ceph-mon[30322]: Removing monitor c from monmap... 2024-09-07T08:17:51.707 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:51 smithi018 ceph-mon[30322]: Removing daemon mon.c from smithi191 -- ports [] 2024-09-07T08:17:51.707 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:51 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-07T08:17:51.707 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:51 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:17:51.707 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:51 smithi018 ceph-mon[30322]: mon.b calling monitor election 2024-09-07T08:17:51.707 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:51 smithi018 ceph-mon[30322]: pgmap v174: 1 pgs: 1 remapped+peering; 577 KiB data, 145 MiB used, 447 GiB / 447 GiB avail 2024-09-07T08:17:51.707 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:51 smithi018 ceph-mon[30322]: mon.a calling monitor election 2024-09-07T08:17:51.708 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:51 smithi018 ceph-mon[30322]: mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-09-07T08:17:51.708 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:51 smithi018 ceph-mon[30322]: monmap e4: 2 mons at {a=[v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0],b=[v2:172.21.15.90:3300/0,v1:172.21.15.90:6789/0]} removed_ranks: {1} disallowed_leaders: {} 2024-09-07T08:17:51.708 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:51 smithi018 ceph-mon[30322]: fsmap 2024-09-07T08:17:51.708 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:51 smithi018 ceph-mon[30322]: osdmap e53: 5 total, 5 up, 5 in 2024-09-07T08:17:51.708 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:51 smithi018 ceph-mon[30322]: mgrmap e15: a(active, since 4m), standbys: b 2024-09-07T08:17:51.708 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:51 smithi018 ceph-mon[30322]: overall HEALTH_OK 2024-09-07T08:17:51.708 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:51 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:51.708 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:51 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:51.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:51 smithi090 ceph-mon[33260]: Successfully zapped devices for osd.4 on smithi191 2024-09-07T08:17:51.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:51 smithi090 ceph-mon[33260]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-07T08:17:51.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:51 smithi090 ceph-mon[33260]: Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-09-07T08:17:51.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:51 smithi090 ceph-mon[33260]: Removing monitor c from monmap... 2024-09-07T08:17:51.730 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:51 smithi090 ceph-mon[33260]: Removing daemon mon.c from smithi191 -- ports [] 2024-09-07T08:17:51.730 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:51 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-07T08:17:51.730 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:51 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-07T08:17:51.730 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:51 smithi090 ceph-mon[33260]: mon.b calling monitor election 2024-09-07T08:17:51.730 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:51 smithi090 ceph-mon[33260]: pgmap v174: 1 pgs: 1 remapped+peering; 577 KiB data, 145 MiB used, 447 GiB / 447 GiB avail 2024-09-07T08:17:51.731 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:51 smithi090 ceph-mon[33260]: mon.a calling monitor election 2024-09-07T08:17:51.731 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:51 smithi090 ceph-mon[33260]: mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-09-07T08:17:51.731 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:51 smithi090 ceph-mon[33260]: monmap e4: 2 mons at {a=[v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0],b=[v2:172.21.15.90:3300/0,v1:172.21.15.90:6789/0]} removed_ranks: {1} disallowed_leaders: {} 2024-09-07T08:17:51.731 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:51 smithi090 ceph-mon[33260]: fsmap 2024-09-07T08:17:51.731 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:51 smithi090 ceph-mon[33260]: osdmap e53: 5 total, 5 up, 5 in 2024-09-07T08:17:51.731 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:51 smithi090 ceph-mon[33260]: mgrmap e15: a(active, since 4m), standbys: b 2024-09-07T08:17:51.731 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:51 smithi090 ceph-mon[33260]: overall HEALTH_OK 2024-09-07T08:17:51.731 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:51 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:51.731 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:51 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:52.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:52 smithi018 ceph-mon[30322]: osdmap e54: 5 total, 5 up, 5 in 2024-09-07T08:17:52.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:52 smithi018 ceph-mon[30322]: pgmap v176: 1 pgs: 1 peering; 577 KiB data, 145 MiB used, 447 GiB / 447 GiB avail; 119 KiB/s, 0 objects/s recovering 2024-09-07T08:17:52.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:52 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:17:52.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:52 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:52.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:52 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:52.728 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:52 smithi090 ceph-mon[33260]: osdmap e54: 5 total, 5 up, 5 in 2024-09-07T08:17:52.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:52 smithi090 ceph-mon[33260]: pgmap v176: 1 pgs: 1 peering; 577 KiB data, 145 MiB used, 447 GiB / 447 GiB avail; 119 KiB/s, 0 objects/s recovering 2024-09-07T08:17:52.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:52 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:17:52.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:52 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:52.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:52 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:53.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:53 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:53.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:53 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:54.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:54 smithi018 ceph-mon[30322]: pgmap v177: 1 pgs: 1 peering; 577 KiB data, 145 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-07T08:17:54.728 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:54 smithi090 ceph-mon[33260]: pgmap v177: 1 pgs: 1 peering; 577 KiB data, 145 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-07T08:17:55.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:55 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mon-a[30318]: 2024-09-07T08:17:55.595+0000 7f21f2a58640 -1 mon.a@0(leader).osd e54 definitely_dead 0 2024-09-07T08:17:56.401 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:56 smithi018 ceph-mon[30322]: Detected new or changed devices on smithi191 2024-09-07T08:17:56.401 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:56 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:56.401 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:56 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:56.402 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:56 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:17:56.402 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:56 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:17:56.402 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:56 smithi018 ceph-mon[30322]: Updating smithi018:/etc/ceph/ceph.conf 2024-09-07T08:17:56.402 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:56 smithi018 ceph-mon[30322]: Updating smithi090:/etc/ceph/ceph.conf 2024-09-07T08:17:56.402 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:56 smithi018 ceph-mon[30322]: Updating smithi018:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-07T08:17:56.402 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:56 smithi018 ceph-mon[30322]: Updating smithi090:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-07T08:17:56.402 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:56 smithi018 ceph-mon[30322]: pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 74 KiB/s, 0 objects/s recovering 2024-09-07T08:17:56.402 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:56 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:56.402 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:56 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:56.402 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:56 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:56.402 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:56 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:56.402 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:56 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-07T08:17:56.402 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:56 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-07T08:17:56.403 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:56 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-07T08:17:56.403 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:56 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-07T08:17:56.403 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:56 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-09-07T08:17:56.409 INFO:teuthology.orchestra.run.smithi018.stderr:++ ceph orch ps --hostname smithi191 2024-09-07T08:17:56.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:56 smithi090 ceph-mon[33260]: Detected new or changed devices on smithi191 2024-09-07T08:17:56.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:56 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:56.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:56 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:56.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:56 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:17:56.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:56 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:17:56.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:56 smithi090 ceph-mon[33260]: Updating smithi018:/etc/ceph/ceph.conf 2024-09-07T08:17:56.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:56 smithi090 ceph-mon[33260]: Updating smithi090:/etc/ceph/ceph.conf 2024-09-07T08:17:56.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:56 smithi090 ceph-mon[33260]: Updating smithi018:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-07T08:17:56.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:56 smithi090 ceph-mon[33260]: Updating smithi090:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-07T08:17:56.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:56 smithi090 ceph-mon[33260]: pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 74 KiB/s, 0 objects/s recovering 2024-09-07T08:17:56.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:56 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:56.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:56 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:56.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:56 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:56.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:56 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:17:56.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:56 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-07T08:17:56.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:56 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-07T08:17:56.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:56 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-07T08:17:56.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:56 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-07T08:17:56.480 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:56 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-09-07T08:17:56.688 INFO:teuthology.orchestra.run.smithi018.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-07T08:17:56.688 INFO:teuthology.orchestra.run.smithi018.stderr:osd.5 smithi191 running (75s) 4s ago 74s 36.9M 10.3G 18.2.4-812-g03cef208 6d221832e105 e14f2341740f ' 2024-09-07T08:17:56.688 INFO:teuthology.orchestra.run.smithi018.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-07T08:17:56.688 INFO:teuthology.orchestra.run.smithi018.stderr:osd.5 smithi191 running (75s) 4s ago 74s 36.9M 10.3G 18.2.4-812-g03cef208 6d221832e105 e14f2341740f ' '!=' 'No daemons reported' ']' 2024-09-07T08:17:56.688 INFO:teuthology.orchestra.run.smithi018.stderr:+ sleep 15 2024-09-07T08:17:57.130 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 07 08:17:56 smithi191 systemd[1]: Stopping Ceph osd.5 for d3fad026-6cf0-11ef-bcea-c7b262605968... 2024-09-07T08:17:57.391 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 07 08:17:57 smithi191 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-5[44085]: 2024-09-07T08:17:57.127+0000 7f4464024640 -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-07T08:17:57.391 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 07 08:17:57 smithi191 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-5[44085]: 2024-09-07T08:17:57.127+0000 7f4464024640 -1 osd.5 54 *** Got signal Terminated *** 2024-09-07T08:17:57.391 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 07 08:17:57 smithi191 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-5[44085]: 2024-09-07T08:17:57.127+0000 7f4464024640 -1 osd.5 54 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-07T08:17:57.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:57 smithi018 ceph-mon[30322]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-07T08:17:57.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:57 smithi018 ceph-mon[30322]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-07T08:17:57.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:57 smithi018 ceph-mon[30322]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-07T08:17:57.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:57 smithi018 ceph-mon[30322]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-07T08:17:57.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:57 smithi018 ceph-mon[30322]: Health check failed: 1 osds down (OSD_DOWN) 2024-09-07T08:17:57.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:57 smithi018 ceph-mon[30322]: Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-07T08:17:57.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:57 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-07T08:17:57.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:57 smithi018 ceph-mon[30322]: osdmap e55: 5 total, 4 up, 5 in 2024-09-07T08:17:57.478 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:57 smithi090 ceph-mon[33260]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-07T08:17:57.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:57 smithi090 ceph-mon[33260]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-07T08:17:57.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:57 smithi090 ceph-mon[33260]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-07T08:17:57.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:57 smithi090 ceph-mon[33260]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-07T08:17:57.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:57 smithi090 ceph-mon[33260]: Health check failed: 1 osds down (OSD_DOWN) 2024-09-07T08:17:57.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:57 smithi090 ceph-mon[33260]: Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-07T08:17:57.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:57 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-07T08:17:57.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:57 smithi090 ceph-mon[33260]: osdmap e55: 5 total, 4 up, 5 in 2024-09-07T08:17:57.891 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 07 08:17:57 smithi191 podman[50867]: 2024-09-07 08:17:57.659543045 +0000 UTC m=+0.659782446 container died e14f2341740f71c0f9ba2a5e691ba168897899a5b37fafc63eaae4f5b9135f35 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-5, org.label-schema.vendor=CentOS, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.license=GPLv2, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, ceph=True, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , 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) 2024-09-07T08:17:58.302 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 07 08:17:58 smithi191 podman[50867]: 2024-09-07 08:17:58.053567871 +0000 UTC m=+1.053807260 container cleanup e14f2341740f71c0f9ba2a5e691ba168897899a5b37fafc63eaae4f5b9135f35 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-5, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, GIT_CLEAN=True, org.label-schema.schema-version=1.0, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, GIT_BRANCH=HEAD, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-07T08:17:58.302 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 07 08:17:58 smithi191 bash[50867]: ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-5 2024-09-07T08:17:58.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:58 smithi018 ceph-mon[30322]: osd.5 now down 2024-09-07T08:17:58.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:58 smithi018 ceph-mon[30322]: Removing daemon osd.5 from smithi191 -- ports [] 2024-09-07T08:17:58.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:58 smithi018 ceph-mon[30322]: from='client.14530 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi191", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:17:58.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:17:58 smithi018 ceph-mon[30322]: pgmap v180: 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-07T08:17:58.478 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:58 smithi090 ceph-mon[33260]: osd.5 now down 2024-09-07T08:17:58.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:58 smithi090 ceph-mon[33260]: Removing daemon osd.5 from smithi191 -- ports [] 2024-09-07T08:17:58.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:58 smithi090 ceph-mon[33260]: from='client.14530 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi191", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:17:58.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:17:58 smithi090 ceph-mon[33260]: pgmap v180: 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-07T08:17:58.639 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 07 08:17:58 smithi191 podman[50883]: 2024-09-07 08:17:58.301258255 +0000 UTC m=+0.637599877 container remove e14f2341740f71c0f9ba2a5e691ba168897899a5b37fafc63eaae4f5b9135f35 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-5, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, GIT_CLEAN=True, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-07T08:17:58.891 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 07 08:17:58 smithi191 podman[50973]: 2024-09-07 08:17:58.638578607 +0000 UTC m=+0.091749269 container create af1be99322938074efb57de4579f1f626f7b0c6a435ed2be6a936b5a694ad65d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-5-deactivate, org.label-schema.build-date=20240731, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, ceph=True, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=) 2024-09-07T08:17:58.891 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 07 08:17:58 smithi191 podman[50973]: 2024-09-07 08:17:58.562674288 +0000 UTC m=+0.015844964 image pull 6d221832e1054b498e2b9f082020222573577791586fe066468034523d6f813b quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055 2024-09-07T08:17:58.892 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 07 08:17:58 smithi191 podman[50973]: 2024-09-07 08:17:58.84929226 +0000 UTC m=+0.302462926 container init af1be99322938074efb57de4579f1f626f7b0c6a435ed2be6a936b5a694ad65d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-5-deactivate, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, io.buildah.version=1.37.2, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, ceph=True, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, GIT_CLEAN=True) 2024-09-07T08:17:58.892 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 07 08:17:58 smithi191 podman[50973]: 2024-09-07 08:17:58.852498676 +0000 UTC m=+0.305669339 container start af1be99322938074efb57de4579f1f626f7b0c6a435ed2be6a936b5a694ad65d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-5-deactivate, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, ceph=True, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=) 2024-09-07T08:17:59.320 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 07 08:17:58 smithi191 podman[50973]: 2024-09-07 08:17:58.915925089 +0000 UTC m=+0.369095774 container attach af1be99322938074efb57de4579f1f626f7b0c6a435ed2be6a936b5a694ad65d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-5-deactivate, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , ceph=True, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20) 2024-09-07T08:17:59.320 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 07 08:17:59 smithi191 podman[50973]: 2024-09-07 08:17:59.037666966 +0000 UTC m=+0.490837645 container died af1be99322938074efb57de4579f1f626f7b0c6a435ed2be6a936b5a694ad65d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-5-deactivate, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, io.buildah.version=1.37.2, ceph=True) 2024-09-07T08:17:59.641 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 07 08:17:59 smithi191 podman[50996]: 2024-09-07 08:17:59.502273248 +0000 UTC m=+0.454456848 container remove af1be99322938074efb57de4579f1f626f7b0c6a435ed2be6a936b5a694ad65d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-5-deactivate, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_CLEAN=True, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, ceph=True, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=) 2024-09-07T08:17:59.641 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 07 08:17:59 smithi191 systemd[1]: ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@osd.5.service: Deactivated successfully. 2024-09-07T08:17:59.641 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 07 08:17:59 smithi191 systemd[1]: Stopped Ceph osd.5 for d3fad026-6cf0-11ef-bcea-c7b262605968. 2024-09-07T08:17:59.641 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 07 08:17:59 smithi191 systemd[1]: ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@osd.5.service: Consumed 1.594s CPU time. 2024-09-07T08:18:00.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:00 smithi018 ceph-mon[30322]: pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-09-07T08:18:00.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:00 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-09-07T08:18:00.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:00 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-07T08:18:00.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:00 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-09-07T08:18:00.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:00 smithi018 ceph-mon[30322]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-07T08:18:00.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:00 smithi018 ceph-mon[30322]: Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-07T08:18:00.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:00 smithi018 ceph-mon[30322]: Cluster is now healthy 2024-09-07T08:18:00.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:00 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-07T08:18:00.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:00 smithi018 ceph-mon[30322]: osdmap e56: 4 total, 4 up, 4 in 2024-09-07T08:18:00.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:00 smithi090 ceph-mon[33260]: pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-09-07T08:18:00.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:00 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-09-07T08:18:00.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:00 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-07T08:18:00.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:00 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-09-07T08:18:00.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:00 smithi090 ceph-mon[33260]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-07T08:18:00.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:00 smithi090 ceph-mon[33260]: Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-07T08:18:00.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:00 smithi090 ceph-mon[33260]: Cluster is now healthy 2024-09-07T08:18:00.980 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:00 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-07T08:18:00.980 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:00 smithi090 ceph-mon[33260]: osdmap e56: 4 total, 4 up, 4 in 2024-09-07T08:18:01.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:01 smithi018 ceph-mon[30322]: Removing key for osd.5 2024-09-07T08:18:01.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:01 smithi018 ceph-mon[30322]: Successfully removed osd.5 on smithi191 2024-09-07T08:18:01.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:01 smithi018 ceph-mon[30322]: Successfully purged osd.5 on smithi191 2024-09-07T08:18:01.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:01 smithi018 ceph-mon[30322]: Zapping devices for osd.5 on smithi191 2024-09-07T08:18:01.978 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:01 smithi090 ceph-mon[33260]: Removing key for osd.5 2024-09-07T08:18:01.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:01 smithi090 ceph-mon[33260]: Successfully removed osd.5 on smithi191 2024-09-07T08:18:01.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:01 smithi090 ceph-mon[33260]: Successfully purged osd.5 on smithi191 2024-09-07T08:18:01.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:01 smithi090 ceph-mon[33260]: Zapping devices for osd.5 on smithi191 2024-09-07T08:18:02.746 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:02 smithi018 ceph-mon[30322]: pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:02.746 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:02 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:02.746 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:02 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-07T08:18:02.747 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:02 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-07T08:18:02.747 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:02 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:18:02.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:02 smithi090 ceph-mon[33260]: pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:02.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:02 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:02.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:02 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-07T08:18:02.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:02 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-07T08:18:02.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:02 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:18:03.749 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:03 smithi018 ceph-mon[30322]: Successfully zapped devices for osd.5 on smithi191 2024-09-07T08:18:03.749 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:03 smithi018 ceph-mon[30322]: Reconfiguring mon.a (monmap changed)... 2024-09-07T08:18:03.749 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:03 smithi018 ceph-mon[30322]: Reconfiguring daemon mon.a on smithi018 2024-09-07T08:18:03.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:03 smithi090 ceph-mon[33260]: Successfully zapped devices for osd.5 on smithi191 2024-09-07T08:18:03.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:03 smithi090 ceph-mon[33260]: Reconfiguring mon.a (monmap changed)... 2024-09-07T08:18:03.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:03 smithi090 ceph-mon[33260]: Reconfiguring daemon mon.a on smithi018 2024-09-07T08:18:04.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:04 smithi018 ceph-mon[30322]: pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:04.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:04 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:04.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:04 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:04.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:04 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-07T08:18:04.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:04 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-07T08:18:04.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:04 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:18:04.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:04 smithi090 ceph-mon[33260]: pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:04.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:04 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:04.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:04 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:04.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:04 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-07T08:18:04.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:04 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-07T08:18:04.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:04 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:18:05.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:05 smithi018 ceph-mon[30322]: Reconfiguring mgr.a (monmap changed)... 2024-09-07T08:18:05.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:05 smithi018 ceph-mon[30322]: Reconfiguring daemon mgr.a on smithi018 2024-09-07T08:18:05.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:05 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:05.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:05 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:05.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:05 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-07T08:18:05.707 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:05 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:18:05.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:05 smithi090 ceph-mon[33260]: Reconfiguring mgr.a (monmap changed)... 2024-09-07T08:18:05.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:05 smithi090 ceph-mon[33260]: Reconfiguring daemon mgr.a on smithi018 2024-09-07T08:18:05.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:05 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:05.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:05 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:05.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:05 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-07T08:18:05.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:05 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:18:06.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:06 smithi018 ceph-mon[30322]: Reconfiguring osd.0 (monmap changed)... 2024-09-07T08:18:06.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:06 smithi018 ceph-mon[30322]: Reconfiguring daemon osd.0 on smithi018 2024-09-07T08:18:06.706 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:06 smithi018 ceph-mon[30322]: pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:06.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:06 smithi090 ceph-mon[33260]: Reconfiguring osd.0 (monmap changed)... 2024-09-07T08:18:06.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:06 smithi090 ceph-mon[33260]: Reconfiguring daemon osd.0 on smithi018 2024-09-07T08:18:06.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:06 smithi090 ceph-mon[33260]: pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:07.767 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:07 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:07.767 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:07 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:07.768 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:07 smithi018 ceph-mon[30322]: Reconfiguring osd.1 (monmap changed)... 2024-09-07T08:18:07.768 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:07 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-07T08:18:07.768 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:07 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:18:07.768 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:07 smithi018 ceph-mon[30322]: Reconfiguring daemon osd.1 on smithi018 2024-09-07T08:18:07.980 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:07 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:07.980 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:07 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:07.981 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:07 smithi090 ceph-mon[33260]: Reconfiguring osd.1 (monmap changed)... 2024-09-07T08:18:07.981 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:07 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-07T08:18:07.981 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:07 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:18:07.981 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:07 smithi090 ceph-mon[33260]: Reconfiguring daemon osd.1 on smithi018 2024-09-07T08:18:08.846 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:08 smithi090 ceph-mon[33260]: pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:08.847 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:08 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:08.847 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:08 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:08.847 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:08 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-07T08:18:08.847 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:08 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-07T08:18:08.847 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:08 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:18:08.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:08 smithi018 ceph-mon[30322]: pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:08.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:08 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:08.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:08 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:08.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:08 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-07T08:18:08.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:08 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-07T08:18:08.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:08 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:18:09.868 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:09 smithi090 ceph-mon[33260]: Reconfiguring mon.b (monmap changed)... 2024-09-07T08:18:09.868 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:09 smithi090 ceph-mon[33260]: Reconfiguring daemon mon.b on smithi090 2024-09-07T08:18:09.869 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:09 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:09.869 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:09 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:09.869 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:09 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-07T08:18:09.869 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:09 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-07T08:18:09.869 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:09 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:18:09.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:09 smithi018 ceph-mon[30322]: Reconfiguring mon.b (monmap changed)... 2024-09-07T08:18:09.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:09 smithi018 ceph-mon[30322]: Reconfiguring daemon mon.b on smithi090 2024-09-07T08:18:09.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:09 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:09.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:09 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:09.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:09 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-07T08:18:09.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:09 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-07T08:18:09.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:09 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:18:10.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:10 smithi090 ceph-mon[33260]: Reconfiguring mgr.b (monmap changed)... 2024-09-07T08:18:10.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:10 smithi090 ceph-mon[33260]: Reconfiguring daemon mgr.b on smithi090 2024-09-07T08:18:10.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:10 smithi090 ceph-mon[33260]: pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:10.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:10 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:10.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:10 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:10.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:10 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-07T08:18:10.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:10 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:18:10.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:10 smithi018 ceph-mon[30322]: Reconfiguring mgr.b (monmap changed)... 2024-09-07T08:18:10.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:10 smithi018 ceph-mon[30322]: Reconfiguring daemon mgr.b on smithi090 2024-09-07T08:18:10.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:10 smithi018 ceph-mon[30322]: pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:10.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:10 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:10.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:10 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:10.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:10 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-07T08:18:10.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:10 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:18:11.689 INFO:teuthology.orchestra.run.smithi018.stderr:++ ceph orch ps --hostname smithi191 2024-09-07T08:18:11.820 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:11 smithi090 ceph-mon[33260]: Reconfiguring osd.2 (monmap changed)... 2024-09-07T08:18:11.820 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:11 smithi090 ceph-mon[33260]: Reconfiguring daemon osd.2 on smithi090 2024-09-07T08:18:11.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:11 smithi018 ceph-mon[30322]: Reconfiguring osd.2 (monmap changed)... 2024-09-07T08:18:11.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:11 smithi018 ceph-mon[30322]: Reconfiguring daemon osd.2 on smithi090 2024-09-07T08:18:11.976 INFO:teuthology.orchestra.run.smithi018.stderr:+ HOST_C_DAEMONS='No daemons reported' 2024-09-07T08:18:11.977 INFO:teuthology.orchestra.run.smithi018.stderr:+ '[' 'No daemons reported' '!=' 'No daemons reported' ']' 2024-09-07T08:18:11.977 INFO:teuthology.orchestra.run.smithi018.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-09-07T08:18:12.229 INFO:teuthology.orchestra.run.smithi018.stderr:17 2024-09-07T08:18:12.240 INFO:teuthology.orchestra.run.smithi018.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-09-07T08:18:12.252 INFO:teuthology.orchestra.run.smithi018.stderr:++ cat crushmap.txt 2024-09-07T08:18:12.253 INFO:teuthology.orchestra.run.smithi018.stderr:+ CRUSH_MAP='# begin crush map 2024-09-07T08:18:12.253 INFO:teuthology.orchestra.run.smithi018.stderr:tunable choose_local_tries 0 2024-09-07T08:18:12.253 INFO:teuthology.orchestra.run.smithi018.stderr:tunable choose_local_fallback_tries 0 2024-09-07T08:18:12.253 INFO:teuthology.orchestra.run.smithi018.stderr:tunable choose_total_tries 50 2024-09-07T08:18:12.253 INFO:teuthology.orchestra.run.smithi018.stderr:tunable chooseleaf_descend_once 1 2024-09-07T08:18:12.253 INFO:teuthology.orchestra.run.smithi018.stderr:tunable chooseleaf_vary_r 1 2024-09-07T08:18:12.253 INFO:teuthology.orchestra.run.smithi018.stderr:tunable chooseleaf_stable 1 2024-09-07T08:18:12.253 INFO:teuthology.orchestra.run.smithi018.stderr:tunable straw_calc_version 1 2024-09-07T08:18:12.253 INFO:teuthology.orchestra.run.smithi018.stderr:tunable allowed_bucket_algs 54 2024-09-07T08:18:12.253 INFO:teuthology.orchestra.run.smithi018.stderr: 2024-09-07T08:18:12.253 INFO:teuthology.orchestra.run.smithi018.stderr:# devices 2024-09-07T08:18:12.254 INFO:teuthology.orchestra.run.smithi018.stderr:device 0 osd.0 class ssd 2024-09-07T08:18:12.254 INFO:teuthology.orchestra.run.smithi018.stderr:device 1 osd.1 class ssd 2024-09-07T08:18:12.254 INFO:teuthology.orchestra.run.smithi018.stderr:device 2 osd.2 class ssd 2024-09-07T08:18:12.254 INFO:teuthology.orchestra.run.smithi018.stderr:device 3 osd.3 class ssd 2024-09-07T08:18:12.254 INFO:teuthology.orchestra.run.smithi018.stderr: 2024-09-07T08:18:12.254 INFO:teuthology.orchestra.run.smithi018.stderr:# types 2024-09-07T08:18:12.254 INFO:teuthology.orchestra.run.smithi018.stderr:type 0 osd 2024-09-07T08:18:12.254 INFO:teuthology.orchestra.run.smithi018.stderr:type 1 host 2024-09-07T08:18:12.254 INFO:teuthology.orchestra.run.smithi018.stderr:type 2 chassis 2024-09-07T08:18:12.254 INFO:teuthology.orchestra.run.smithi018.stderr:type 3 rack 2024-09-07T08:18:12.254 INFO:teuthology.orchestra.run.smithi018.stderr:type 4 row 2024-09-07T08:18:12.254 INFO:teuthology.orchestra.run.smithi018.stderr:type 5 pdu 2024-09-07T08:18:12.254 INFO:teuthology.orchestra.run.smithi018.stderr:type 6 pod 2024-09-07T08:18:12.254 INFO:teuthology.orchestra.run.smithi018.stderr:type 7 room 2024-09-07T08:18:12.255 INFO:teuthology.orchestra.run.smithi018.stderr:type 8 datacenter 2024-09-07T08:18:12.255 INFO:teuthology.orchestra.run.smithi018.stderr:type 9 zone 2024-09-07T08:18:12.255 INFO:teuthology.orchestra.run.smithi018.stderr:type 10 region 2024-09-07T08:18:12.255 INFO:teuthology.orchestra.run.smithi018.stderr:type 11 root 2024-09-07T08:18:12.255 INFO:teuthology.orchestra.run.smithi018.stderr: 2024-09-07T08:18:12.255 INFO:teuthology.orchestra.run.smithi018.stderr:# buckets 2024-09-07T08:18:12.255 INFO:teuthology.orchestra.run.smithi018.stderr:host smithi018 { 2024-09-07T08:18:12.255 INFO:teuthology.orchestra.run.smithi018.stderr: id -3 # do not change unnecessarily 2024-09-07T08:18:12.255 INFO:teuthology.orchestra.run.smithi018.stderr: id -4 class ssd # do not change unnecessarily 2024-09-07T08:18:12.255 INFO:teuthology.orchestra.run.smithi018.stderr: # weight 0.17459 2024-09-07T08:18:12.255 INFO:teuthology.orchestra.run.smithi018.stderr: alg straw2 2024-09-07T08:18:12.255 INFO:teuthology.orchestra.run.smithi018.stderr: hash 0 # rjenkins1 2024-09-07T08:18:12.256 INFO:teuthology.orchestra.run.smithi018.stderr: item osd.0 weight 0.08730 2024-09-07T08:18:12.256 INFO:teuthology.orchestra.run.smithi018.stderr: item osd.1 weight 0.08730 2024-09-07T08:18:12.256 INFO:teuthology.orchestra.run.smithi018.stderr:} 2024-09-07T08:18:12.256 INFO:teuthology.orchestra.run.smithi018.stderr:host smithi090 { 2024-09-07T08:18:12.256 INFO:teuthology.orchestra.run.smithi018.stderr: id -5 # do not change unnecessarily 2024-09-07T08:18:12.256 INFO:teuthology.orchestra.run.smithi018.stderr: id -6 class ssd # do not change unnecessarily 2024-09-07T08:18:12.256 INFO:teuthology.orchestra.run.smithi018.stderr: # weight 0.17459 2024-09-07T08:18:12.256 INFO:teuthology.orchestra.run.smithi018.stderr: alg straw2 2024-09-07T08:18:12.256 INFO:teuthology.orchestra.run.smithi018.stderr: hash 0 # rjenkins1 2024-09-07T08:18:12.256 INFO:teuthology.orchestra.run.smithi018.stderr: item osd.2 weight 0.08730 2024-09-07T08:18:12.256 INFO:teuthology.orchestra.run.smithi018.stderr: item osd.3 weight 0.08730 2024-09-07T08:18:12.256 INFO:teuthology.orchestra.run.smithi018.stderr:} 2024-09-07T08:18:12.256 INFO:teuthology.orchestra.run.smithi018.stderr:host smithi191 { 2024-09-07T08:18:12.257 INFO:teuthology.orchestra.run.smithi018.stderr: id -7 # do not change unnecessarily 2024-09-07T08:18:12.257 INFO:teuthology.orchestra.run.smithi018.stderr: id -8 class ssd # do not change unnecessarily 2024-09-07T08:18:12.257 INFO:teuthology.orchestra.run.smithi018.stderr: # weight 0.00000 2024-09-07T08:18:12.257 INFO:teuthology.orchestra.run.smithi018.stderr: alg straw2 2024-09-07T08:18:12.257 INFO:teuthology.orchestra.run.smithi018.stderr: hash 0 # rjenkins1 2024-09-07T08:18:12.257 INFO:teuthology.orchestra.run.smithi018.stderr:} 2024-09-07T08:18:12.257 INFO:teuthology.orchestra.run.smithi018.stderr:root default { 2024-09-07T08:18:12.257 INFO:teuthology.orchestra.run.smithi018.stderr: id -1 # do not change unnecessarily 2024-09-07T08:18:12.257 INFO:teuthology.orchestra.run.smithi018.stderr: id -2 class ssd # do not change unnecessarily 2024-09-07T08:18:12.257 INFO:teuthology.orchestra.run.smithi018.stderr: # weight 0.34918 2024-09-07T08:18:12.257 INFO:teuthology.orchestra.run.smithi018.stderr: alg straw2 2024-09-07T08:18:12.257 INFO:teuthology.orchestra.run.smithi018.stderr: hash 0 # rjenkins1 2024-09-07T08:18:12.257 INFO:teuthology.orchestra.run.smithi018.stderr: item smithi018 weight 0.17459 2024-09-07T08:18:12.257 INFO:teuthology.orchestra.run.smithi018.stderr: item smithi090 weight 0.17459 2024-09-07T08:18:12.257 INFO:teuthology.orchestra.run.smithi018.stderr: item smithi191 weight 0.00000 2024-09-07T08:18:12.258 INFO:teuthology.orchestra.run.smithi018.stderr:} 2024-09-07T08:18:12.258 INFO:teuthology.orchestra.run.smithi018.stderr: 2024-09-07T08:18:12.258 INFO:teuthology.orchestra.run.smithi018.stderr:# rules 2024-09-07T08:18:12.258 INFO:teuthology.orchestra.run.smithi018.stderr:rule replicated_rule { 2024-09-07T08:18:12.258 INFO:teuthology.orchestra.run.smithi018.stderr: id 0 2024-09-07T08:18:12.258 INFO:teuthology.orchestra.run.smithi018.stderr: type replicated 2024-09-07T08:18:12.258 INFO:teuthology.orchestra.run.smithi018.stderr: step take default 2024-09-07T08:18:12.258 INFO:teuthology.orchestra.run.smithi018.stderr: step choose firstn 0 type osd 2024-09-07T08:18:12.258 INFO:teuthology.orchestra.run.smithi018.stderr: step emit 2024-09-07T08:18:12.258 INFO:teuthology.orchestra.run.smithi018.stderr:} 2024-09-07T08:18:12.258 INFO:teuthology.orchestra.run.smithi018.stderr: 2024-09-07T08:18:12.258 INFO:teuthology.orchestra.run.smithi018.stderr:# end crush map' 2024-09-07T08:18:12.258 INFO:teuthology.orchestra.run.smithi018.stderr:+ grep -q smithi191 2024-09-07T08:18:12.259 INFO:teuthology.orchestra.run.smithi018.stderr:+ ceph orch host rm smithi191 --rm-crush-entry 2024-09-07T08:18:12.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:12 smithi090 ceph-mon[33260]: pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:12.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:12 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:12.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:12 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:12.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:12 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-07T08:18:12.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:12 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:18:12.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:12 smithi090 ceph-mon[33260]: from='client.? 172.21.15.18:0/1054551717' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-07T08:18:12.729 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:12 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "smithi191"}]: dispatch 2024-09-07T08:18:12.778 INFO:teuthology.orchestra.run.smithi018.stdout:Removed host 'smithi191' 2024-09-07T08:18:12.790 INFO:teuthology.orchestra.run.smithi018.stderr:+ sleep 30 2024-09-07T08:18:12.790 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:12 smithi018 ceph-mon[30322]: pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:12.790 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:12 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:12.790 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:12 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:12.790 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:12 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-07T08:18:12.790 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:12 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:18:12.791 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:12 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/1054551717' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-07T08:18:12.791 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:12 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "smithi191"}]: dispatch 2024-09-07T08:18:13.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:13 smithi018 ceph-mon[30322]: Reconfiguring osd.3 (monmap changed)... 2024-09-07T08:18:13.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:13 smithi018 ceph-mon[30322]: Reconfiguring daemon osd.3 on smithi090 2024-09-07T08:18:13.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:13 smithi018 ceph-mon[30322]: from='client.24347 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi191", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:18:13.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:13 smithi018 ceph-mon[30322]: from='client.14542 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi191", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:18:13.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:13 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi191"}]': finished 2024-09-07T08:18:13.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:13 smithi018 ceph-mon[30322]: osdmap e57: 4 total, 4 up, 4 in 2024-09-07T08:18:13.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:13 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:13.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:13 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi191"}]: dispatch 2024-09-07T08:18:13.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:13 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi191"}]': finished 2024-09-07T08:18:13.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:13 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:13.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:13 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:13.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:13 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:18:13.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:13 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:18:13.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:13 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:18:13.957 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:13 smithi018 ceph-mon[30322]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:13.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:13 smithi090 ceph-mon[33260]: Reconfiguring osd.3 (monmap changed)... 2024-09-07T08:18:13.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:13 smithi090 ceph-mon[33260]: Reconfiguring daemon osd.3 on smithi090 2024-09-07T08:18:13.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:13 smithi090 ceph-mon[33260]: from='client.24347 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi191", "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:18:13.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:13 smithi090 ceph-mon[33260]: from='client.14542 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi191", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-07T08:18:13.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:13 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi191"}]': finished 2024-09-07T08:18:13.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:13 smithi090 ceph-mon[33260]: osdmap e57: 4 total, 4 up, 4 in 2024-09-07T08:18:13.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:13 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:13.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:13 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi191"}]: dispatch 2024-09-07T08:18:13.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:13 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi191"}]': finished 2024-09-07T08:18:13.980 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:13 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:13.980 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:13 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:13.980 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:13 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-07T08:18:13.980 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:13 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-07T08:18:13.980 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:13 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-07T08:18:13.980 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:13 smithi090 ceph-mon[33260]: from='mgr.14150 172.21.15.18:0/4008808098' entity='mgr.a' 2024-09-07T08:18:14.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:14 smithi018 ceph-mon[30322]: Removed host smithi191 2024-09-07T08:18:14.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:14 smithi018 ceph-mon[30322]: pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:14.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:14 smithi018 ceph-mon[30322]: Health check failed: 1 stray host(s) with 1 daemon(s) not managed by cephadm (CEPHADM_STRAY_HOST) 2024-09-07T08:18:14.978 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:14 smithi090 ceph-mon[33260]: Removed host smithi191 2024-09-07T08:18:14.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:14 smithi090 ceph-mon[33260]: pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:14.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:14 smithi090 ceph-mon[33260]: Health check failed: 1 stray host(s) with 1 daemon(s) not managed by cephadm (CEPHADM_STRAY_HOST) 2024-09-07T08:18:16.795 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:16 smithi090 ceph-mon[33260]: pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:16.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:16 smithi018 ceph-mon[30322]: pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:18.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:18 smithi018 ceph-mon[30322]: pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:18.978 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:18 smithi090 ceph-mon[33260]: pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:20.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:20 smithi018 ceph-mon[30322]: pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:20.979 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:20 smithi090 ceph-mon[33260]: pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:22.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:22 smithi018 ceph-mon[30322]: pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:22.978 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:22 smithi090 ceph-mon[33260]: pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:23.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:23 smithi018 ceph-mon[30322]: pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:23.978 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:23 smithi090 ceph-mon[33260]: pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:26.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:26 smithi018 ceph-mon[30322]: pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:26.478 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:26 smithi090 ceph-mon[33260]: pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:28.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:28 smithi018 ceph-mon[30322]: pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:28.478 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:28 smithi090 ceph-mon[33260]: pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:30.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:30 smithi018 ceph-mon[30322]: pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:30.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:30 smithi090 ceph-mon[33260]: pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:32.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:32 smithi018 ceph-mon[30322]: pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:32.478 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:32 smithi090 ceph-mon[33260]: pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:34.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:34 smithi018 ceph-mon[30322]: pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:34.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:34 smithi090 ceph-mon[33260]: pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:36.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:36 smithi018 ceph-mon[30322]: pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:36.478 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:36 smithi090 ceph-mon[33260]: pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:38.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:38 smithi018 ceph-mon[30322]: pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:38.479 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:38 smithi090 ceph-mon[33260]: pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:40.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:40 smithi018 ceph-mon[30322]: pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:40.478 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:40 smithi090 ceph-mon[33260]: pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:42.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:42 smithi018 ceph-mon[30322]: pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:42.478 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:42 smithi090 ceph-mon[33260]: pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:42.793 INFO:teuthology.orchestra.run.smithi018.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-09-07T08:18:43.057 INFO:teuthology.orchestra.run.smithi018.stderr:18 2024-09-07T08:18:43.068 INFO:teuthology.orchestra.run.smithi018.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-09-07T08:18:43.080 INFO:teuthology.orchestra.run.smithi018.stderr:++ cat crushmap.txt 2024-09-07T08:18:43.081 INFO:teuthology.orchestra.run.smithi018.stderr:+ CRUSH_MAP='# begin crush map 2024-09-07T08:18:43.081 INFO:teuthology.orchestra.run.smithi018.stderr:tunable choose_local_tries 0 2024-09-07T08:18:43.081 INFO:teuthology.orchestra.run.smithi018.stderr:tunable choose_local_fallback_tries 0 2024-09-07T08:18:43.082 INFO:teuthology.orchestra.run.smithi018.stderr:tunable choose_total_tries 50 2024-09-07T08:18:43.082 INFO:teuthology.orchestra.run.smithi018.stderr:tunable chooseleaf_descend_once 1 2024-09-07T08:18:43.082 INFO:teuthology.orchestra.run.smithi018.stderr:tunable chooseleaf_vary_r 1 2024-09-07T08:18:43.082 INFO:teuthology.orchestra.run.smithi018.stderr:tunable chooseleaf_stable 1 2024-09-07T08:18:43.082 INFO:teuthology.orchestra.run.smithi018.stderr:tunable straw_calc_version 1 2024-09-07T08:18:43.082 INFO:teuthology.orchestra.run.smithi018.stderr:tunable allowed_bucket_algs 54 2024-09-07T08:18:43.082 INFO:teuthology.orchestra.run.smithi018.stderr: 2024-09-07T08:18:43.082 INFO:teuthology.orchestra.run.smithi018.stderr:# devices 2024-09-07T08:18:43.082 INFO:teuthology.orchestra.run.smithi018.stderr:device 0 osd.0 class ssd 2024-09-07T08:18:43.082 INFO:teuthology.orchestra.run.smithi018.stderr:device 1 osd.1 class ssd 2024-09-07T08:18:43.082 INFO:teuthology.orchestra.run.smithi018.stderr:device 2 osd.2 class ssd 2024-09-07T08:18:43.082 INFO:teuthology.orchestra.run.smithi018.stderr:device 3 osd.3 class ssd 2024-09-07T08:18:43.082 INFO:teuthology.orchestra.run.smithi018.stderr: 2024-09-07T08:18:43.082 INFO:teuthology.orchestra.run.smithi018.stderr:# types 2024-09-07T08:18:43.082 INFO:teuthology.orchestra.run.smithi018.stderr:type 0 osd 2024-09-07T08:18:43.082 INFO:teuthology.orchestra.run.smithi018.stderr:type 1 host 2024-09-07T08:18:43.083 INFO:teuthology.orchestra.run.smithi018.stderr:type 2 chassis 2024-09-07T08:18:43.083 INFO:teuthology.orchestra.run.smithi018.stderr:type 3 rack 2024-09-07T08:18:43.083 INFO:teuthology.orchestra.run.smithi018.stderr:type 4 row 2024-09-07T08:18:43.083 INFO:teuthology.orchestra.run.smithi018.stderr:type 5 pdu 2024-09-07T08:18:43.083 INFO:teuthology.orchestra.run.smithi018.stderr:type 6 pod 2024-09-07T08:18:43.083 INFO:teuthology.orchestra.run.smithi018.stderr:type 7 room 2024-09-07T08:18:43.083 INFO:teuthology.orchestra.run.smithi018.stderr:type 8 datacenter 2024-09-07T08:18:43.083 INFO:teuthology.orchestra.run.smithi018.stderr:type 9 zone 2024-09-07T08:18:43.083 INFO:teuthology.orchestra.run.smithi018.stderr:type 10 region 2024-09-07T08:18:43.083 INFO:teuthology.orchestra.run.smithi018.stderr:type 11 root 2024-09-07T08:18:43.083 INFO:teuthology.orchestra.run.smithi018.stderr: 2024-09-07T08:18:43.083 INFO:teuthology.orchestra.run.smithi018.stderr:# buckets 2024-09-07T08:18:43.083 INFO:teuthology.orchestra.run.smithi018.stderr:host smithi018 { 2024-09-07T08:18:43.083 INFO:teuthology.orchestra.run.smithi018.stderr: id -3 # do not change unnecessarily 2024-09-07T08:18:43.084 INFO:teuthology.orchestra.run.smithi018.stderr: id -4 class ssd # do not change unnecessarily 2024-09-07T08:18:43.084 INFO:teuthology.orchestra.run.smithi018.stderr: # weight 0.17459 2024-09-07T08:18:43.084 INFO:teuthology.orchestra.run.smithi018.stderr: alg straw2 2024-09-07T08:18:43.084 INFO:teuthology.orchestra.run.smithi018.stderr: hash 0 # rjenkins1 2024-09-07T08:18:43.084 INFO:teuthology.orchestra.run.smithi018.stderr: item osd.0 weight 0.08730 2024-09-07T08:18:43.084 INFO:teuthology.orchestra.run.smithi018.stderr: item osd.1 weight 0.08730 2024-09-07T08:18:43.084 INFO:teuthology.orchestra.run.smithi018.stderr:} 2024-09-07T08:18:43.084 INFO:teuthology.orchestra.run.smithi018.stderr:host smithi090 { 2024-09-07T08:18:43.084 INFO:teuthology.orchestra.run.smithi018.stderr: id -5 # do not change unnecessarily 2024-09-07T08:18:43.084 INFO:teuthology.orchestra.run.smithi018.stderr: id -6 class ssd # do not change unnecessarily 2024-09-07T08:18:43.084 INFO:teuthology.orchestra.run.smithi018.stderr: # weight 0.17459 2024-09-07T08:18:43.085 INFO:teuthology.orchestra.run.smithi018.stderr: alg straw2 2024-09-07T08:18:43.085 INFO:teuthology.orchestra.run.smithi018.stderr: hash 0 # rjenkins1 2024-09-07T08:18:43.085 INFO:teuthology.orchestra.run.smithi018.stderr: item osd.2 weight 0.08730 2024-09-07T08:18:43.085 INFO:teuthology.orchestra.run.smithi018.stderr: item osd.3 weight 0.08730 2024-09-07T08:18:43.085 INFO:teuthology.orchestra.run.smithi018.stderr:} 2024-09-07T08:18:43.085 INFO:teuthology.orchestra.run.smithi018.stderr:root default { 2024-09-07T08:18:43.085 INFO:teuthology.orchestra.run.smithi018.stderr: id -1 # do not change unnecessarily 2024-09-07T08:18:43.085 INFO:teuthology.orchestra.run.smithi018.stderr: id -2 class ssd # do not change unnecessarily 2024-09-07T08:18:43.085 INFO:teuthology.orchestra.run.smithi018.stderr: # weight 0.34918 2024-09-07T08:18:43.085 INFO:teuthology.orchestra.run.smithi018.stderr: alg straw2 2024-09-07T08:18:43.085 INFO:teuthology.orchestra.run.smithi018.stderr: hash 0 # rjenkins1 2024-09-07T08:18:43.085 INFO:teuthology.orchestra.run.smithi018.stderr: item smithi018 weight 0.17459 2024-09-07T08:18:43.085 INFO:teuthology.orchestra.run.smithi018.stderr: item smithi090 weight 0.17459 2024-09-07T08:18:43.086 INFO:teuthology.orchestra.run.smithi018.stderr:} 2024-09-07T08:18:43.086 INFO:teuthology.orchestra.run.smithi018.stderr: 2024-09-07T08:18:43.086 INFO:teuthology.orchestra.run.smithi018.stderr:# rules 2024-09-07T08:18:43.086 INFO:teuthology.orchestra.run.smithi018.stderr:rule replicated_rule { 2024-09-07T08:18:43.086 INFO:teuthology.orchestra.run.smithi018.stderr: id 0 2024-09-07T08:18:43.086 INFO:teuthology.orchestra.run.smithi018.stderr: type replicated 2024-09-07T08:18:43.086 INFO:teuthology.orchestra.run.smithi018.stderr: step take default 2024-09-07T08:18:43.086 INFO:teuthology.orchestra.run.smithi018.stderr: step choose firstn 0 type osd 2024-09-07T08:18:43.086 INFO:teuthology.orchestra.run.smithi018.stderr: step emit 2024-09-07T08:18:43.086 INFO:teuthology.orchestra.run.smithi018.stderr:} 2024-09-07T08:18:43.086 INFO:teuthology.orchestra.run.smithi018.stderr: 2024-09-07T08:18:43.086 INFO:teuthology.orchestra.run.smithi018.stderr:# end crush map' 2024-09-07T08:18:43.086 INFO:teuthology.orchestra.run.smithi018.stderr:+ grep -q smithi191 2024-09-07T08:18:43.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:43 smithi018 ceph-mon[30322]: from='client.? 172.21.15.18:0/692188306' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-07T08:18:43.478 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:43 smithi090 ceph-mon[33260]: from='client.? 172.21.15.18:0/692188306' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-07T08:18:44.027 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-09-07T08:18:44.040 INFO:tasks.cephadm:Teardown begin 2024-09-07T08:18:44.041 DEBUG:teuthology.orchestra.run.smithi018:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-07T08:18:44.073 DEBUG:teuthology.orchestra.run.smithi090:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-07T08:18:44.107 DEBUG:teuthology.orchestra.run.smithi191:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-07T08:18:44.142 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-09-07T08:18:44.142 DEBUG:teuthology.orchestra.run.smithi018:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-07T08:18:44.159 DEBUG:teuthology.orchestra.run.smithi090:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-07T08:18:44.177 DEBUG:teuthology.orchestra.run.smithi191:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-07T08:18:44.200 INFO:tasks.cephadm:Stopping all daemons... 2024-09-07T08:18:44.200 INFO:tasks.cephadm.mon.a:Stopping mon.a... 2024-09-07T08:18:44.201 DEBUG:teuthology.orchestra.run.smithi018:> sudo systemctl stop ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@mon.a 2024-09-07T08:18:44.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:44 smithi018 ceph-mon[30322]: pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:44.456 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:44 smithi018 systemd[1]: Stopping Ceph mon.a for d3fad026-6cf0-11ef-bcea-c7b262605968... 2024-09-07T08:18:44.478 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:44 smithi090 ceph-mon[33260]: pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-07T08:18:44.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:44 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mon-a[30318]: 2024-09-07T08:18:44.508+0000 7f21f8263640 -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-07T08:18:44.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:44 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mon-a[30318]: 2024-09-07T08:18:44.508+0000 7f21f8263640 -1 mon.a@0(leader) e4 *** Got Signal Terminated *** 2024-09-07T08:18:44.956 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:44 smithi018 podman[59528]: 2024-09-07 08:18:44.68312406 +0000 UTC m=+0.288881880 container died 3508e801eae828f5e4cb929b18b531c920364481af8240c2ad6b86aa97036382 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mon-a, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, org.label-schema.license=GPLv2, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, ceph=True, GIT_CLEAN=True, org.label-schema.vendor=CentOS) 2024-09-07T08:18:45.311 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:45 smithi018 podman[59528]: 2024-09-07 08:18:45.051127489 +0000 UTC m=+0.656885309 container cleanup 3508e801eae828f5e4cb929b18b531c920364481af8240c2ad6b86aa97036382 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mon-a, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, org.label-schema.build-date=20240731, ceph=True, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, GIT_CLEAN=True) 2024-09-07T08:18:45.311 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 07 08:18:45 smithi018 bash[59528]: ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mon-a 2024-09-07T08:18:45.483 DEBUG:teuthology.orchestra.run.smithi018:> sudo pkill -f 'journalctl -f -n 0 -u ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@mon.a.service' 2024-09-07T08:18:45.527 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-07T08:18:45.527 INFO:tasks.cephadm.mon.a:Stopped mon.a 2024-09-07T08:18:45.528 INFO:tasks.cephadm.mon.c:Stopping mon.b... 2024-09-07T08:18:45.528 DEBUG:teuthology.orchestra.run.smithi090:> sudo systemctl stop ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@mon.b 2024-09-07T08:18:45.822 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:45 smithi090 systemd[1]: Stopping Ceph mon.b for d3fad026-6cf0-11ef-bcea-c7b262605968... 2024-09-07T08:18:46.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:45 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mon-b[33256]: 2024-09-07T08:18:45.820+0000 7f58ad417640 -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-07T08:18:46.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:45 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mon-b[33256]: 2024-09-07T08:18:45.820+0000 7f58ad417640 -1 mon.b@1(peon) e4 *** Got Signal Terminated *** 2024-09-07T08:18:46.229 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:46 smithi090 podman[47981]: 2024-09-07 08:18:46.005255703 +0000 UTC m=+0.277148293 container died 37f591bda64cfa5483366b87841097c0269a03bbb168de484217e5394c035530 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mon-b, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, ceph=True, maintainer=Guillaume Abrioux , GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=) 2024-09-07T08:18:46.642 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:46 smithi090 podman[47981]: 2024-09-07 08:18:46.389752404 +0000 UTC m=+0.661645038 container cleanup 37f591bda64cfa5483366b87841097c0269a03bbb168de484217e5394c035530 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mon-b, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, GIT_CLEAN=True, ceph=True) 2024-09-07T08:18:46.642 INFO:journalctl@ceph.mon.b.smithi090.stdout:Sep 07 08:18:46 smithi090 bash[47981]: ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mon-b 2024-09-07T08:18:46.778 DEBUG:teuthology.orchestra.run.smithi090:> sudo pkill -f 'journalctl -f -n 0 -u ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@mon.b.service' 2024-09-07T08:18:46.818 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-07T08:18:46.819 INFO:tasks.cephadm.mon.c:Stopped mon.b 2024-09-07T08:18:46.819 INFO:tasks.cephadm.mon.c:Stopping mon.c... 2024-09-07T08:18:46.819 DEBUG:teuthology.orchestra.run.smithi191:> sudo systemctl stop ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@mon.c 2024-09-07T08:18:46.863 DEBUG:teuthology.orchestra.run.smithi191:> sudo pkill -f 'journalctl -f -n 0 -u ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@mon.c.service' 2024-09-07T08:18:47.011 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-07T08:18:47.012 INFO:tasks.cephadm.mon.c:Stopped mon.c 2024-09-07T08:18:47.012 INFO:tasks.cephadm.mgr.a:Stopping mgr.a... 2024-09-07T08:18:47.012 DEBUG:teuthology.orchestra.run.smithi018:> sudo systemctl stop ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@mgr.a 2024-09-07T08:18:47.306 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:18:47 smithi018 systemd[1]: Stopping Ceph mgr.a for d3fad026-6cf0-11ef-bcea-c7b262605968... 2024-09-07T08:18:47.607 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:18:47 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:18:47.303+0000 7fc416328640 -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-07T08:18:47.607 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:18:47 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a[30550]: 2024-09-07T08:18:47.303+0000 7fc416328640 -1 mgr handle_mgr_signal *** Got signal Terminated *** 2024-09-07T08:18:47.607 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:18:47 smithi018 podman[59652]: 2024-09-07 08:18:47.336099313 +0000 UTC m=+0.135657456 container died f4de2b916e673ad245a01bc52e125fb1cd8e8899549d51033fe927c142f14b6a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_CLEAN=True, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , ceph=True) 2024-09-07T08:18:47.956 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:18:47 smithi018 podman[59652]: 2024-09-07 08:18:47.679945714 +0000 UTC m=+0.479503856 container cleanup f4de2b916e673ad245a01bc52e125fb1cd8e8899549d51033fe927c142f14b6a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:03cef208dc8a39e0b8a1806b4763767a2ff62439, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , GIT_CLEAN=True, org.label-schema.vendor=CentOS, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True) 2024-09-07T08:18:47.956 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 07 08:18:47 smithi018 bash[59652]: ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-a 2024-09-07T08:18:48.163 DEBUG:teuthology.orchestra.run.smithi018:> sudo pkill -f 'journalctl -f -n 0 -u ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@mgr.a.service' 2024-09-07T08:18:48.197 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-07T08:18:48.197 INFO:tasks.cephadm.mgr.a:Stopped mgr.a 2024-09-07T08:18:48.197 INFO:tasks.cephadm.mgr.b:Stopping mgr.b... 2024-09-07T08:18:48.197 DEBUG:teuthology.orchestra.run.smithi090:> sudo systemctl stop ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@mgr.b 2024-09-07T08:18:48.479 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:18:48 smithi090 systemd[1]: Stopping Ceph mgr.b for d3fad026-6cf0-11ef-bcea-c7b262605968... 2024-09-07T08:18:48.814 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:18:48 smithi090 podman[48105]: 2024-09-07 08:18:48.526557077 +0000 UTC m=+0.131618200 container died 0882dc62174b49856213cd62d5a2212fb065079e1fd08b75b35f4f7d2b4c1994 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-b, org.label-schema.schema-version=1.0, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_CLEAN=True, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS) 2024-09-07T08:18:49.149 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:18:48 smithi090 podman[48105]: 2024-09-07 08:18:48.895459562 +0000 UTC m=+0.500520681 container cleanup 0882dc62174b49856213cd62d5a2212fb065079e1fd08b75b35f4f7d2b4c1994 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-b, ceph=True, CEPH_POINT_RELEASE=, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.vendor=CentOS) 2024-09-07T08:18:49.149 INFO:journalctl@ceph.mgr.b.smithi090.stdout:Sep 07 08:18:48 smithi090 bash[48105]: ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-mgr-b 2024-09-07T08:18:49.343 DEBUG:teuthology.orchestra.run.smithi090:> sudo pkill -f 'journalctl -f -n 0 -u ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@mgr.b.service' 2024-09-07T08:18:49.381 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-07T08:18:49.381 INFO:tasks.cephadm.mgr.b:Stopped mgr.b 2024-09-07T08:18:49.382 INFO:tasks.cephadm.osd.0:Stopping osd.0... 2024-09-07T08:18:49.382 DEBUG:teuthology.orchestra.run.smithi018:> sudo systemctl stop ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@osd.0 2024-09-07T08:18:49.685 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 07 08:18:49 smithi018 systemd[1]: Stopping Ceph osd.0 for d3fad026-6cf0-11ef-bcea-c7b262605968... 2024-09-07T08:18:49.956 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 07 08:18:49 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-0[44375]: 2024-09-07T08:18:49.682+0000 7f0a6f4b4640 -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-07T08:18:49.956 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 07 08:18:49 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-0[44375]: 2024-09-07T08:18:49.682+0000 7f0a6f4b4640 -1 osd.0 57 *** Got signal Terminated *** 2024-09-07T08:18:49.956 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 07 08:18:49 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-0[44375]: 2024-09-07T08:18:49.682+0000 7f0a6f4b4640 -1 osd.0 57 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-07T08:18:55.453 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 07 08:18:55 smithi018 podman[59773]: 2024-09-07 08:18:55.199018528 +0000 UTC m=+5.620191013 container died 5b0dc20f0220e47b1c659cd51605125a81bc0228ed25f4f31596ffc364e862cb (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-0, org.label-schema.schema-version=1.0, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_CLEAN=True, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS) 2024-09-07T08:18:55.706 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 07 08:18:55 smithi018 podman[59773]: 2024-09-07 08:18:55.608963418 +0000 UTC m=+6.030135894 container cleanup 5b0dc20f0220e47b1c659cd51605125a81bc0228ed25f4f31596ffc364e862cb (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-0, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, GIT_CLEAN=True, ceph=True, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7) 2024-09-07T08:18:55.706 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 07 08:18:55 smithi018 bash[59773]: ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-0 2024-09-07T08:18:56.145 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 07 08:18:55 smithi018 podman[59789]: 2024-09-07 08:18:55.843777902 +0000 UTC m=+0.642459348 container remove 5b0dc20f0220e47b1c659cd51605125a81bc0228ed25f4f31596ffc364e862cb (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-0, ceph=True, org.label-schema.schema-version=1.0, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, io.buildah.version=1.37.2, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, GIT_CLEAN=True, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-07T08:18:56.448 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 07 08:18:56 smithi018 podman[59877]: 2024-09-07 08:18:56.144466636 +0000 UTC m=+0.103745432 container create 36cf18e0bd5587fa2ae43f13284072ee5305044452ddae5ed75db4934637270e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-0-deactivate, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , ceph=True, org.label-schema.license=GPLv2, io.buildah.version=1.37.2, GIT_CLEAN=True, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7) 2024-09-07T08:18:56.448 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 07 08:18:56 smithi018 podman[59877]: 2024-09-07 08:18:56.056477164 +0000 UTC m=+0.015755917 image pull 6d221832e1054b498e2b9f082020222573577791586fe066468034523d6f813b quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055 2024-09-07T08:18:56.448 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 07 08:18:56 smithi018 podman[59877]: 2024-09-07 08:18:56.388698632 +0000 UTC m=+0.347977385 container init 36cf18e0bd5587fa2ae43f13284072ee5305044452ddae5ed75db4934637270e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-0-deactivate, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, ceph=True, GIT_CLEAN=True, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-07T08:18:56.448 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 07 08:18:56 smithi018 podman[59877]: 2024-09-07 08:18:56.391847031 +0000 UTC m=+0.351125792 container start 36cf18e0bd5587fa2ae43f13284072ee5305044452ddae5ed75db4934637270e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-0-deactivate, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, ceph=True, GIT_CLEAN=True, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, maintainer=Guillaume Abrioux ) 2024-09-07T08:18:56.448 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 07 08:18:56 smithi018 podman[59877]: 2024-09-07 08:18:56.446898574 +0000 UTC m=+0.406177332 container attach 36cf18e0bd5587fa2ae43f13284072ee5305044452ddae5ed75db4934637270e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-0-deactivate, maintainer=Guillaume Abrioux , GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, GIT_CLEAN=True, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD) 2024-09-07T08:18:56.708 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 07 08:18:56 smithi018 podman[59877]: 2024-09-07 08:18:56.582348461 +0000 UTC m=+0.541627222 container died 36cf18e0bd5587fa2ae43f13284072ee5305044452ddae5ed75db4934637270e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-0-deactivate, org.label-schema.license=GPLv2, GIT_CLEAN=True, io.buildah.version=1.37.2, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, ceph=True, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-07T08:18:57.306 DEBUG:teuthology.orchestra.run.smithi018:> sudo pkill -f 'journalctl -f -n 0 -u ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@osd.0.service' 2024-09-07T08:18:57.347 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-07T08:18:57.347 INFO:tasks.cephadm.osd.0:Stopped osd.0 2024-09-07T08:18:57.347 INFO:tasks.cephadm.osd.1:Stopping osd.1... 2024-09-07T08:18:57.347 DEBUG:teuthology.orchestra.run.smithi018:> sudo systemctl stop ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@osd.1 2024-09-07T08:18:57.581 INFO:journalctl@ceph.osd.1.smithi018.stdout:Sep 07 08:18:57 smithi018 systemd[1]: Stopping Ceph osd.1 for d3fad026-6cf0-11ef-bcea-c7b262605968... 2024-09-07T08:18:57.956 INFO:journalctl@ceph.osd.1.smithi018.stdout:Sep 07 08:18:57 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-1[50282]: 2024-09-07T08:18:57.728+0000 7f38441a8640 -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-07T08:18:57.956 INFO:journalctl@ceph.osd.1.smithi018.stdout:Sep 07 08:18:57 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-1[50282]: 2024-09-07T08:18:57.728+0000 7f38441a8640 -1 osd.1 57 *** Got signal Terminated *** 2024-09-07T08:18:57.956 INFO:journalctl@ceph.osd.1.smithi018.stdout:Sep 07 08:18:57 smithi018 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-1[50282]: 2024-09-07T08:18:57.728+0000 7f38441a8640 -1 osd.1 57 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-07T08:19:03.505 INFO:journalctl@ceph.osd.1.smithi018.stdout:Sep 07 08:19:03 smithi018 podman[59982]: 2024-09-07 08:19:03.234076995 +0000 UTC m=+5.629687980 container died 499bd530b6c6ea9fa9953e7418e65f8f11cbe056de610c23f8747f2be3991f64 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-1, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, ceph=True, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, GIT_CLEAN=True, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, io.buildah.version=1.37.2) 2024-09-07T08:19:03.814 INFO:journalctl@ceph.osd.1.smithi018.stdout:Sep 07 08:19:03 smithi018 podman[59982]: 2024-09-07 08:19:03.678480596 +0000 UTC m=+6.074091621 container cleanup 499bd530b6c6ea9fa9953e7418e65f8f11cbe056de610c23f8747f2be3991f64 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-1, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, GIT_CLEAN=True, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, ceph=True, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, io.buildah.version=1.37.2) 2024-09-07T08:19:03.814 INFO:journalctl@ceph.osd.1.smithi018.stdout:Sep 07 08:19:03 smithi018 bash[59982]: ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-1 2024-09-07T08:19:04.206 INFO:journalctl@ceph.osd.1.smithi018.stdout:Sep 07 08:19:03 smithi018 podman[60008]: 2024-09-07 08:19:03.81289254 +0000 UTC m=+0.573229263 container remove 499bd530b6c6ea9fa9953e7418e65f8f11cbe056de610c23f8747f2be3991f64 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-1, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, ceph=True, maintainer=Guillaume Abrioux , GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.build-date=20240731, GIT_CLEAN=True, GIT_BRANCH=HEAD) 2024-09-07T08:19:04.509 INFO:journalctl@ceph.osd.1.smithi018.stdout:Sep 07 08:19:04 smithi018 podman[60094]: 2024-09-07 08:19:04.117323504 +0000 UTC m=+0.015892337 image pull 6d221832e1054b498e2b9f082020222573577791586fe066468034523d6f813b quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055 2024-09-07T08:19:04.509 INFO:journalctl@ceph.osd.1.smithi018.stdout:Sep 07 08:19:04 smithi018 podman[60094]: 2024-09-07 08:19:04.22195414 +0000 UTC m=+0.120523000 container create 4d3cc6bf02ceed3f740f656504d71a8d671df4cf94ee41df1153a333eb24054d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-1-deactivate, org.label-schema.license=GPLv2, GIT_CLEAN=True, org.label-schema.build-date=20240731, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, ceph=True) 2024-09-07T08:19:04.509 INFO:journalctl@ceph.osd.1.smithi018.stdout:Sep 07 08:19:04 smithi018 podman[60094]: 2024-09-07 08:19:04.433072341 +0000 UTC m=+0.331641174 container init 4d3cc6bf02ceed3f740f656504d71a8d671df4cf94ee41df1153a333eb24054d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-1-deactivate, io.buildah.version=1.37.2, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, GIT_CLEAN=True) 2024-09-07T08:19:04.509 INFO:journalctl@ceph.osd.1.smithi018.stdout:Sep 07 08:19:04 smithi018 podman[60094]: 2024-09-07 08:19:04.436324036 +0000 UTC m=+0.334892858 container start 4d3cc6bf02ceed3f740f656504d71a8d671df4cf94ee41df1153a333eb24054d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-1-deactivate, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, io.buildah.version=1.37.2, ceph=True, org.label-schema.vendor=CentOS, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, GIT_CLEAN=True, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=) 2024-09-07T08:19:04.509 INFO:journalctl@ceph.osd.1.smithi018.stdout:Sep 07 08:19:04 smithi018 podman[60094]: 2024-09-07 08:19:04.507841216 +0000 UTC m=+0.406410040 container attach 4d3cc6bf02ceed3f740f656504d71a8d671df4cf94ee41df1153a333eb24054d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-1-deactivate, CEPH_POINT_RELEASE=, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_CLEAN=True, ceph=True, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.37.2, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2) 2024-09-07T08:19:04.911 INFO:journalctl@ceph.osd.1.smithi018.stdout:Sep 07 08:19:04 smithi018 podman[60094]: 2024-09-07 08:19:04.627728483 +0000 UTC m=+0.526297309 container died 4d3cc6bf02ceed3f740f656504d71a8d671df4cf94ee41df1153a333eb24054d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-1-deactivate, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, GIT_CLEAN=True, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, io.buildah.version=1.37.2, ceph=True) 2024-09-07T08:19:05.170 INFO:journalctl@ceph.osd.1.smithi018.stdout:Sep 07 08:19:05 smithi018 podman[60117]: 2024-09-07 08:19:05.15255471 +0000 UTC m=+0.518693705 container remove 4d3cc6bf02ceed3f740f656504d71a8d671df4cf94ee41df1153a333eb24054d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-1-deactivate, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, ceph=True, org.label-schema.license=GPLv2, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS) 2024-09-07T08:19:05.177 DEBUG:teuthology.orchestra.run.smithi018:> sudo pkill -f 'journalctl -f -n 0 -u ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@osd.1.service' 2024-09-07T08:19:05.218 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-07T08:19:05.218 INFO:tasks.cephadm.osd.1:Stopped osd.1 2024-09-07T08:19:05.219 INFO:tasks.cephadm.osd.2:Stopping osd.2... 2024-09-07T08:19:05.219 DEBUG:teuthology.orchestra.run.smithi090:> sudo systemctl stop ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@osd.2 2024-09-07T08:19:05.504 INFO:journalctl@ceph.osd.2.smithi090.stdout:Sep 07 08:19:05 smithi090 systemd[1]: Stopping Ceph osd.2 for d3fad026-6cf0-11ef-bcea-c7b262605968... 2024-09-07T08:19:05.979 INFO:journalctl@ceph.osd.2.smithi090.stdout:Sep 07 08:19:05 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-2[37416]: 2024-09-07T08:19:05.501+0000 7f591ca4e640 -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-07T08:19:05.979 INFO:journalctl@ceph.osd.2.smithi090.stdout:Sep 07 08:19:05 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-2[37416]: 2024-09-07T08:19:05.501+0000 7f591ca4e640 -1 osd.2 57 *** Got signal Terminated *** 2024-09-07T08:19:05.979 INFO:journalctl@ceph.osd.2.smithi090.stdout:Sep 07 08:19:05 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-2[37416]: 2024-09-07T08:19:05.501+0000 7f591ca4e640 -1 osd.2 57 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-07T08:19:11.229 INFO:journalctl@ceph.osd.2.smithi090.stdout:Sep 07 08:19:10 smithi090 podman[48241]: 2024-09-07 08:19:10.935168149 +0000 UTC m=+5.528215556 container died fce7b44fca73e172ec4389f6af662f8afbdf839663841a99d70398b8f1cc85ab (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-2, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, ceph=True, GIT_BRANCH=HEAD, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0) 2024-09-07T08:19:11.564 INFO:journalctl@ceph.osd.2.smithi090.stdout:Sep 07 08:19:11 smithi090 podman[48241]: 2024-09-07 08:19:11.302849167 +0000 UTC m=+5.895896569 container cleanup fce7b44fca73e172ec4389f6af662f8afbdf839663841a99d70398b8f1cc85ab (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-2, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, ceph=True, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, GIT_CLEAN=True, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS) 2024-09-07T08:19:11.564 INFO:journalctl@ceph.osd.2.smithi090.stdout:Sep 07 08:19:11 smithi090 bash[48241]: ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-2 2024-09-07T08:19:11.916 INFO:journalctl@ceph.osd.2.smithi090.stdout:Sep 07 08:19:11 smithi090 podman[48258]: 2024-09-07 08:19:11.562830949 +0000 UTC m=+0.626107426 container remove fce7b44fca73e172ec4389f6af662f8afbdf839663841a99d70398b8f1cc85ab (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-2, CEPH_POINT_RELEASE=, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, GIT_CLEAN=True, org.label-schema.build-date=20240731, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0) 2024-09-07T08:19:12.177 INFO:journalctl@ceph.osd.2.smithi090.stdout:Sep 07 08:19:11 smithi090 podman[48344]: 2024-09-07 08:19:11.915232869 +0000 UTC m=+0.109899313 container create 43d552cbbfd01cfe2e57534e3a24a6fed8bdcb17d73b0866a6ac49748b778032 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-2-deactivate, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, ceph=True) 2024-09-07T08:19:12.177 INFO:journalctl@ceph.osd.2.smithi090.stdout:Sep 07 08:19:11 smithi090 podman[48344]: 2024-09-07 08:19:11.820907282 +0000 UTC m=+0.015573698 image pull 6d221832e1054b498e2b9f082020222573577791586fe066468034523d6f813b quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055 2024-09-07T08:19:12.177 INFO:journalctl@ceph.osd.2.smithi090.stdout:Sep 07 08:19:12 smithi090 podman[48344]: 2024-09-07 08:19:12.101267877 +0000 UTC m=+0.295934279 container init 43d552cbbfd01cfe2e57534e3a24a6fed8bdcb17d73b0866a6ac49748b778032 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-2-deactivate, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, org.label-schema.schema-version=1.0, io.buildah.version=1.37.2, ceph=True, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, GIT_CLEAN=True, CEPH_POINT_RELEASE=) 2024-09-07T08:19:12.177 INFO:journalctl@ceph.osd.2.smithi090.stdout:Sep 07 08:19:12 smithi090 podman[48344]: 2024-09-07 08:19:12.104674852 +0000 UTC m=+0.299341278 container start 43d552cbbfd01cfe2e57534e3a24a6fed8bdcb17d73b0866a6ac49748b778032 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-2-deactivate, CEPH_POINT_RELEASE=, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, io.buildah.version=1.37.2, ceph=True, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731) 2024-09-07T08:19:12.177 INFO:journalctl@ceph.osd.2.smithi090.stdout:Sep 07 08:19:12 smithi090 podman[48344]: 2024-09-07 08:19:12.17616177 +0000 UTC m=+0.370828180 container attach 43d552cbbfd01cfe2e57534e3a24a6fed8bdcb17d73b0866a6ac49748b778032 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-2-deactivate, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, GIT_CLEAN=True, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.license=GPLv2, ceph=True, org.label-schema.build-date=20240731, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS) 2024-09-07T08:19:12.480 INFO:journalctl@ceph.osd.2.smithi090.stdout:Sep 07 08:19:12 smithi090 podman[48344]: 2024-09-07 08:19:12.295374339 +0000 UTC m=+0.490040757 container died 43d552cbbfd01cfe2e57534e3a24a6fed8bdcb17d73b0866a6ac49748b778032 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-2-deactivate, ceph=True, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20) 2024-09-07T08:19:12.797 DEBUG:teuthology.orchestra.run.smithi090:> sudo pkill -f 'journalctl -f -n 0 -u ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@osd.2.service' 2024-09-07T08:19:12.835 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-07T08:19:12.836 INFO:tasks.cephadm.osd.2:Stopped osd.2 2024-09-07T08:19:12.836 INFO:tasks.cephadm.osd.3:Stopping osd.3... 2024-09-07T08:19:12.836 DEBUG:teuthology.orchestra.run.smithi090:> sudo systemctl stop ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@osd.3 2024-09-07T08:19:13.152 INFO:journalctl@ceph.osd.3.smithi090.stdout:Sep 07 08:19:12 smithi090 systemd[1]: Stopping Ceph osd.3 for d3fad026-6cf0-11ef-bcea-c7b262605968... 2024-09-07T08:19:13.479 INFO:journalctl@ceph.osd.3.smithi090.stdout:Sep 07 08:19:13 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-3[42870]: 2024-09-07T08:19:13.149+0000 7fde3032b640 -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-07T08:19:13.479 INFO:journalctl@ceph.osd.3.smithi090.stdout:Sep 07 08:19:13 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-3[42870]: 2024-09-07T08:19:13.149+0000 7fde3032b640 -1 osd.3 57 *** Got signal Terminated *** 2024-09-07T08:19:13.479 INFO:journalctl@ceph.osd.3.smithi090.stdout:Sep 07 08:19:13 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-3[42870]: 2024-09-07T08:19:13.149+0000 7fde3032b640 -1 osd.3 57 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-07T08:19:18.182 INFO:journalctl@ceph.osd.3.smithi090.stdout:Sep 07 08:19:17 smithi090 ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-3[42870]: 2024-09-07T08:19:17.767+0000 7fde28937640 -1 osd.3 57 heartbeat_check: no reply from 172.21.15.18:6806 osd.0 since back 2024-09-07T08:18:54.660676+0000 front 2024-09-07T08:18:54.660717+0000 (oldest deadline 2024-09-07T08:19:17.560594+0000) 2024-09-07T08:19:18.837 INFO:journalctl@ceph.osd.3.smithi090.stdout:Sep 07 08:19:18 smithi090 podman[48448]: 2024-09-07 08:19:18.580902028 +0000 UTC m=+5.528837364 container died 077d12f4db2edbd55f163619e3bad0919aa002a79b941c14094480a688f323f9 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-3, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, GIT_CLEAN=True, maintainer=Guillaume Abrioux , GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, ceph=True) 2024-09-07T08:19:19.188 INFO:journalctl@ceph.osd.3.smithi090.stdout:Sep 07 08:19:18 smithi090 podman[48448]: 2024-09-07 08:19:18.985556888 +0000 UTC m=+5.933492222 container cleanup 077d12f4db2edbd55f163619e3bad0919aa002a79b941c14094480a688f323f9 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-3, ceph=True, maintainer=Guillaume Abrioux , RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, org.label-schema.license=GPLv2) 2024-09-07T08:19:19.231 INFO:journalctl@ceph.osd.3.smithi090.stdout:Sep 07 08:19:18 smithi090 bash[48448]: ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-3 2024-09-07T08:19:19.479 INFO:journalctl@ceph.osd.3.smithi090.stdout:Sep 07 08:19:19 smithi090 podman[48477]: 2024-09-07 08:19:19.186988033 +0000 UTC m=+0.598835635 container remove 077d12f4db2edbd55f163619e3bad0919aa002a79b941c14094480a688f323f9 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-3, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, GIT_CLEAN=True, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, ceph=True, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, CEPH_POINT_RELEASE=) 2024-09-07T08:19:19.791 INFO:journalctl@ceph.osd.3.smithi090.stdout:Sep 07 08:19:19 smithi090 podman[48563]: 2024-09-07 08:19:19.488037871 +0000 UTC m=+0.103619008 container create 5e19adc4b8ab089389db02372b1943d1e156bad7e7197c1fdb405f1cca2cc040 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-3-deactivate, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, io.buildah.version=1.37.2, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD) 2024-09-07T08:19:19.792 INFO:journalctl@ceph.osd.3.smithi090.stdout:Sep 07 08:19:19 smithi090 podman[48563]: 2024-09-07 08:19:19.400065275 +0000 UTC m=+0.015646383 image pull 6d221832e1054b498e2b9f082020222573577791586fe066468034523d6f813b quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055 2024-09-07T08:19:19.792 INFO:journalctl@ceph.osd.3.smithi090.stdout:Sep 07 08:19:19 smithi090 podman[48563]: 2024-09-07 08:19:19.707287081 +0000 UTC m=+0.322868183 container init 5e19adc4b8ab089389db02372b1943d1e156bad7e7197c1fdb405f1cca2cc040 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-3-deactivate, org.label-schema.license=GPLv2, io.buildah.version=1.37.2, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, GIT_CLEAN=True, CEPH_POINT_RELEASE=) 2024-09-07T08:19:19.792 INFO:journalctl@ceph.osd.3.smithi090.stdout:Sep 07 08:19:19 smithi090 podman[48563]: 2024-09-07 08:19:19.710452739 +0000 UTC m=+0.326033823 container start 5e19adc4b8ab089389db02372b1943d1e156bad7e7197c1fdb405f1cca2cc040 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-3-deactivate, org.label-schema.build-date=20240731, io.buildah.version=1.37.2, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.schema-version=1.0, ceph=True, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux ) 2024-09-07T08:19:19.792 INFO:journalctl@ceph.osd.3.smithi090.stdout:Sep 07 08:19:19 smithi090 podman[48563]: 2024-09-07 08:19:19.790694738 +0000 UTC m=+0.406275842 container attach 5e19adc4b8ab089389db02372b1943d1e156bad7e7197c1fdb405f1cca2cc040 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-3-deactivate, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, GIT_CLEAN=True, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240731, ceph=True, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20) 2024-09-07T08:19:20.188 INFO:journalctl@ceph.osd.3.smithi090.stdout:Sep 07 08:19:19 smithi090 podman[48563]: 2024-09-07 08:19:19.903928827 +0000 UTC m=+0.519509920 container died 5e19adc4b8ab089389db02372b1943d1e156bad7e7197c1fdb405f1cca2cc040 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-3-deactivate, GIT_CLEAN=True, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7) 2024-09-07T08:19:20.445 INFO:journalctl@ceph.osd.3.smithi090.stdout:Sep 07 08:19:20 smithi090 podman[48586]: 2024-09-07 08:19:20.429210211 +0000 UTC m=+0.518996271 container remove 5e19adc4b8ab089389db02372b1943d1e156bad7e7197c1fdb405f1cca2cc040 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:27b28daef2a9981fa5d291d39fa88f503c69d52f5ef38f6d099f811c4d38e055, name=ceph-d3fad026-6cf0-11ef-bcea-c7b262605968-osd-3-deactivate, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=wip-guits-reef-2024-09-06-1902-03cef20, ceph=True, io.buildah.version=1.37.2, GIT_CLEAN=True, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-07T08:19:20.450 DEBUG:teuthology.orchestra.run.smithi090:> sudo pkill -f 'journalctl -f -n 0 -u ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@osd.3.service' 2024-09-07T08:19:20.487 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-07T08:19:20.487 INFO:tasks.cephadm.osd.3:Stopped osd.3 2024-09-07T08:19:20.487 INFO:tasks.cephadm.osd.4:Stopping osd.4... 2024-09-07T08:19:20.488 DEBUG:teuthology.orchestra.run.smithi191:> sudo systemctl stop ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@osd.4 2024-09-07T08:19:20.533 DEBUG:teuthology.orchestra.run.smithi191:> sudo pkill -f 'journalctl -f -n 0 -u ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@osd.4.service' 2024-09-07T08:19:20.571 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-07T08:19:20.572 INFO:tasks.cephadm.osd.4:Stopped osd.4 2024-09-07T08:19:20.572 INFO:tasks.cephadm.osd.5:Stopping osd.5... 2024-09-07T08:19:20.572 DEBUG:teuthology.orchestra.run.smithi191:> sudo systemctl stop ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@osd.5 2024-09-07T08:19:20.650 DEBUG:teuthology.orchestra.run.smithi191:> sudo pkill -f 'journalctl -f -n 0 -u ceph-d3fad026-6cf0-11ef-bcea-c7b262605968@osd.5.service' 2024-09-07T08:19:20.723 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-07T08:19:20.723 INFO:tasks.cephadm.osd.5:Stopped osd.5 2024-09-07T08:19:20.723 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 --force --keep-logs 2024-09-07T08:19:20.880 INFO:teuthology.orchestra.run.smithi018.stdout:Deleting cluster with fsid: d3fad026-6cf0-11ef-bcea-c7b262605968 2024-09-07T08:19:22.015 DEBUG:teuthology.orchestra.run.smithi090:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 --force --keep-logs 2024-09-07T08:19:22.166 INFO:teuthology.orchestra.run.smithi090.stdout:Deleting cluster with fsid: d3fad026-6cf0-11ef-bcea-c7b262605968 2024-09-07T08:19:23.369 DEBUG:teuthology.orchestra.run.smithi191:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 --force --keep-logs 2024-09-07T08:19:23.521 INFO:teuthology.orchestra.run.smithi191.stdout:Deleting cluster with fsid: d3fad026-6cf0-11ef-bcea-c7b262605968 2024-09-07T08:19:23.995 DEBUG:teuthology.orchestra.run.smithi018:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-07T08:19:24.027 DEBUG:teuthology.orchestra.run.smithi090:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-07T08:19:24.056 DEBUG:teuthology.orchestra.run.smithi191:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-07T08:19:24.082 INFO:tasks.cephadm:Archiving crash dumps... 2024-09-07T08:19:24.084 DEBUG:teuthology.misc:Transferring archived files from smithi018:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/crash to /home/teuthworker/archive/gabrioux-2024-09-07_07:25:09-orch:cephadm-wip-guits-reef-2024-09-06-1902-distro-default-smithi/7893493/remote/smithi018/crash 2024-09-07T08:19:24.085 DEBUG:teuthology.orchestra.run.smithi018:> sudo tar c -f - -C /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/crash -- . 2024-09-07T08:19:24.221 INFO:teuthology.orchestra.run.smithi018.stderr:tar: /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/crash: Cannot open: No such file or directory 2024-09-07T08:19:24.221 INFO:teuthology.orchestra.run.smithi018.stderr:tar: Error is not recoverable: exiting now 2024-09-07T08:19:24.223 DEBUG:teuthology.misc:Transferring archived files from smithi090:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/crash to /home/teuthworker/archive/gabrioux-2024-09-07_07:25:09-orch:cephadm-wip-guits-reef-2024-09-06-1902-distro-default-smithi/7893493/remote/smithi090/crash 2024-09-07T08:19:24.359 DEBUG:teuthology.orchestra.run.smithi090:> sudo tar c -f - -C /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/crash -- . 2024-09-07T08:19:24.400 INFO:teuthology.orchestra.run.smithi090.stderr:tar: /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/crash: Cannot open: No such file or directory 2024-09-07T08:19:24.400 INFO:teuthology.orchestra.run.smithi090.stderr:tar: Error is not recoverable: exiting now 2024-09-07T08:19:24.470 DEBUG:teuthology.misc:Transferring archived files from smithi191:/var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/crash to /home/teuthworker/archive/gabrioux-2024-09-07_07:25:09-orch:cephadm-wip-guits-reef-2024-09-06-1902-distro-default-smithi/7893493/remote/smithi191/crash 2024-09-07T08:19:24.507 DEBUG:teuthology.orchestra.run.smithi191:> sudo tar c -f - -C /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/crash -- . 2024-09-07T08:19:24.547 INFO:teuthology.orchestra.run.smithi191.stderr:tar: /var/lib/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/crash: Cannot open: No such file or directory 2024-09-07T08:19:24.547 INFO:teuthology.orchestra.run.smithi191.stderr:tar: Error is not recoverable: exiting now 2024-09-07T08:19:24.548 INFO:tasks.cephadm:Checking cluster log for badness... 2024-09-07T08:19:24.548 DEBUG:teuthology.orchestra.run.smithi018:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/ceph.log | 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-07T08:19:24.580 INFO:teuthology.orchestra.run.smithi018.stderr:grep: /var/log/ceph/d3fad026-6cf0-11ef-bcea-c7b262605968/ceph.log: No such file or directory 2024-09-07T08:19:24.582 INFO:tasks.cephadm:Compressing logs... 2024-09-07T08:19:24.582 DEBUG:teuthology.orchestra.run.smithi018:> sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-07T08:19:24.625 DEBUG:teuthology.orchestra.run.smithi090:> sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-07T08:19:24.628 DEBUG:teuthology.orchestra.run.smithi191:> sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-07T08:19:24.650 INFO:teuthology.orchestra.run.smithi018.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2024-09-07T08:19:24.654 INFO:teuthology.orchestra.run.smithi191.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2024-09-07T08:19:24.655 INFO:teuthology.orchestra.run.smithi090.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2024-09-07T08:19:25.094 INFO:tasks.cephadm:Archiving logs... 2024-09-07T08:19:25.095 DEBUG:teuthology.misc:Transferring archived files from smithi018:/var/log/ceph to /home/teuthworker/archive/gabrioux-2024-09-07_07:25:09-orch:cephadm-wip-guits-reef-2024-09-06-1902-distro-default-smithi/7893493/remote/smithi018/log 2024-09-07T08:19:25.096 DEBUG:teuthology.orchestra.run.smithi018:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-07T08:19:25.228 DEBUG:teuthology.misc:Transferring archived files from smithi090:/var/log/ceph to /home/teuthworker/archive/gabrioux-2024-09-07_07:25:09-orch:cephadm-wip-guits-reef-2024-09-06-1902-distro-default-smithi/7893493/remote/smithi090/log 2024-09-07T08:19:25.229 DEBUG:teuthology.orchestra.run.smithi090:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-07T08:19:25.288 DEBUG:teuthology.misc:Transferring archived files from smithi191:/var/log/ceph to /home/teuthworker/archive/gabrioux-2024-09-07_07:25:09-orch:cephadm-wip-guits-reef-2024-09-06-1902-distro-default-smithi/7893493/remote/smithi191/log 2024-09-07T08:19:25.289 DEBUG:teuthology.orchestra.run.smithi191:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-07T08:19:25.332 INFO:tasks.cephadm:Removing cluster... 2024-09-07T08:19:25.333 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 --force 2024-09-07T08:19:25.473 INFO:teuthology.orchestra.run.smithi018.stdout:Deleting cluster with fsid: d3fad026-6cf0-11ef-bcea-c7b262605968 2024-09-07T08:19:25.738 DEBUG:teuthology.orchestra.run.smithi090:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 --force 2024-09-07T08:19:25.880 INFO:teuthology.orchestra.run.smithi090.stdout:Deleting cluster with fsid: d3fad026-6cf0-11ef-bcea-c7b262605968 2024-09-07T08:19:26.151 DEBUG:teuthology.orchestra.run.smithi191:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid d3fad026-6cf0-11ef-bcea-c7b262605968 --force 2024-09-07T08:19:26.300 INFO:teuthology.orchestra.run.smithi191.stdout:Deleting cluster with fsid: d3fad026-6cf0-11ef-bcea-c7b262605968 2024-09-07T08:19:26.557 INFO:tasks.cephadm:Removing cephadm ... 2024-09-07T08:19:26.557 DEBUG:teuthology.orchestra.run.smithi018:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-07T08:19:26.575 DEBUG:teuthology.orchestra.run.smithi090:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-07T08:19:26.591 DEBUG:teuthology.orchestra.run.smithi191:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-07T08:19:26.606 INFO:tasks.cephadm:Teardown complete 2024-09-07T08:19:26.607 DEBUG:teuthology.run_tasks:Unwinding manager install 2024-09-07T08:19:26.618 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-07T08:19:26.619 DEBUG:teuthology.orchestra.run.smithi018:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-07T08:19:26.621 DEBUG:teuthology.orchestra.run.smithi090:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-07T08:19:26.634 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-07T08:19:26.755 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-09-07T08:19:26.764 INFO:teuthology.task.clock:Checking final clock skew... 2024-09-07T08:19:26.764 DEBUG:teuthology.orchestra.run.smithi018:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-07T08:19:26.766 DEBUG:teuthology.orchestra.run.smithi090:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-07T08:19:26.769 DEBUG:teuthology.orchestra.run.smithi191:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-07T08:19:26.781 INFO:teuthology.orchestra.run.smithi090.stderr:bash: line 1: ntpq: command not found 2024-09-07T08:19:26.781 INFO:teuthology.orchestra.run.smithi018.stderr:bash: line 1: ntpq: command not found 2024-09-07T08:19:26.783 INFO:teuthology.orchestra.run.smithi191.stderr:bash: line 1: ntpq: command not found 2024-09-07T08:19:26.786 INFO:teuthology.orchestra.run.smithi090.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-07T08:19:26.786 INFO:teuthology.orchestra.run.smithi090.stdout:=============================================================================== 2024-09-07T08:19:26.786 INFO:teuthology.orchestra.run.smithi090.stdout:^* hv01.front.sepia.ceph.com 3 6 377 8 +479us[ +495us] +/- 49ms 2024-09-07T08:19:26.786 INFO:teuthology.orchestra.run.smithi090.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 7 -905us[ -905us] +/- 56ms 2024-09-07T08:19:26.786 INFO:teuthology.orchestra.run.smithi090.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 8 +608us[ +608us] +/- 81ms 2024-09-07T08:19:26.786 INFO:teuthology.orchestra.run.smithi090.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-07T08:19:26.787 INFO:teuthology.orchestra.run.smithi018.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-07T08:19:26.787 INFO:teuthology.orchestra.run.smithi018.stdout:=============================================================================== 2024-09-07T08:19:26.787 INFO:teuthology.orchestra.run.smithi018.stdout:^* hv01.front.sepia.ceph.com 3 6 377 10 +471us[ +481us] +/- 49ms 2024-09-07T08:19:26.787 INFO:teuthology.orchestra.run.smithi018.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 8 -910us[ -910us] +/- 56ms 2024-09-07T08:19:26.787 INFO:teuthology.orchestra.run.smithi018.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 7 +615us[ +615us] +/- 81ms 2024-09-07T08:19:26.787 INFO:teuthology.orchestra.run.smithi018.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-07T08:19:26.788 INFO:teuthology.orchestra.run.smithi191.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-07T08:19:26.788 INFO:teuthology.orchestra.run.smithi191.stdout:=============================================================================== 2024-09-07T08:19:26.788 INFO:teuthology.orchestra.run.smithi191.stdout:^* hv01.front.sepia.ceph.com 3 6 377 6 +473us[ +495us] +/- 49ms 2024-09-07T08:19:26.788 INFO:teuthology.orchestra.run.smithi191.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 10 -926us[ -904us] +/- 56ms 2024-09-07T08:19:26.788 INFO:teuthology.orchestra.run.smithi191.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 7 +599us[ +621us] +/- 81ms 2024-09-07T08:19:26.788 INFO:teuthology.orchestra.run.smithi191.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-07T08:19:26.789 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-09-07T08:19:26.797 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-09-07T08:19:26.798 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-09-07T08:19:26.839 DEBUG:teuthology.orchestra.run.smithi018:> 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-07T08:19:26.914 DEBUG:teuthology.orchestra.run.smithi090:> 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-07T08:19:26.977 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-07T08:19:27.041 DEBUG:teuthology.orchestra.run.smithi018:> 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 2024-09-07T08:19:27.073 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-07T08:19:27.073 DEBUG:teuthology.orchestra.run.smithi090:> 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 2024-09-07T08:19:27.101 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-07T08:19:27.101 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 2024-09-07T08:19:27.129 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-07T08:19:27.129 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-09-07T08:19:27.140 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-09-07T08:19:27.184 INFO:teuthology.task.internal:Duration was 820.247151 seconds 2024-09-07T08:19:27.184 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-09-07T08:19:27.223 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-09-07T08:19:27.223 DEBUG:teuthology.orchestra.run.smithi018:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-07T08:19:27.225 DEBUG:teuthology.orchestra.run.smithi090:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-07T08:19:27.228 DEBUG:teuthology.orchestra.run.smithi191:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-07T08:19:27.262 INFO:teuthology.orchestra.run.smithi018.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-07T08:19:27.264 INFO:teuthology.orchestra.run.smithi090.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-07T08:19:27.266 INFO:teuthology.orchestra.run.smithi191.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-07T08:19:27.767 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-09-07T08:19:27.767 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi018.front.sepia.ceph.com 2024-09-07T08:19:27.768 DEBUG:teuthology.orchestra.run.smithi018:> 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-07T08:19:27.789 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi090.front.sepia.ceph.com 2024-09-07T08:19:27.789 DEBUG:teuthology.orchestra.run.smithi090:> 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-07T08:19:27.833 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi191.front.sepia.ceph.com 2024-09-07T08:19:27.833 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-07T08:19:27.854 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-09-07T08:19:27.854 DEBUG:teuthology.orchestra.run.smithi018:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-07T08:19:27.856 DEBUG:teuthology.orchestra.run.smithi090:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-07T08:19:27.876 DEBUG:teuthology.orchestra.run.smithi191:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-07T08:19:27.921 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-09-07T08:19:27.922 DEBUG:teuthology.orchestra.run.smithi018:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-07T08:19:27.925 DEBUG:teuthology.orchestra.run.smithi090:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-07T08:19:27.943 DEBUG:teuthology.orchestra.run.smithi191:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-07T08:19:28.115 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-09-07T08:19:28.124 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-09-07T08:19:28.125 DEBUG:teuthology.orchestra.run.smithi018:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-07T08:19:28.149 DEBUG:teuthology.orchestra.run.smithi090:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-07T08:19:28.174 DEBUG:teuthology.orchestra.run.smithi191:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-07T08:19:28.199 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-09-07T08:19:28.208 DEBUG:teuthology.orchestra.run.smithi018:> 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-07T08:19:28.210 DEBUG:teuthology.orchestra.run.smithi090:> 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-07T08:19:28.218 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-07T08:19:28.230 INFO:teuthology.orchestra.run.smithi018.stdout:kernel.core_pattern = core 2024-09-07T08:19:28.240 INFO:teuthology.orchestra.run.smithi090.stdout:kernel.core_pattern = core 2024-09-07T08:19:28.261 INFO:teuthology.orchestra.run.smithi191.stdout:kernel.core_pattern = core 2024-09-07T08:19:28.277 DEBUG:teuthology.orchestra.run.smithi018:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-07T08:19:28.312 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-07T08:19:28.313 DEBUG:teuthology.orchestra.run.smithi090:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-07T08:19:28.327 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-07T08:19:28.328 DEBUG:teuthology.orchestra.run.smithi191:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-07T08:19:28.342 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-07T08:19:28.342 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-09-07T08:19:28.352 INFO:teuthology.task.internal:Transferring archived files... 2024-09-07T08:19:28.353 DEBUG:teuthology.misc:Transferring archived files from smithi018:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/gabrioux-2024-09-07_07:25:09-orch:cephadm-wip-guits-reef-2024-09-06-1902-distro-default-smithi/7893493/remote/smithi018 2024-09-07T08:19:28.353 DEBUG:teuthology.orchestra.run.smithi018:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-07T08:19:28.390 DEBUG:teuthology.misc:Transferring archived files from smithi090:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/gabrioux-2024-09-07_07:25:09-orch:cephadm-wip-guits-reef-2024-09-06-1902-distro-default-smithi/7893493/remote/smithi090 2024-09-07T08:19:28.390 DEBUG:teuthology.orchestra.run.smithi090:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-07T08:19:28.425 DEBUG:teuthology.misc:Transferring archived files from smithi191:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/gabrioux-2024-09-07_07:25:09-orch:cephadm-wip-guits-reef-2024-09-06-1902-distro-default-smithi/7893493/remote/smithi191 2024-09-07T08:19:28.425 DEBUG:teuthology.orchestra.run.smithi191:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-07T08:19:28.459 INFO:teuthology.task.internal:Removing archive directory... 2024-09-07T08:19:28.459 DEBUG:teuthology.orchestra.run.smithi018:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-07T08:19:28.462 DEBUG:teuthology.orchestra.run.smithi090:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-07T08:19:28.464 DEBUG:teuthology.orchestra.run.smithi191:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-07T08:19:28.509 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-09-07T08:19:28.519 INFO:teuthology.task.internal:Not uploading archives. 2024-09-07T08:19:28.519 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-09-07T08:19:28.549 INFO:teuthology.task.internal:Tidying up after the test... 2024-09-07T08:19:28.549 DEBUG:teuthology.orchestra.run.smithi018:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-07T08:19:28.551 DEBUG:teuthology.orchestra.run.smithi090:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-07T08:19:28.554 DEBUG:teuthology.orchestra.run.smithi191:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-07T08:19:28.563 INFO:teuthology.orchestra.run.smithi018.stdout: 262217 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 7 08:19 /home/ubuntu/cephtest 2024-09-07T08:19:28.566 INFO:teuthology.orchestra.run.smithi090.stdout: 262217 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 7 08:19 /home/ubuntu/cephtest 2024-09-07T08:19:28.568 INFO:teuthology.orchestra.run.smithi191.stdout: 262217 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 7 08:19 /home/ubuntu/cephtest 2024-09-07T08:19:28.570 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-09-07T08:19:28.622 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-09-07T08:19:28.693 INFO:teuthology.run:Summary data: description: orch:cephadm/workunits/{0-distro/centos_9.stream agent/off mon_election/classic task/test_host_drain} duration: 820.2471508979797 flavor: default owner: scheduled_gabrioux@teuthology success: true 2024-09-07T08:19:28.693 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-07T08:19:28.783 INFO:teuthology.run:pass