2024-09-17T07:55:56.129 INFO:root:teuthology version: 1.2.2.dev2+g3752d38 2024-09-17T07:55:56.144 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-17T07:55:56.226 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908188 branch: reef description: orch/cephadm/workunits/{0-distro/centos_9.stream agent/off mon_election/classic task/test_host_drain} email: ceph-qa@ceph.com first_in_suite: false job_id: '7908188' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi no_nested_subset: false os_type: centos os_version: 9.stream overrides: admin_socket: branch: reef 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: 19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 selinux: whitelist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: reef sha1: 1cbdc9211df088cccbd94423c7cf3a2b85fe432b owner: scheduled_teuthology@teuthology priority: 930 repo: https://git.ceph.com/ceph.git roles: - - host.a - mon.a - mgr.a - osd.0 - osd.1 - - host.b - mon.b - mgr.b - osd.2 - osd.3 - - host.c - mon.c - osd.4 - osd.5 seed: 5234 sha1: 19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 sleep_before_teardown: 0 subset: 46/64 suite: orch suite_branch: reef suite_path: /home/teuthworker/src/git.ceph.com_ceph_1cbdc9211df088cccbd94423c7cf3a2b85fe432b/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: 1cbdc9211df088cccbd94423c7cf3a2b85fe432b targets: smithi044.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLioh9QCnCKs6QF/aw7VygAZFaMlRv5SO3al/sbVAgeCsqhAE0F82CavcWSwVCO+Dh7mSm5qk+oHzlKDnva8ZSU= smithi145.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBKdqeDa5RBDbg+ktj11BfmcECui+ZOTHyldIhBydyAQRhOv24ejGJ8VMfQg7DrjxUT1X2YVBlFmxta/wCbxurvA= smithi152.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFODo6ifLP21/jkABGfyiO182x0HJ4MDP4/6WowVS432Ph5uHQDLQC6sr32R8Rwkw9280eFVGaPyHPnaJK0WweM= tasks: - pexec: all: - sudo dnf remove nvme-cli -y - sudo dnf install nvmetcli nvme-cli -y - install: null - cephadm: null - cephadm.shell: host.a: - "set -ex\nHOSTNAMES=$(ceph orch host ls --format json | jq -r '.[] | .hostname')\n\ for host in $HOSTNAMES; do\n # find the hostname for \"host.c\" which will\ \ have no mgr\n HAS_MGRS=$(ceph orch ps --hostname ${host} --format json |\ \ jq 'any(.daemon_type == \"mgr\")')\n if [ \"$HAS_MGRS\" == \"false\" ]; then\n\ \ HOST_C=\"${host}\"\n fi\ndone\n# One last thing to worry about before\ \ draining the host\n# is that the teuthology test tends to put the explicit\n\ # hostnames in the placement for the mon service.\n# We want to make sure we\ \ can drain without providing\n# --force and there is a check for the host being\ \ removed\n# being listed explicitly in the placements. Therefore,\n# we should\ \ remove it from the mon placement.\nceph orch ls mon --export > mon.yaml\n\ sed /\"$HOST_C\"/d mon.yaml > mon_adjusted.yaml\nceph orch apply -i mon_adjusted.yaml\n\ # now drain that host\nceph orch host drain $HOST_C --zap-osd-devices\n# wait\ \ for drain to complete\nHOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C)\n\ while [ \"$HOST_C_DAEMONS\" != \"No daemons reported\" ]; do\n sleep 15\n \ \ HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C)\ndone\n# we want to check\ \ the ability to remove the host from\n# the CRUSH map, so we should first verify\ \ the host is in\n# the CRUSH map.\nceph osd getcrushmap -o compiled-crushmap\n\ crushtool -d compiled-crushmap -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\n\ if ! grep -q \"$HOST_C\" <<< \"$CRUSH_MAP\"; then\n printf \"Expected to see\ \ $HOST_C in CRUSH map. Saw:\\n\\n$CRUSH_MAP\"\n exit 1\nfi\n# If the drain\ \ was successful, we should be able to remove the\n# host without force with\ \ no issues. If there are still daemons\n# we will get a response telling us\ \ to drain the host and a\n# non-zero return code\nceph orch host rm $HOST_C\ \ --rm-crush-entry\n# verify we've successfully removed the host from the CRUSH\ \ map\nsleep 30\nceph osd getcrushmap -o compiled-crushmap\ncrushtool -d compiled-crushmap\ \ -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\nif grep -q \"$HOST_C\" <<<\ \ \"$CRUSH_MAP\"; then\n printf \"Saw $HOST_C in CRUSH map after it should\ \ have been removed.\\n\\n$CRUSH_MAP\"\n exit 1\nfi\n" teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: 3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a timestamp: 2024-09-16_22:08:02 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.3401856 2024-09-17T07:55:56.226 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_1cbdc9211df088cccbd94423c7cf3a2b85fe432b/qa; will attempt to use it 2024-09-17T07:55:56.227 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_1cbdc9211df088cccbd94423c7cf3a2b85fe432b/qa/tasks 2024-09-17T07:55:56.227 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-09-17T07:55:56.229 INFO:teuthology.task.internal:Checking packages... 2024-09-17T07:55:56.249 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash '19e2a2beb6f41a3ab62650e38614eb29b59dcbb9' 2024-09-17T07:55:56.250 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-09-17T07:55:56.250 INFO:teuthology.packaging:ref: None 2024-09-17T07:55:56.250 INFO:teuthology.packaging:tag: None 2024-09-17T07:55:56.250 INFO:teuthology.packaging:branch: reef 2024-09-17T07:55:56.250 INFO:teuthology.packaging:sha1: 19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 2024-09-17T07:55:56.250 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=reef 2024-09-17T07:55:56.497 INFO:teuthology.task.internal:Found packages for ceph version 18.2.4-855.g19e2a2be 2024-09-17T07:55:56.499 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-09-17T07:55:56.505 INFO:teuthology.task.internal:no buildpackages task found 2024-09-17T07:55:56.506 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-09-17T07:55:56.552 INFO:teuthology.task.internal:Saving configuration 2024-09-17T07:55:56.565 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-09-17T07:55:56.578 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-09-17T07:55:56.602 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi044.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908188', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-17 07:49:03.380669', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLioh9QCnCKs6QF/aw7VygAZFaMlRv5SO3al/sbVAgeCsqhAE0F82CavcWSwVCO+Dh7mSm5qk+oHzlKDnva8ZSU='} 2024-09-17T07:55:56.626 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi145.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908188', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-17 07:49:03.378896', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBKdqeDa5RBDbg+ktj11BfmcECui+ZOTHyldIhBydyAQRhOv24ejGJ8VMfQg7DrjxUT1X2YVBlFmxta/wCbxurvA='} 2024-09-17T07:55:56.647 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi152.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908188', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-17 07:49:03.381777', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFODo6ifLP21/jkABGfyiO182x0HJ4MDP4/6WowVS432Ph5uHQDLQC6sr32R8Rwkw9280eFVGaPyHPnaJK0WweM='} 2024-09-17T07:55:56.647 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-09-17T07:55:56.653 INFO:teuthology.task.internal:roles: ubuntu@smithi044.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-09-17T07:55:56.653 INFO:teuthology.task.internal:roles: ubuntu@smithi145.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-09-17T07:55:56.654 INFO:teuthology.task.internal:roles: ubuntu@smithi152.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-09-17T07:55:56.654 INFO:teuthology.run_tasks:Running task console_log... 2024-09-17T07:55:56.753 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f343ca67ac0>, signals=[15]) 2024-09-17T07:55:56.753 INFO:teuthology.run_tasks:Running task internal.connect... 2024-09-17T07:55:56.760 INFO:teuthology.task.internal:Opening connections... 2024-09-17T07:55:56.760 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi044.front.sepia.ceph.com 2024-09-17T07:55:56.761 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi044.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T07:55:56.842 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi145.front.sepia.ceph.com 2024-09-17T07:55:56.843 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi145.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T07:55:56.919 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi152.front.sepia.ceph.com 2024-09-17T07:55:56.920 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi152.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T07:55:56.994 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-09-17T07:55:57.000 DEBUG:teuthology.orchestra.run.smithi044:> uname -m 2024-09-17T07:55:57.019 INFO:teuthology.orchestra.run.smithi044.stdout:x86_64 2024-09-17T07:55:57.019 DEBUG:teuthology.orchestra.run.smithi044:> cat /etc/os-release 2024-09-17T07:55:57.077 INFO:teuthology.orchestra.run.smithi044.stdout:NAME="CentOS Stream" 2024-09-17T07:55:57.077 INFO:teuthology.orchestra.run.smithi044.stdout:VERSION="9" 2024-09-17T07:55:57.077 INFO:teuthology.orchestra.run.smithi044.stdout:ID="centos" 2024-09-17T07:55:57.077 INFO:teuthology.orchestra.run.smithi044.stdout:ID_LIKE="rhel fedora" 2024-09-17T07:55:57.077 INFO:teuthology.orchestra.run.smithi044.stdout:VERSION_ID="9" 2024-09-17T07:55:57.077 INFO:teuthology.orchestra.run.smithi044.stdout:PLATFORM_ID="platform:el9" 2024-09-17T07:55:57.077 INFO:teuthology.orchestra.run.smithi044.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-17T07:55:57.077 INFO:teuthology.orchestra.run.smithi044.stdout:ANSI_COLOR="0;31" 2024-09-17T07:55:57.078 INFO:teuthology.orchestra.run.smithi044.stdout:LOGO="fedora-logo-icon" 2024-09-17T07:55:57.078 INFO:teuthology.orchestra.run.smithi044.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-17T07:55:57.078 INFO:teuthology.orchestra.run.smithi044.stdout:HOME_URL="https://centos.org/" 2024-09-17T07:55:57.078 INFO:teuthology.orchestra.run.smithi044.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-17T07:55:57.078 INFO:teuthology.orchestra.run.smithi044.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-17T07:55:57.078 INFO:teuthology.orchestra.run.smithi044.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-17T07:55:57.079 INFO:teuthology.lock.ops:Updating smithi044.front.sepia.ceph.com on lock server 2024-09-17T07:55:57.103 DEBUG:teuthology.orchestra.run.smithi145:> uname -m 2024-09-17T07:55:57.121 INFO:teuthology.orchestra.run.smithi145.stdout:x86_64 2024-09-17T07:55:57.122 DEBUG:teuthology.orchestra.run.smithi145:> cat /etc/os-release 2024-09-17T07:55:57.180 INFO:teuthology.orchestra.run.smithi145.stdout:NAME="CentOS Stream" 2024-09-17T07:55:57.180 INFO:teuthology.orchestra.run.smithi145.stdout:VERSION="9" 2024-09-17T07:55:57.181 INFO:teuthology.orchestra.run.smithi145.stdout:ID="centos" 2024-09-17T07:55:57.181 INFO:teuthology.orchestra.run.smithi145.stdout:ID_LIKE="rhel fedora" 2024-09-17T07:55:57.181 INFO:teuthology.orchestra.run.smithi145.stdout:VERSION_ID="9" 2024-09-17T07:55:57.181 INFO:teuthology.orchestra.run.smithi145.stdout:PLATFORM_ID="platform:el9" 2024-09-17T07:55:57.181 INFO:teuthology.orchestra.run.smithi145.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-17T07:55:57.181 INFO:teuthology.orchestra.run.smithi145.stdout:ANSI_COLOR="0;31" 2024-09-17T07:55:57.181 INFO:teuthology.orchestra.run.smithi145.stdout:LOGO="fedora-logo-icon" 2024-09-17T07:55:57.181 INFO:teuthology.orchestra.run.smithi145.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-17T07:55:57.181 INFO:teuthology.orchestra.run.smithi145.stdout:HOME_URL="https://centos.org/" 2024-09-17T07:55:57.181 INFO:teuthology.orchestra.run.smithi145.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-17T07:55:57.181 INFO:teuthology.orchestra.run.smithi145.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-17T07:55:57.181 INFO:teuthology.orchestra.run.smithi145.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-17T07:55:57.182 INFO:teuthology.lock.ops:Updating smithi145.front.sepia.ceph.com on lock server 2024-09-17T07:55:57.203 DEBUG:teuthology.orchestra.run.smithi152:> uname -m 2024-09-17T07:55:57.221 INFO:teuthology.orchestra.run.smithi152.stdout:x86_64 2024-09-17T07:55:57.222 DEBUG:teuthology.orchestra.run.smithi152:> cat /etc/os-release 2024-09-17T07:55:57.280 INFO:teuthology.orchestra.run.smithi152.stdout:NAME="CentOS Stream" 2024-09-17T07:55:57.280 INFO:teuthology.orchestra.run.smithi152.stdout:VERSION="9" 2024-09-17T07:55:57.280 INFO:teuthology.orchestra.run.smithi152.stdout:ID="centos" 2024-09-17T07:55:57.280 INFO:teuthology.orchestra.run.smithi152.stdout:ID_LIKE="rhel fedora" 2024-09-17T07:55:57.280 INFO:teuthology.orchestra.run.smithi152.stdout:VERSION_ID="9" 2024-09-17T07:55:57.280 INFO:teuthology.orchestra.run.smithi152.stdout:PLATFORM_ID="platform:el9" 2024-09-17T07:55:57.280 INFO:teuthology.orchestra.run.smithi152.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-17T07:55:57.281 INFO:teuthology.orchestra.run.smithi152.stdout:ANSI_COLOR="0;31" 2024-09-17T07:55:57.281 INFO:teuthology.orchestra.run.smithi152.stdout:LOGO="fedora-logo-icon" 2024-09-17T07:55:57.281 INFO:teuthology.orchestra.run.smithi152.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-17T07:55:57.281 INFO:teuthology.orchestra.run.smithi152.stdout:HOME_URL="https://centos.org/" 2024-09-17T07:55:57.281 INFO:teuthology.orchestra.run.smithi152.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-17T07:55:57.281 INFO:teuthology.orchestra.run.smithi152.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-17T07:55:57.281 INFO:teuthology.orchestra.run.smithi152.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-17T07:55:57.281 INFO:teuthology.lock.ops:Updating smithi152.front.sepia.ceph.com on lock server 2024-09-17T07:55:57.311 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-09-17T07:55:57.320 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-09-17T07:55:57.335 INFO:teuthology.task.internal:Checking for old test directory... 2024-09-17T07:55:57.335 DEBUG:teuthology.orchestra.run.smithi044:> test '!' -e /home/ubuntu/cephtest 2024-09-17T07:55:57.337 DEBUG:teuthology.orchestra.run.smithi145:> test '!' -e /home/ubuntu/cephtest 2024-09-17T07:55:57.340 DEBUG:teuthology.orchestra.run.smithi152:> test '!' -e /home/ubuntu/cephtest 2024-09-17T07:55:57.357 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-09-17T07:55:57.363 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-09-17T07:55:57.363 DEBUG:teuthology.orchestra.run.smithi044:> test -z $(ls -A /var/lib/ceph) 2024-09-17T07:55:57.395 DEBUG:teuthology.orchestra.run.smithi145:> test -z $(ls -A /var/lib/ceph) 2024-09-17T07:55:57.397 DEBUG:teuthology.orchestra.run.smithi152:> test -z $(ls -A /var/lib/ceph) 2024-09-17T07:55:57.505 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-09-17T07:55:57.575 INFO:teuthology.run_tasks:Running task kernel... 2024-09-17T07:55:57.590 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-09-17T07:55:57.590 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-17T07:55:57.591 DEBUG:teuthology.orchestra.run.smithi044:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-17T07:55:57.593 DEBUG:teuthology.orchestra.run.smithi145:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-17T07:55:57.593 DEBUG:teuthology.orchestra.run.smithi152:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-17T07:55:57.610 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T07:55:57.610 DEBUG:teuthology.orchestra.run.smithi044:> uname -r 2024-09-17T07:55:57.611 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T07:55:57.612 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T07:55:57.612 DEBUG:teuthology.orchestra.run.smithi152:> uname -r 2024-09-17T07:55:57.612 DEBUG:teuthology.orchestra.run.smithi145:> uname -r 2024-09-17T07:55:57.668 INFO:teuthology.orchestra.run.smithi044.stdout:5.14.0-503.el9.x86_64 2024-09-17T07:55:57.668 INFO:teuthology.task.kernel:Running kernel on smithi044: 5.14.0-503.el9.x86_64 2024-09-17T07:55:57.668 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum install -y kernel 2024-09-17T07:55:57.669 INFO:teuthology.orchestra.run.smithi152.stdout:5.14.0-503.el9.x86_64 2024-09-17T07:55:57.669 INFO:teuthology.task.kernel:Running kernel on smithi152: 5.14.0-503.el9.x86_64 2024-09-17T07:55:57.670 DEBUG:teuthology.orchestra.run.smithi152:> sudo yum install -y kernel 2024-09-17T07:55:57.670 INFO:teuthology.orchestra.run.smithi145.stdout:5.14.0-503.el9.x86_64 2024-09-17T07:55:57.671 INFO:teuthology.task.kernel:Running kernel on smithi145: 5.14.0-503.el9.x86_64 2024-09-17T07:55:57.671 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum install -y kernel 2024-09-17T07:56:00.058 INFO:teuthology.orchestra.run.smithi152.stdout:CentOS Stream 9 - BaseOS 17 MB/s | 8.3 MB 00:00 2024-09-17T07:56:00.973 INFO:teuthology.orchestra.run.smithi145.stdout:CentOS Stream 9 - BaseOS 5.4 MB/s | 8.3 MB 00:01 2024-09-17T07:56:01.168 INFO:teuthology.orchestra.run.smithi044.stdout:CentOS Stream 9 - BaseOS 4.8 MB/s | 8.3 MB 00:01 2024-09-17T07:56:02.740 INFO:teuthology.orchestra.run.smithi145.stdout:CentOS Stream 9 - AppStream 29 MB/s | 20 MB 00:00 2024-09-17T07:56:03.353 INFO:teuthology.orchestra.run.smithi044.stdout:CentOS Stream 9 - AppStream 19 MB/s | 20 MB 00:01 2024-09-17T07:56:07.483 INFO:teuthology.orchestra.run.smithi152.stdout:CentOS Stream 9 - AppStream 3.2 MB/s | 20 MB 00:06 2024-09-17T07:56:07.982 INFO:teuthology.orchestra.run.smithi145.stdout:CentOS Stream 9 - CRB 4.5 MB/s | 6.5 MB 00:01 2024-09-17T07:56:08.770 INFO:teuthology.orchestra.run.smithi044.stdout:CentOS Stream 9 - CRB 4.3 MB/s | 6.5 MB 00:01 2024-09-17T07:56:09.425 INFO:teuthology.orchestra.run.smithi145.stdout:CentOS Stream 9 - Extras packages 83 kB/s | 19 kB 00:00 2024-09-17T07:56:10.212 INFO:teuthology.orchestra.run.smithi044.stdout:CentOS Stream 9 - Extras packages 114 kB/s | 19 kB 00:00 2024-09-17T07:56:10.479 INFO:teuthology.orchestra.run.smithi145.stdout:Extra Packages for Enterprise Linux 24 MB/s | 23 MB 00:00 2024-09-17T07:56:11.108 INFO:teuthology.orchestra.run.smithi044.stdout:Extra Packages for Enterprise Linux 29 MB/s | 23 MB 00:00 2024-09-17T07:56:13.833 INFO:teuthology.orchestra.run.smithi152.stdout:CentOS Stream 9 - CRB 2.5 MB/s | 6.5 MB 00:02 2024-09-17T07:56:15.884 INFO:teuthology.orchestra.run.smithi145.stdout:lab-extras 30 kB/s | 1.7 kB 00:00 2024-09-17T07:56:16.267 INFO:teuthology.orchestra.run.smithi152.stdout:CentOS Stream 9 - Extras packages 15 kB/s | 19 kB 00:01 2024-09-17T07:56:16.673 INFO:teuthology.orchestra.run.smithi044.stdout:lab-extras 31 kB/s | 1.7 kB 00:00 2024-09-17T07:56:17.047 INFO:teuthology.orchestra.run.smithi152.stdout:Extra Packages for Enterprise Linux 35 MB/s | 23 MB 00:00 2024-09-17T07:56:17.783 INFO:teuthology.orchestra.run.smithi145.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-17T07:56:17.783 INFO:teuthology.orchestra.run.smithi145.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-17T07:56:17.873 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-17T07:56:17.880 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T07:56:17.880 INFO:teuthology.orchestra.run.smithi145.stdout: Package Architecture Version Repository Size 2024-09-17T07:56:17.880 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T07:56:17.880 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-17T07:56:17.880 INFO:teuthology.orchestra.run.smithi145.stdout: kernel x86_64 5.14.0-508.el9 baseos 36 k 2024-09-17T07:56:17.880 INFO:teuthology.orchestra.run.smithi145.stdout:Installing dependencies: 2024-09-17T07:56:17.880 INFO:teuthology.orchestra.run.smithi145.stdout: kernel-core x86_64 5.14.0-508.el9 baseos 16 M 2024-09-17T07:56:17.880 INFO:teuthology.orchestra.run.smithi145.stdout: kernel-modules x86_64 5.14.0-508.el9 baseos 35 M 2024-09-17T07:56:17.880 INFO:teuthology.orchestra.run.smithi145.stdout: kernel-modules-core x86_64 5.14.0-508.el9 baseos 29 M 2024-09-17T07:56:17.880 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T07:56:17.880 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-17T07:56:17.880 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T07:56:17.880 INFO:teuthology.orchestra.run.smithi145.stdout:Install 4 Packages 2024-09-17T07:56:17.881 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T07:56:17.881 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 79 M 2024-09-17T07:56:17.881 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 126 M 2024-09-17T07:56:17.881 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-17T07:56:18.604 INFO:teuthology.orchestra.run.smithi044.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-17T07:56:18.604 INFO:teuthology.orchestra.run.smithi044.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-17T07:56:18.611 INFO:teuthology.orchestra.run.smithi145.stdout:(1/4): kernel-5.14.0-508.el9.x86_64.rpm 66 kB/s | 36 kB 00:00 2024-09-17T07:56:18.694 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-09-17T07:56:18.704 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T07:56:18.704 INFO:teuthology.orchestra.run.smithi044.stdout: Package Architecture Version Repository Size 2024-09-17T07:56:18.704 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T07:56:18.704 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-09-17T07:56:18.704 INFO:teuthology.orchestra.run.smithi044.stdout: kernel x86_64 5.14.0-508.el9 baseos 36 k 2024-09-17T07:56:18.705 INFO:teuthology.orchestra.run.smithi044.stdout:Installing dependencies: 2024-09-17T07:56:18.705 INFO:teuthology.orchestra.run.smithi044.stdout: kernel-core x86_64 5.14.0-508.el9 baseos 16 M 2024-09-17T07:56:18.705 INFO:teuthology.orchestra.run.smithi044.stdout: kernel-modules x86_64 5.14.0-508.el9 baseos 35 M 2024-09-17T07:56:18.705 INFO:teuthology.orchestra.run.smithi044.stdout: kernel-modules-core x86_64 5.14.0-508.el9 baseos 29 M 2024-09-17T07:56:18.705 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T07:56:18.705 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-09-17T07:56:18.705 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T07:56:18.705 INFO:teuthology.orchestra.run.smithi044.stdout:Install 4 Packages 2024-09-17T07:56:18.705 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T07:56:18.706 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 79 M 2024-09-17T07:56:18.706 INFO:teuthology.orchestra.run.smithi044.stdout:Installed size: 126 M 2024-09-17T07:56:18.706 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-09-17T07:56:18.840 INFO:teuthology.orchestra.run.smithi044.stdout:(1/4): kernel-5.14.0-508.el9.x86_64.rpm 409 kB/s | 36 kB 00:00 2024-09-17T07:56:19.274 INFO:teuthology.orchestra.run.smithi044.stdout:(2/4): kernel-core-5.14.0-508.el9.x86_64.rpm 30 MB/s | 16 MB 00:00 2024-09-17T07:56:19.641 INFO:teuthology.orchestra.run.smithi044.stdout:(3/4): kernel-modules-core-5.14.0-508.el9.x86_6 36 MB/s | 29 MB 00:00 2024-09-17T07:56:19.652 INFO:teuthology.orchestra.run.smithi145.stdout:(2/4): kernel-core-5.14.0-508.el9.x86_64.rpm 9.8 MB/s | 16 MB 00:01 2024-09-17T07:56:19.950 INFO:teuthology.orchestra.run.smithi044.stdout:(4/4): kernel-modules-5.14.0-508.el9.x86_64.rpm 29 MB/s | 35 MB 00:01 2024-09-17T07:56:19.950 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-09-17T07:56:19.950 INFO:teuthology.orchestra.run.smithi044.stdout:Total 63 MB/s | 79 MB 00:01 2024-09-17T07:56:20.236 INFO:teuthology.orchestra.run.smithi145.stdout:(3/4): kernel-modules-5.14.0-508.el9.x86_64.rpm 16 MB/s | 35 MB 00:02 2024-09-17T07:56:20.662 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-09-17T07:56:20.844 INFO:teuthology.orchestra.run.smithi145.stdout:(4/4): kernel-modules-core-5.14.0-508.el9.x86_6 13 MB/s | 29 MB 00:02 2024-09-17T07:56:20.845 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-17T07:56:20.845 INFO:teuthology.orchestra.run.smithi145.stdout:Total 27 MB/s | 79 MB 00:02 2024-09-17T07:56:21.068 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-09-17T07:56:21.068 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-09-17T07:56:21.525 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-17T07:56:21.895 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-17T07:56:21.895 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-17T07:56:22.030 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-09-17T07:56:22.030 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-09-17T07:56:22.369 INFO:teuthology.orchestra.run.smithi152.stdout:lab-extras 32 kB/s | 1.7 kB 00:00 2024-09-17T07:56:22.833 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-17T07:56:22.833 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-17T07:56:24.368 INFO:teuthology.orchestra.run.smithi152.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-17T07:56:24.368 INFO:teuthology.orchestra.run.smithi152.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-17T07:56:24.467 INFO:teuthology.orchestra.run.smithi152.stdout:Dependencies resolved. 2024-09-17T07:56:24.476 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T07:56:24.476 INFO:teuthology.orchestra.run.smithi152.stdout: Package Architecture Version Repository Size 2024-09-17T07:56:24.476 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T07:56:24.477 INFO:teuthology.orchestra.run.smithi152.stdout:Installing: 2024-09-17T07:56:24.477 INFO:teuthology.orchestra.run.smithi152.stdout: kernel x86_64 5.14.0-508.el9 baseos 36 k 2024-09-17T07:56:24.477 INFO:teuthology.orchestra.run.smithi152.stdout:Installing dependencies: 2024-09-17T07:56:24.477 INFO:teuthology.orchestra.run.smithi152.stdout: kernel-core x86_64 5.14.0-508.el9 baseos 16 M 2024-09-17T07:56:24.477 INFO:teuthology.orchestra.run.smithi152.stdout: kernel-modules x86_64 5.14.0-508.el9 baseos 35 M 2024-09-17T07:56:24.477 INFO:teuthology.orchestra.run.smithi152.stdout: kernel-modules-core x86_64 5.14.0-508.el9 baseos 29 M 2024-09-17T07:56:24.477 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T07:56:24.477 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction Summary 2024-09-17T07:56:24.477 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T07:56:24.477 INFO:teuthology.orchestra.run.smithi152.stdout:Install 4 Packages 2024-09-17T07:56:24.477 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T07:56:24.477 INFO:teuthology.orchestra.run.smithi152.stdout:Total download size: 79 M 2024-09-17T07:56:24.477 INFO:teuthology.orchestra.run.smithi152.stdout:Installed size: 126 M 2024-09-17T07:56:24.478 INFO:teuthology.orchestra.run.smithi152.stdout:Downloading Packages: 2024-09-17T07:56:24.596 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-09-17T07:56:24.613 INFO:teuthology.orchestra.run.smithi152.stdout:(1/4): kernel-5.14.0-508.el9.x86_64.rpm 396 kB/s | 36 kB 00:00 2024-09-17T07:56:25.013 INFO:teuthology.orchestra.run.smithi152.stdout:(2/4): kernel-core-5.14.0-508.el9.x86_64.rpm 32 MB/s | 16 MB 00:00 2024-09-17T07:56:25.245 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : kernel-modules-core-5.14.0-508.el9.x86_64 1/4 2024-09-17T07:56:25.275 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-17T07:56:25.333 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T07:56:25.480 INFO:teuthology.orchestra.run.smithi152.stdout:(3/4): kernel-modules-5.14.0-508.el9.x86_64.rpm 36 MB/s | 35 MB 00:00 2024-09-17T07:56:25.789 INFO:teuthology.orchestra.run.smithi152.stdout:(4/4): kernel-modules-core-5.14.0-508.el9.x86_6 24 MB/s | 29 MB 00:01 2024-09-17T07:56:25.789 INFO:teuthology.orchestra.run.smithi152.stdout:-------------------------------------------------------------------------------- 2024-09-17T07:56:25.789 INFO:teuthology.orchestra.run.smithi152.stdout:Total 60 MB/s | 79 MB 00:01 2024-09-17T07:56:25.907 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : kernel-modules-core-5.14.0-508.el9.x86_64 1/4 2024-09-17T07:56:25.995 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T07:56:26.470 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction check 2024-09-17T07:56:26.809 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction check succeeded. 2024-09-17T07:56:26.809 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction test 2024-09-17T07:56:27.789 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction test succeeded. 2024-09-17T07:56:27.789 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction 2024-09-17T07:56:28.104 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T07:56:28.231 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T07:56:28.761 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T07:56:28.891 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T07:56:30.269 INFO:teuthology.orchestra.run.smithi152.stdout: Preparing : 1/1 2024-09-17T07:56:30.967 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : kernel-modules-core-5.14.0-508.el9.x86_64 1/4 2024-09-17T07:56:31.057 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T07:56:33.354 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T07:56:33.398 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : kernel-5.14.0-508.el9.x86_64 4/4 2024-09-17T07:56:33.702 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T07:56:33.829 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T07:56:33.833 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : kernel-5.14.0-508.el9.x86_64 4/4 2024-09-17T07:56:33.961 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T07:56:38.534 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T07:56:38.662 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T07:56:38.803 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T07:56:38.845 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : kernel-5.14.0-508.el9.x86_64 4/4 2024-09-17T07:56:43.686 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T07:57:16.593 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T07:57:16.632 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 4/4 2024-09-17T07:57:16.947 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: kernel-5.14.0-508.el9.x86_64 4/4 2024-09-17T07:57:16.947 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : kernel-5.14.0-508.el9.x86_64 1/4 2024-09-17T07:57:16.947 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T07:57:16.947 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T07:57:17.573 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T07:57:17.614 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 4/4 2024-09-17T07:57:17.792 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T07:57:17.792 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T07:57:17.792 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-17T07:57:17.793 INFO:teuthology.orchestra.run.smithi145.stdout: kernel-5.14.0-508.el9.x86_64 2024-09-17T07:57:17.793 INFO:teuthology.orchestra.run.smithi145.stdout: kernel-core-5.14.0-508.el9.x86_64 2024-09-17T07:57:17.793 INFO:teuthology.orchestra.run.smithi145.stdout: kernel-modules-5.14.0-508.el9.x86_64 2024-09-17T07:57:17.793 INFO:teuthology.orchestra.run.smithi145.stdout: kernel-modules-core-5.14.0-508.el9.x86_64 2024-09-17T07:57:17.793 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T07:57:17.793 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-17T07:57:17.970 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: kernel-5.14.0-508.el9.x86_64 4/4 2024-09-17T07:57:17.970 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : kernel-5.14.0-508.el9.x86_64 1/4 2024-09-17T07:57:17.970 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T07:57:17.970 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T07:57:18.184 DEBUG:teuthology.orchestra.run.smithi145:> rpm -q kernel | sort -rV | head -n 1 2024-09-17T07:57:18.267 INFO:teuthology.orchestra.run.smithi145.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-17T07:57:18.268 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-17T07:57:18.268 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-503.el9.x86_64 Expected: 5.14.0-508.el9.x86_64 2024-09-17T07:57:18.268 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-17T07:57:18.268 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-17T07:57:18.268 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-09-17T07:57:18.268 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi145.front.sepia.ceph.com, path=None, version=distro) 2024-09-17T07:57:18.268 DEBUG:teuthology.orchestra.run.smithi145:> rpm -q kernel | sort -rV | head -n 1 2024-09-17T07:57:18.327 INFO:teuthology.orchestra.run.smithi145.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-17T07:57:18.327 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-17T07:57:18.327 DEBUG:teuthology.orchestra.run.smithi145:> sudo rpm -qi grub2-tools 2024-09-17T07:57:18.364 INFO:teuthology.orchestra.run.smithi145.stdout:Name : grub2-tools 2024-09-17T07:57:18.365 INFO:teuthology.orchestra.run.smithi145.stdout:Epoch : 1 2024-09-17T07:57:18.365 INFO:teuthology.orchestra.run.smithi145.stdout:Version : 2.06 2024-09-17T07:57:18.365 INFO:teuthology.orchestra.run.smithi145.stdout:Release : 82.el9 2024-09-17T07:57:18.365 INFO:teuthology.orchestra.run.smithi145.stdout:Architecture: x86_64 2024-09-17T07:57:18.365 INFO:teuthology.orchestra.run.smithi145.stdout:Install Date: Wed 28 Aug 2024 09:06:27 PM UTC 2024-09-17T07:57:18.365 INFO:teuthology.orchestra.run.smithi145.stdout:Group : Unspecified 2024-09-17T07:57:18.365 INFO:teuthology.orchestra.run.smithi145.stdout:Size : 8274670 2024-09-17T07:57:18.365 INFO:teuthology.orchestra.run.smithi145.stdout:License : GPLv3+ 2024-09-17T07:57:18.365 INFO:teuthology.orchestra.run.smithi145.stdout:Signature : RSA/SHA256, Mon 01 Jul 2024 07:46:42 AM UTC, Key ID 05b555b38483c65d 2024-09-17T07:57:18.365 INFO:teuthology.orchestra.run.smithi145.stdout:Source RPM : grub2-2.06-82.el9.src.rpm 2024-09-17T07:57:18.365 INFO:teuthology.orchestra.run.smithi145.stdout:Build Date : Fri 28 Jun 2024 09:24:44 AM UTC 2024-09-17T07:57:18.365 INFO:teuthology.orchestra.run.smithi145.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-09-17T07:57:18.365 INFO:teuthology.orchestra.run.smithi145.stdout:Packager : builder@centos.org 2024-09-17T07:57:18.366 INFO:teuthology.orchestra.run.smithi145.stdout:Vendor : CentOS 2024-09-17T07:57:18.366 INFO:teuthology.orchestra.run.smithi145.stdout:URL : http://www.gnu.org/software/grub/ 2024-09-17T07:57:18.366 INFO:teuthology.orchestra.run.smithi145.stdout:Summary : Support tools for GRUB. 2024-09-17T07:57:18.366 INFO:teuthology.orchestra.run.smithi145.stdout:Description : 2024-09-17T07:57:18.366 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T07:57:18.366 INFO:teuthology.orchestra.run.smithi145.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-09-17T07:57:18.366 INFO:teuthology.orchestra.run.smithi145.stdout:customizable bootloader with modular architecture. It supports a rich 2024-09-17T07:57:18.366 INFO:teuthology.orchestra.run.smithi145.stdout:variety of kernel formats, file systems, computer architectures and 2024-09-17T07:57:18.366 INFO:teuthology.orchestra.run.smithi145.stdout:hardware devices. 2024-09-17T07:57:18.366 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T07:57:18.366 INFO:teuthology.orchestra.run.smithi145.stdout:This subpackage provides tools for support of all platforms. 2024-09-17T07:57:18.367 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-09-17T07:57:18.367 INFO:teuthology.task.kernel:Updating grub on smithi145 to boot 5.14.0-508.el9.x86_64 2024-09-17T07:57:18.367 DEBUG:teuthology.orchestra.run.smithi145:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-09-17T07:57:18.838 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T07:57:18.838 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T07:57:18.839 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-09-17T07:57:18.839 INFO:teuthology.orchestra.run.smithi044.stdout: kernel-5.14.0-508.el9.x86_64 2024-09-17T07:57:18.839 INFO:teuthology.orchestra.run.smithi044.stdout: kernel-core-5.14.0-508.el9.x86_64 2024-09-17T07:57:18.839 INFO:teuthology.orchestra.run.smithi044.stdout: kernel-modules-5.14.0-508.el9.x86_64 2024-09-17T07:57:18.839 INFO:teuthology.orchestra.run.smithi044.stdout: kernel-modules-core-5.14.0-508.el9.x86_64 2024-09-17T07:57:18.839 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T07:57:18.839 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-09-17T07:57:19.013 INFO:teuthology.orchestra.run.smithi145.stderr:Generating grub configuration file ... 2024-09-17T07:57:19.193 DEBUG:teuthology.orchestra.run.smithi044:> rpm -q kernel | sort -rV | head -n 1 2024-09-17T07:57:19.286 INFO:teuthology.orchestra.run.smithi044.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-17T07:57:19.286 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-17T07:57:19.286 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-503.el9.x86_64 Expected: 5.14.0-508.el9.x86_64 2024-09-17T07:57:19.286 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-17T07:57:19.287 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-17T07:57:19.287 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-09-17T07:57:19.287 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi044.front.sepia.ceph.com, path=None, version=distro) 2024-09-17T07:57:19.287 DEBUG:teuthology.orchestra.run.smithi044:> rpm -q kernel | sort -rV | head -n 1 2024-09-17T07:57:19.345 INFO:teuthology.orchestra.run.smithi044.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-17T07:57:19.346 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-17T07:57:19.346 DEBUG:teuthology.orchestra.run.smithi044:> sudo rpm -qi grub2-tools 2024-09-17T07:57:19.381 INFO:teuthology.orchestra.run.smithi044.stdout:Name : grub2-tools 2024-09-17T07:57:19.381 INFO:teuthology.orchestra.run.smithi044.stdout:Epoch : 1 2024-09-17T07:57:19.381 INFO:teuthology.orchestra.run.smithi044.stdout:Version : 2.06 2024-09-17T07:57:19.381 INFO:teuthology.orchestra.run.smithi044.stdout:Release : 82.el9 2024-09-17T07:57:19.381 INFO:teuthology.orchestra.run.smithi044.stdout:Architecture: x86_64 2024-09-17T07:57:19.381 INFO:teuthology.orchestra.run.smithi044.stdout:Install Date: Wed 28 Aug 2024 09:06:27 PM UTC 2024-09-17T07:57:19.382 INFO:teuthology.orchestra.run.smithi044.stdout:Group : Unspecified 2024-09-17T07:57:19.382 INFO:teuthology.orchestra.run.smithi044.stdout:Size : 8274670 2024-09-17T07:57:19.382 INFO:teuthology.orchestra.run.smithi044.stdout:License : GPLv3+ 2024-09-17T07:57:19.382 INFO:teuthology.orchestra.run.smithi044.stdout:Signature : RSA/SHA256, Mon 01 Jul 2024 07:46:42 AM UTC, Key ID 05b555b38483c65d 2024-09-17T07:57:19.382 INFO:teuthology.orchestra.run.smithi044.stdout:Source RPM : grub2-2.06-82.el9.src.rpm 2024-09-17T07:57:19.382 INFO:teuthology.orchestra.run.smithi044.stdout:Build Date : Fri 28 Jun 2024 09:24:44 AM UTC 2024-09-17T07:57:19.382 INFO:teuthology.orchestra.run.smithi044.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-09-17T07:57:19.382 INFO:teuthology.orchestra.run.smithi044.stdout:Packager : builder@centos.org 2024-09-17T07:57:19.382 INFO:teuthology.orchestra.run.smithi044.stdout:Vendor : CentOS 2024-09-17T07:57:19.382 INFO:teuthology.orchestra.run.smithi044.stdout:URL : http://www.gnu.org/software/grub/ 2024-09-17T07:57:19.382 INFO:teuthology.orchestra.run.smithi044.stdout:Summary : Support tools for GRUB. 2024-09-17T07:57:19.382 INFO:teuthology.orchestra.run.smithi044.stdout:Description : 2024-09-17T07:57:19.382 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T07:57:19.383 INFO:teuthology.orchestra.run.smithi044.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-09-17T07:57:19.383 INFO:teuthology.orchestra.run.smithi044.stdout:customizable bootloader with modular architecture. It supports a rich 2024-09-17T07:57:19.383 INFO:teuthology.orchestra.run.smithi044.stdout:variety of kernel formats, file systems, computer architectures and 2024-09-17T07:57:19.383 INFO:teuthology.orchestra.run.smithi044.stdout:hardware devices. 2024-09-17T07:57:19.383 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T07:57:19.383 INFO:teuthology.orchestra.run.smithi044.stdout:This subpackage provides tools for support of all platforms. 2024-09-17T07:57:19.384 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-09-17T07:57:19.384 INFO:teuthology.task.kernel:Updating grub on smithi044 to boot 5.14.0-508.el9.x86_64 2024-09-17T07:57:19.384 DEBUG:teuthology.orchestra.run.smithi044:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-09-17T07:57:20.070 INFO:teuthology.orchestra.run.smithi044.stderr:Generating grub configuration file ... 2024-09-17T07:57:20.334 INFO:teuthology.orchestra.run.smithi145.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-09-17T07:57:20.363 INFO:teuthology.orchestra.run.smithi145.stderr:done 2024-09-17T07:57:20.365 DEBUG:teuthology.orchestra.run.smithi145:> mktemp 2024-09-17T07:57:20.381 INFO:teuthology.orchestra.run.smithi145.stdout:/tmp/tmp.QicTmEHPsi 2024-09-17T07:57:20.381 DEBUG:teuthology.orchestra.run.smithi145:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.QicTmEHPsi 2024-09-17T07:57:20.460 DEBUG:teuthology.orchestra.run.smithi145:> sudo chmod 0666 /tmp/tmp.QicTmEHPsi 2024-09-17T07:57:20.609 DEBUG:teuthology.orchestra.remote:smithi145:/tmp/tmp.QicTmEHPsi is 6KB 2024-09-17T07:57:20.657 DEBUG:teuthology.orchestra.run.smithi145:> rm -fr /tmp/tmp.QicTmEHPsi 2024-09-17T07:57:20.673 DEBUG:teuthology.orchestra.run.smithi145:> sudo /bin/ls /boot/loader/entries || true 2024-09-17T07:57:20.735 INFO:teuthology.orchestra.run.smithi145.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-0-rescue.conf 2024-09-17T07:57:20.735 INFO:teuthology.orchestra.run.smithi145.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-239.el9.x86_64.conf 2024-09-17T07:57:20.735 INFO:teuthology.orchestra.run.smithi145.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-503.el9.x86_64.conf 2024-09-17T07:57:20.735 INFO:teuthology.orchestra.run.smithi145.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64.conf 2024-09-17T07:57:20.736 DEBUG:teuthology.orchestra.run.smithi145:> sudo grub2-set-default fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64 2024-09-17T07:57:20.883 DEBUG:teuthology.orchestra.run.smithi145:> sudo shutdown -r now 2024-09-17T07:57:21.362 INFO:teuthology.orchestra.run.smithi044.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-09-17T07:57:21.383 INFO:teuthology.orchestra.run.smithi044.stderr:done 2024-09-17T07:57:21.385 DEBUG:teuthology.orchestra.run.smithi044:> mktemp 2024-09-17T07:57:21.400 INFO:teuthology.orchestra.run.smithi044.stdout:/tmp/tmp.5UPjoA87S6 2024-09-17T07:57:21.400 DEBUG:teuthology.orchestra.run.smithi044:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.5UPjoA87S6 2024-09-17T07:57:21.472 DEBUG:teuthology.orchestra.run.smithi044:> sudo chmod 0666 /tmp/tmp.5UPjoA87S6 2024-09-17T07:57:21.611 DEBUG:teuthology.orchestra.remote:smithi044:/tmp/tmp.5UPjoA87S6 is 6KB 2024-09-17T07:57:21.660 DEBUG:teuthology.orchestra.run.smithi044:> rm -fr /tmp/tmp.5UPjoA87S6 2024-09-17T07:57:21.674 DEBUG:teuthology.orchestra.run.smithi044:> sudo /bin/ls /boot/loader/entries || true 2024-09-17T07:57:21.744 INFO:teuthology.orchestra.run.smithi044.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-0-rescue.conf 2024-09-17T07:57:21.744 INFO:teuthology.orchestra.run.smithi044.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-239.el9.x86_64.conf 2024-09-17T07:57:21.744 INFO:teuthology.orchestra.run.smithi044.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-503.el9.x86_64.conf 2024-09-17T07:57:21.745 INFO:teuthology.orchestra.run.smithi044.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64.conf 2024-09-17T07:57:21.746 DEBUG:teuthology.orchestra.run.smithi044:> sudo grub2-set-default fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64 2024-09-17T07:57:21.910 DEBUG:teuthology.orchestra.run.smithi044:> sudo shutdown -r now 2024-09-17T07:57:22.139 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T07:57:22.179 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 4/4 2024-09-17T07:57:22.505 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: kernel-5.14.0-508.el9.x86_64 4/4 2024-09-17T07:57:22.505 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : kernel-5.14.0-508.el9.x86_64 1/4 2024-09-17T07:57:22.505 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T07:57:22.506 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T07:57:23.341 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T07:57:23.341 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T07:57:23.341 INFO:teuthology.orchestra.run.smithi152.stdout:Installed: 2024-09-17T07:57:23.341 INFO:teuthology.orchestra.run.smithi152.stdout: kernel-5.14.0-508.el9.x86_64 2024-09-17T07:57:23.342 INFO:teuthology.orchestra.run.smithi152.stdout: kernel-core-5.14.0-508.el9.x86_64 2024-09-17T07:57:23.342 INFO:teuthology.orchestra.run.smithi152.stdout: kernel-modules-5.14.0-508.el9.x86_64 2024-09-17T07:57:23.342 INFO:teuthology.orchestra.run.smithi152.stdout: kernel-modules-core-5.14.0-508.el9.x86_64 2024-09-17T07:57:23.342 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T07:57:23.342 INFO:teuthology.orchestra.run.smithi152.stdout:Complete! 2024-09-17T07:57:23.725 DEBUG:teuthology.orchestra.run.smithi152:> rpm -q kernel | sort -rV | head -n 1 2024-09-17T07:57:23.814 INFO:teuthology.orchestra.run.smithi152.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-17T07:57:23.814 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-17T07:57:23.814 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-503.el9.x86_64 Expected: 5.14.0-508.el9.x86_64 2024-09-17T07:57:23.814 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-17T07:57:23.815 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-17T07:57:23.815 INFO:teuthology.task.kernel:Installing distro kernel on host.c... 2024-09-17T07:57:23.815 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi152.front.sepia.ceph.com, path=None, version=distro) 2024-09-17T07:57:23.815 DEBUG:teuthology.orchestra.run.smithi152:> rpm -q kernel | sort -rV | head -n 1 2024-09-17T07:57:23.873 INFO:teuthology.orchestra.run.smithi152.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-17T07:57:23.873 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-17T07:57:23.873 DEBUG:teuthology.orchestra.run.smithi152:> sudo rpm -qi grub2-tools 2024-09-17T07:57:23.914 INFO:teuthology.orchestra.run.smithi152.stdout:Name : grub2-tools 2024-09-17T07:57:23.914 INFO:teuthology.orchestra.run.smithi152.stdout:Epoch : 1 2024-09-17T07:57:23.914 INFO:teuthology.orchestra.run.smithi152.stdout:Version : 2.06 2024-09-17T07:57:23.914 INFO:teuthology.orchestra.run.smithi152.stdout:Release : 82.el9 2024-09-17T07:57:23.914 INFO:teuthology.orchestra.run.smithi152.stdout:Architecture: x86_64 2024-09-17T07:57:23.914 INFO:teuthology.orchestra.run.smithi152.stdout:Install Date: Wed 28 Aug 2024 09:06:27 PM UTC 2024-09-17T07:57:23.915 INFO:teuthology.orchestra.run.smithi152.stdout:Group : Unspecified 2024-09-17T07:57:23.915 INFO:teuthology.orchestra.run.smithi152.stdout:Size : 8274670 2024-09-17T07:57:23.915 INFO:teuthology.orchestra.run.smithi152.stdout:License : GPLv3+ 2024-09-17T07:57:23.915 INFO:teuthology.orchestra.run.smithi152.stdout:Signature : RSA/SHA256, Mon 01 Jul 2024 07:46:42 AM UTC, Key ID 05b555b38483c65d 2024-09-17T07:57:23.915 INFO:teuthology.orchestra.run.smithi152.stdout:Source RPM : grub2-2.06-82.el9.src.rpm 2024-09-17T07:57:23.915 INFO:teuthology.orchestra.run.smithi152.stdout:Build Date : Fri 28 Jun 2024 09:24:44 AM UTC 2024-09-17T07:57:23.915 INFO:teuthology.orchestra.run.smithi152.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-09-17T07:57:23.915 INFO:teuthology.orchestra.run.smithi152.stdout:Packager : builder@centos.org 2024-09-17T07:57:23.915 INFO:teuthology.orchestra.run.smithi152.stdout:Vendor : CentOS 2024-09-17T07:57:23.915 INFO:teuthology.orchestra.run.smithi152.stdout:URL : http://www.gnu.org/software/grub/ 2024-09-17T07:57:23.915 INFO:teuthology.orchestra.run.smithi152.stdout:Summary : Support tools for GRUB. 2024-09-17T07:57:23.915 INFO:teuthology.orchestra.run.smithi152.stdout:Description : 2024-09-17T07:57:23.915 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T07:57:23.916 INFO:teuthology.orchestra.run.smithi152.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-09-17T07:57:23.916 INFO:teuthology.orchestra.run.smithi152.stdout:customizable bootloader with modular architecture. It supports a rich 2024-09-17T07:57:23.916 INFO:teuthology.orchestra.run.smithi152.stdout:variety of kernel formats, file systems, computer architectures and 2024-09-17T07:57:23.916 INFO:teuthology.orchestra.run.smithi152.stdout:hardware devices. 2024-09-17T07:57:23.916 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T07:57:23.916 INFO:teuthology.orchestra.run.smithi152.stdout:This subpackage provides tools for support of all platforms. 2024-09-17T07:57:23.917 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-09-17T07:57:23.917 INFO:teuthology.task.kernel:Updating grub on smithi152 to boot 5.14.0-508.el9.x86_64 2024-09-17T07:57:23.917 DEBUG:teuthology.orchestra.run.smithi152:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-09-17T07:57:24.604 INFO:teuthology.orchestra.run.smithi152.stderr:Generating grub configuration file ... 2024-09-17T07:57:25.988 INFO:teuthology.orchestra.run.smithi152.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-09-17T07:57:26.020 INFO:teuthology.orchestra.run.smithi152.stderr:done 2024-09-17T07:57:26.035 DEBUG:teuthology.orchestra.run.smithi152:> mktemp 2024-09-17T07:57:26.051 INFO:teuthology.orchestra.run.smithi152.stdout:/tmp/tmp.mpnjpHOYfM 2024-09-17T07:57:26.051 DEBUG:teuthology.orchestra.run.smithi152:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.mpnjpHOYfM 2024-09-17T07:57:26.127 DEBUG:teuthology.orchestra.run.smithi152:> sudo chmod 0666 /tmp/tmp.mpnjpHOYfM 2024-09-17T07:57:26.275 DEBUG:teuthology.orchestra.remote:smithi152:/tmp/tmp.mpnjpHOYfM is 6KB 2024-09-17T07:57:26.325 DEBUG:teuthology.orchestra.run.smithi152:> rm -fr /tmp/tmp.mpnjpHOYfM 2024-09-17T07:57:26.341 DEBUG:teuthology.orchestra.run.smithi152:> sudo /bin/ls /boot/loader/entries || true 2024-09-17T07:57:26.403 INFO:teuthology.orchestra.run.smithi152.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-0-rescue.conf 2024-09-17T07:57:26.404 INFO:teuthology.orchestra.run.smithi152.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-239.el9.x86_64.conf 2024-09-17T07:57:26.404 INFO:teuthology.orchestra.run.smithi152.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-503.el9.x86_64.conf 2024-09-17T07:57:26.404 INFO:teuthology.orchestra.run.smithi152.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64.conf 2024-09-17T07:57:26.405 DEBUG:teuthology.orchestra.run.smithi152:> sudo grub2-set-default fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64 2024-09-17T07:57:26.556 DEBUG:teuthology.orchestra.run.smithi152:> sudo shutdown -r now 2024-09-17T07:57:50.909 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-09-17T07:57:50.910 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi145.front.sepia.ceph.com' 2024-09-17T07:57:50.911 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi145.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T07:57:51.914 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-09-17T07:57:51.914 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi044.front.sepia.ceph.com' 2024-09-17T07:57:51.915 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi044.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T07:57:56.562 INFO:teuthology.task.kernel:Checking client host.c for new kernel version... 2024-09-17T07:57:56.562 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi152.front.sepia.ceph.com' 2024-09-17T07:57:56.563 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi152.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T07:58:09.469 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.145 2024-09-17T07:58:10.241 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.44 2024-09-17T07:58:15.105 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.152 2024-09-17T07:58:18.474 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi145.front.sepia.ceph.com' 2024-09-17T07:58:18.475 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi145.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T07:58:19.242 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi044.front.sepia.ceph.com' 2024-09-17T07:58:19.243 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi044.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T07:58:21.533 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.145 2024-09-17T07:58:24.109 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi152.front.sepia.ceph.com' 2024-09-17T07:58:24.109 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi152.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T07:58:27.169 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.152 2024-09-17T07:58:33.541 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi145.front.sepia.ceph.com' 2024-09-17T07:58:33.542 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi145.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T07:58:39.175 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi152.front.sepia.ceph.com' 2024-09-17T07:58:39.175 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi152.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T07:58:51.969 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.145 2024-09-17T07:58:57.601 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.152 2024-09-17T07:59:06.977 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi145.front.sepia.ceph.com' 2024-09-17T07:59:06.978 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi145.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T07:59:07.440 DEBUG:teuthology.orchestra.run.smithi145:> true 2024-09-17T07:59:08.419 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi145.front.sepia.ceph.com' 2024-09-17T07:59:08.419 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.14.0-508.el9.x86_64"... 2024-09-17T07:59:08.419 DEBUG:teuthology.orchestra.run.smithi145:> uname -r 2024-09-17T07:59:08.434 INFO:teuthology.orchestra.run.smithi145.stdout:5.14.0-508.el9.x86_64 2024-09-17T07:59:08.434 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-508.el9.x86_64 vs 5.14.0-508.el9.x86_64 2024-09-17T07:59:08.434 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-17T07:59:08.434 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-09-17T07:59:09.435 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-09-17T07:59:09.436 DEBUG:teuthology.orchestra.run.smithi145:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-17T07:59:09.496 INFO:teuthology.orchestra.run.smithi145.stdout:ttyS1 2024-09-17T07:59:09.527 DEBUG:teuthology.parallel:result is None 2024-09-17T07:59:12.601 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi152.front.sepia.ceph.com' 2024-09-17T07:59:12.602 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi152.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T07:59:12.992 DEBUG:teuthology.orchestra.run.smithi152:> true 2024-09-17T07:59:13.347 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi152.front.sepia.ceph.com' 2024-09-17T07:59:13.348 INFO:teuthology.task.kernel:Checking kernel version of host.c, want "5.14.0-508.el9.x86_64"... 2024-09-17T07:59:13.348 DEBUG:teuthology.orchestra.run.smithi152:> uname -r 2024-09-17T07:59:13.362 INFO:teuthology.orchestra.run.smithi152.stdout:5.14.0-508.el9.x86_64 2024-09-17T07:59:13.363 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-508.el9.x86_64 vs 5.14.0-508.el9.x86_64 2024-09-17T07:59:13.363 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-17T07:59:13.363 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-09-17T07:59:14.364 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-09-17T07:59:14.364 DEBUG:teuthology.orchestra.run.smithi152:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-17T07:59:14.466 INFO:teuthology.orchestra.run.smithi152.stdout:ttyS1 2024-09-17T07:59:14.486 DEBUG:teuthology.parallel:result is None 2024-09-17T07:59:19.246 DEBUG:teuthology.orchestra.remote:timed out 2024-09-17T07:59:31.247 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi044.front.sepia.ceph.com' 2024-09-17T07:59:31.248 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi044.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T07:59:31.651 DEBUG:teuthology.orchestra.run.smithi044:> true 2024-09-17T07:59:31.991 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi044.front.sepia.ceph.com' 2024-09-17T07:59:31.991 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.14.0-508.el9.x86_64"... 2024-09-17T07:59:31.992 DEBUG:teuthology.orchestra.run.smithi044:> uname -r 2024-09-17T07:59:32.008 INFO:teuthology.orchestra.run.smithi044.stdout:5.14.0-508.el9.x86_64 2024-09-17T07:59:32.009 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-508.el9.x86_64 vs 5.14.0-508.el9.x86_64 2024-09-17T07:59:32.009 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-17T07:59:32.009 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-09-17T07:59:33.010 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-09-17T07:59:33.010 DEBUG:teuthology.orchestra.run.smithi044:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-17T07:59:33.091 INFO:teuthology.orchestra.run.smithi044.stdout:ttyS1 2024-09-17T07:59:33.113 DEBUG:teuthology.parallel:result is None 2024-09-17T07:59:33.113 INFO:teuthology.run_tasks:Running task internal.base... 2024-09-17T07:59:33.121 INFO:teuthology.task.internal:Creating test directory... 2024-09-17T07:59:33.121 DEBUG:teuthology.orchestra.run.smithi044:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-17T07:59:33.124 DEBUG:teuthology.orchestra.run.smithi145:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-17T07:59:33.127 DEBUG:teuthology.orchestra.run.smithi152:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-17T07:59:33.146 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-09-17T07:59:33.196 INFO:teuthology.run_tasks:Running task internal.archive... 2024-09-17T07:59:33.252 INFO:teuthology.task.internal:Creating archive directory... 2024-09-17T07:59:33.253 DEBUG:teuthology.orchestra.run.smithi044:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-17T07:59:33.256 DEBUG:teuthology.orchestra.run.smithi145:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-17T07:59:33.258 DEBUG:teuthology.orchestra.run.smithi152:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-17T07:59:33.298 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-09-17T07:59:33.306 INFO:teuthology.task.internal:Enabling coredump saving... 2024-09-17T07:59:33.306 DEBUG:teuthology.orchestra.run.smithi044:> 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-17T07:59:33.326 DEBUG:teuthology.orchestra.run.smithi145:> 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-17T07:59:33.329 DEBUG:teuthology.orchestra.run.smithi152:> 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-17T07:59:33.362 INFO:teuthology.orchestra.run.smithi145.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T07:59:33.364 INFO:teuthology.orchestra.run.smithi152.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T07:59:33.369 INFO:teuthology.orchestra.run.smithi044.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T07:59:33.373 INFO:teuthology.orchestra.run.smithi145.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T07:59:33.375 INFO:teuthology.orchestra.run.smithi152.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T07:59:33.381 INFO:teuthology.orchestra.run.smithi044.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T07:59:33.383 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-09-17T07:59:33.390 INFO:teuthology.task.internal:Configuring sudo... 2024-09-17T07:59:33.390 DEBUG:teuthology.orchestra.run.smithi044:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-17T07:59:33.392 DEBUG:teuthology.orchestra.run.smithi145:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-17T07:59:33.418 DEBUG:teuthology.orchestra.run.smithi152:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-17T07:59:33.446 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-09-17T07:59:33.456 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-09-17T07:59:33.456 DEBUG:teuthology.orchestra.run.smithi044:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-17T07:59:33.462 DEBUG:teuthology.orchestra.run.smithi145:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-17T07:59:33.486 DEBUG:teuthology.orchestra.run.smithi152:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-17T07:59:33.504 DEBUG:teuthology.orchestra.run.smithi044:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T07:59:33.559 DEBUG:teuthology.orchestra.run.smithi044:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T07:59:33.616 DEBUG:teuthology.orchestra.run.smithi044:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T07:59:33.695 DEBUG:teuthology.orchestra.run.smithi044:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T07:59:33.742 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-09-17T07:59:33.742 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-17T07:59:33.809 DEBUG:teuthology.orchestra.run.smithi145:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T07:59:33.850 DEBUG:teuthology.orchestra.run.smithi145:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T07:59:33.909 DEBUG:teuthology.orchestra.run.smithi145:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T07:59:33.989 DEBUG:teuthology.orchestra.run.smithi145:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T07:59:34.037 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-17T07:59:34.037 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-17T07:59:34.104 DEBUG:teuthology.orchestra.run.smithi152:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T07:59:34.140 DEBUG:teuthology.orchestra.run.smithi152:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T07:59:34.211 DEBUG:teuthology.orchestra.run.smithi152:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T07:59:34.251 DEBUG:teuthology.orchestra.run.smithi152:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T07:59:34.297 DEBUG:teuthology.orchestra.run.smithi152:> set -ex 2024-09-17T07:59:34.297 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-17T07:59:34.364 DEBUG:teuthology.orchestra.run.smithi044:> sudo service rsyslog restart 2024-09-17T07:59:34.367 DEBUG:teuthology.orchestra.run.smithi145:> sudo service rsyslog restart 2024-09-17T07:59:34.370 DEBUG:teuthology.orchestra.run.smithi152:> sudo service rsyslog restart 2024-09-17T07:59:34.411 INFO:teuthology.orchestra.run.smithi145.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-17T07:59:34.419 INFO:teuthology.orchestra.run.smithi044.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-17T07:59:34.457 INFO:teuthology.orchestra.run.smithi152.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-17T07:59:34.792 INFO:teuthology.run_tasks:Running task internal.timer... 2024-09-17T07:59:34.800 INFO:teuthology.task.internal:Starting timer... 2024-09-17T07:59:34.800 INFO:teuthology.run_tasks:Running task pcp... 2024-09-17T07:59:34.831 INFO:teuthology.run_tasks:Running task selinux... 2024-09-17T07:59:34.863 DEBUG:teuthology.task:Applying overrides for task selinux: {'whitelist': ['scontext=system_u:system_r:logrotate_t:s0']} 2024-09-17T07:59:34.863 DEBUG:teuthology.orchestra.run.smithi044:> sudo service auditd rotate 2024-09-17T07:59:34.925 INFO:teuthology.orchestra.run.smithi044.stdout:Rotating logs: 2024-09-17T07:59:34.927 DEBUG:teuthology.orchestra.run.smithi145:> sudo service auditd rotate 2024-09-17T07:59:34.968 INFO:teuthology.orchestra.run.smithi145.stdout:Rotating logs: 2024-09-17T07:59:34.970 DEBUG:teuthology.orchestra.run.smithi152:> sudo service auditd rotate 2024-09-17T07:59:35.030 INFO:teuthology.orchestra.run.smithi152.stdout:Rotating logs: 2024-09-17T07:59:35.032 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-09-17T07:59:35.032 DEBUG:teuthology.orchestra.run.smithi044:> /usr/sbin/getenforce 2024-09-17T07:59:35.060 INFO:teuthology.orchestra.run.smithi044.stdout:Permissive 2024-09-17T07:59:35.060 DEBUG:teuthology.orchestra.run.smithi145:> /usr/sbin/getenforce 2024-09-17T07:59:35.081 INFO:teuthology.orchestra.run.smithi145.stdout:Permissive 2024-09-17T07:59:35.082 DEBUG:teuthology.orchestra.run.smithi152:> /usr/sbin/getenforce 2024-09-17T07:59:35.108 INFO:teuthology.orchestra.run.smithi152.stdout:Permissive 2024-09-17T07:59:35.109 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi044.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi145.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi152.front.sepia.ceph.com': 'permissive'} 2024-09-17T07:59:35.109 DEBUG:teuthology.orchestra.run.smithi044:> 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-17T07:59:35.140 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T07:59:35.141 DEBUG:teuthology.orchestra.run.smithi145:> 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-17T07:59:35.170 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T07:59:35.170 DEBUG:teuthology.orchestra.run.smithi152:> 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-17T07:59:35.200 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T07:59:35.200 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-09-17T07:59:35.201 DEBUG:teuthology.orchestra.run.smithi044:> sudo /usr/sbin/setenforce permissive 2024-09-17T07:59:35.241 DEBUG:teuthology.orchestra.run.smithi145:> sudo /usr/sbin/setenforce permissive 2024-09-17T07:59:35.291 DEBUG:teuthology.orchestra.run.smithi152:> sudo /usr/sbin/setenforce permissive 2024-09-17T07:59:35.328 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-09-17T07:59:35.338 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-09-17T07:59:35.351 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-17T07:59:35.352 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi044.front.sepia.ceph.com,smithi145.front.sepia.ceph.com,smithi152.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-09-17T08:03:23.203 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi044.front.sepia.ceph.com'), Remote(name='ubuntu@smithi145.front.sepia.ceph.com'), Remote(name='ubuntu@smithi152.front.sepia.ceph.com')] 2024-09-17T08:03:23.204 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi044.front.sepia.ceph.com' 2024-09-17T08:03:23.206 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi044.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T08:03:23.285 DEBUG:teuthology.orchestra.run.smithi044:> true 2024-09-17T08:03:23.363 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi044.front.sepia.ceph.com' 2024-09-17T08:03:23.363 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi145.front.sepia.ceph.com' 2024-09-17T08:03:23.364 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi145.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T08:03:23.441 DEBUG:teuthology.orchestra.run.smithi145:> true 2024-09-17T08:03:23.520 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi145.front.sepia.ceph.com' 2024-09-17T08:03:23.521 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi152.front.sepia.ceph.com' 2024-09-17T08:03:23.521 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi152.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T08:03:23.600 DEBUG:teuthology.orchestra.run.smithi152:> true 2024-09-17T08:03:23.678 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi152.front.sepia.ceph.com' 2024-09-17T08:03:23.679 INFO:teuthology.run_tasks:Running task clock... 2024-09-17T08:03:23.690 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-09-17T08:03:23.690 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-17T08:03:23.690 DEBUG:teuthology.orchestra.run.smithi044:> 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-17T08:03:23.693 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-17T08:03:23.694 DEBUG:teuthology.orchestra.run.smithi145:> 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-17T08:03:23.696 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-17T08:03:23.696 DEBUG:teuthology.orchestra.run.smithi152:> 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-17T08:03:23.725 INFO:teuthology.orchestra.run.smithi145.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-17T08:03:23.726 INFO:teuthology.orchestra.run.smithi044.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-17T08:03:23.740 INFO:teuthology.orchestra.run.smithi145.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-17T08:03:23.743 INFO:teuthology.orchestra.run.smithi044.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-17T08:03:23.751 INFO:teuthology.orchestra.run.smithi152.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-17T08:03:23.766 INFO:teuthology.orchestra.run.smithi145.stderr:sudo: ntpd: command not found 2024-09-17T08:03:23.767 INFO:teuthology.orchestra.run.smithi152.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-17T08:03:23.771 INFO:teuthology.orchestra.run.smithi044.stderr:sudo: ntpd: command not found 2024-09-17T08:03:23.777 INFO:teuthology.orchestra.run.smithi145.stdout:506 Cannot talk to daemon 2024-09-17T08:03:23.783 INFO:teuthology.orchestra.run.smithi044.stdout:506 Cannot talk to daemon 2024-09-17T08:03:23.793 INFO:teuthology.orchestra.run.smithi145.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-17T08:03:23.794 INFO:teuthology.orchestra.run.smithi152.stderr:sudo: ntpd: command not found 2024-09-17T08:03:23.799 INFO:teuthology.orchestra.run.smithi044.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-17T08:03:23.805 INFO:teuthology.orchestra.run.smithi152.stdout:506 Cannot talk to daemon 2024-09-17T08:03:23.807 INFO:teuthology.orchestra.run.smithi145.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-17T08:03:23.814 INFO:teuthology.orchestra.run.smithi044.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-17T08:03:23.820 INFO:teuthology.orchestra.run.smithi152.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-17T08:03:23.835 INFO:teuthology.orchestra.run.smithi152.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-17T08:03:23.863 INFO:teuthology.orchestra.run.smithi145.stderr:bash: line 1: ntpq: command not found 2024-09-17T08:03:23.866 INFO:teuthology.orchestra.run.smithi145.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-17T08:03:23.866 INFO:teuthology.orchestra.run.smithi145.stdout:=============================================================================== 2024-09-17T08:03:23.867 INFO:teuthology.orchestra.run.smithi145.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T08:03:23.867 INFO:teuthology.orchestra.run.smithi145.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T08:03:23.867 INFO:teuthology.orchestra.run.smithi145.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T08:03:23.867 INFO:teuthology.orchestra.run.smithi145.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T08:03:23.870 INFO:teuthology.orchestra.run.smithi044.stderr:bash: line 1: ntpq: command not found 2024-09-17T08:03:23.874 INFO:teuthology.orchestra.run.smithi044.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-17T08:03:23.874 INFO:teuthology.orchestra.run.smithi044.stdout:=============================================================================== 2024-09-17T08:03:23.874 INFO:teuthology.orchestra.run.smithi044.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T08:03:23.874 INFO:teuthology.orchestra.run.smithi044.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T08:03:23.874 INFO:teuthology.orchestra.run.smithi044.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T08:03:23.874 INFO:teuthology.orchestra.run.smithi044.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T08:03:23.892 INFO:teuthology.orchestra.run.smithi152.stderr:bash: line 1: ntpq: command not found 2024-09-17T08:03:23.897 INFO:teuthology.orchestra.run.smithi152.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-17T08:03:23.897 INFO:teuthology.orchestra.run.smithi152.stdout:=============================================================================== 2024-09-17T08:03:23.897 INFO:teuthology.orchestra.run.smithi152.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T08:03:23.897 INFO:teuthology.orchestra.run.smithi152.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T08:03:23.897 INFO:teuthology.orchestra.run.smithi152.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T08:03:23.897 INFO:teuthology.orchestra.run.smithi152.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T08:03:23.898 INFO:teuthology.run_tasks:Running task pexec... 2024-09-17T08:03:23.908 INFO:teuthology.task.pexec:Executing custom commands... 2024-09-17T08:03:23.908 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi044.front.sepia.ceph.com 2024-09-17T08:03:23.908 DEBUG:teuthology.orchestra.run.smithi044:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-09-17T08:03:23.908 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi145.front.sepia.ceph.com 2024-09-17T08:03:23.909 DEBUG:teuthology.orchestra.run.smithi145:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-09-17T08:03:23.909 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi152.front.sepia.ceph.com 2024-09-17T08:03:23.909 DEBUG:teuthology.orchestra.run.smithi152:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-09-17T08:03:24.257 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-17T08:03:24.267 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:03:24.267 INFO:teuthology.orchestra.run.smithi145.stdout: Package Architecture Version Repository Size 2024-09-17T08:03:24.267 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:03:24.267 INFO:teuthology.orchestra.run.smithi145.stdout:Removing: 2024-09-17T08:03:24.267 INFO:teuthology.orchestra.run.smithi145.stdout: nvme-cli x86_64 2.9.1-6.el9 @baseos 5.3 M 2024-09-17T08:03:24.267 INFO:teuthology.orchestra.run.smithi145.stdout:Removing unused dependencies: 2024-09-17T08:03:24.268 INFO:teuthology.orchestra.run.smithi145.stdout: libnvme x86_64 1.9-3.el9 @baseos 273 k 2024-09-17T08:03:24.268 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:03:24.268 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-17T08:03:24.268 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:03:24.268 INFO:teuthology.orchestra.run.smithi145.stdout:Remove 2 Packages 2024-09-17T08:03:24.268 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:03:24.268 INFO:teuthology.orchestra.run.smithi145.stdout:Freed space: 5.5 M 2024-09-17T08:03:24.268 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-17T08:03:24.272 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-17T08:03:24.272 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-17T08:03:24.281 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-09-17T08:03:24.285 INFO:teuthology.orchestra.run.smithi152.stdout:Dependencies resolved. 2024-09-17T08:03:24.291 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:03:24.291 INFO:teuthology.orchestra.run.smithi044.stdout: Package Architecture Version Repository Size 2024-09-17T08:03:24.291 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:03:24.291 INFO:teuthology.orchestra.run.smithi044.stdout:Removing: 2024-09-17T08:03:24.291 INFO:teuthology.orchestra.run.smithi044.stdout: nvme-cli x86_64 2.9.1-6.el9 @baseos 5.3 M 2024-09-17T08:03:24.291 INFO:teuthology.orchestra.run.smithi044.stdout:Removing unused dependencies: 2024-09-17T08:03:24.291 INFO:teuthology.orchestra.run.smithi044.stdout: libnvme x86_64 1.9-3.el9 @baseos 273 k 2024-09-17T08:03:24.291 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:03:24.291 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-09-17T08:03:24.291 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:03:24.291 INFO:teuthology.orchestra.run.smithi044.stdout:Remove 2 Packages 2024-09-17T08:03:24.291 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:03:24.292 INFO:teuthology.orchestra.run.smithi044.stdout:Freed space: 5.5 M 2024-09-17T08:03:24.292 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-09-17T08:03:24.295 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-09-17T08:03:24.296 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-09-17T08:03:24.297 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:03:24.297 INFO:teuthology.orchestra.run.smithi152.stdout: Package Architecture Version Repository Size 2024-09-17T08:03:24.298 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:03:24.298 INFO:teuthology.orchestra.run.smithi152.stdout:Removing: 2024-09-17T08:03:24.298 INFO:teuthology.orchestra.run.smithi152.stdout: nvme-cli x86_64 2.9.1-6.el9 @baseos 5.3 M 2024-09-17T08:03:24.298 INFO:teuthology.orchestra.run.smithi152.stdout:Removing unused dependencies: 2024-09-17T08:03:24.298 INFO:teuthology.orchestra.run.smithi152.stdout: libnvme x86_64 1.9-3.el9 @baseos 273 k 2024-09-17T08:03:24.298 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:03:24.298 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction Summary 2024-09-17T08:03:24.298 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:03:24.298 INFO:teuthology.orchestra.run.smithi152.stdout:Remove 2 Packages 2024-09-17T08:03:24.298 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:03:24.298 INFO:teuthology.orchestra.run.smithi152.stdout:Freed space: 5.5 M 2024-09-17T08:03:24.299 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction check 2024-09-17T08:03:24.302 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction check succeeded. 2024-09-17T08:03:24.302 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction test 2024-09-17T08:03:24.328 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-17T08:03:24.328 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-17T08:03:24.358 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-09-17T08:03:24.358 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-09-17T08:03:24.380 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction test succeeded. 2024-09-17T08:03:24.381 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction 2024-09-17T08:03:24.472 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-17T08:03:24.509 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-09-17T08:03:24.534 INFO:teuthology.orchestra.run.smithi152.stdout: Preparing : 1/1 2024-09-17T08:03:24.570 INFO:teuthology.orchestra.run.smithi145.stdout: Erasing : nvme-cli-2.9.1-6.el9.x86_64 1/2 2024-09-17T08:03:24.582 INFO:teuthology.orchestra.run.smithi044.stdout: Erasing : nvme-cli-2.9.1-6.el9.x86_64 1/2 2024-09-17T08:03:24.618 INFO:teuthology.orchestra.run.smithi152.stdout: Erasing : nvme-cli-2.9.1-6.el9.x86_64 1/2 2024-09-17T08:03:24.651 INFO:teuthology.orchestra.run.smithi044.stdout: Erasing : libnvme-1.9-3.el9.x86_64 2/2 2024-09-17T08:03:24.659 INFO:teuthology.orchestra.run.smithi145.stdout: Erasing : libnvme-1.9-3.el9.x86_64 2/2 2024-09-17T08:03:24.686 INFO:teuthology.orchestra.run.smithi152.stdout: Erasing : libnvme-1.9-3.el9.x86_64 2/2 2024-09-17T08:03:25.129 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: libnvme-1.9-3.el9.x86_64 2/2 2024-09-17T08:03:25.129 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/2 2024-09-17T08:03:25.175 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: libnvme-1.9-3.el9.x86_64 2/2 2024-09-17T08:03:25.175 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/2 2024-09-17T08:03:25.215 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: libnvme-1.9-3.el9.x86_64 2/2 2024-09-17T08:03:25.215 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/2 2024-09-17T08:03:25.363 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/2 2024-09-17T08:03:25.363 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:03:25.363 INFO:teuthology.orchestra.run.smithi044.stdout:Removed: 2024-09-17T08:03:25.363 INFO:teuthology.orchestra.run.smithi044.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-17T08:03:25.364 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:03:25.364 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-09-17T08:03:25.406 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/2 2024-09-17T08:03:25.406 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:03:25.406 INFO:teuthology.orchestra.run.smithi145.stdout:Removed: 2024-09-17T08:03:25.407 INFO:teuthology.orchestra.run.smithi145.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-17T08:03:25.407 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:03:25.407 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-17T08:03:25.496 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/2 2024-09-17T08:03:25.496 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:03:25.496 INFO:teuthology.orchestra.run.smithi152.stdout:Removed: 2024-09-17T08:03:25.496 INFO:teuthology.orchestra.run.smithi152.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-17T08:03:25.496 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:03:25.496 INFO:teuthology.orchestra.run.smithi152.stdout:Complete! 2024-09-17T08:03:26.238 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:00:52 ago on Tue 17 Sep 2024 08:02:33 AM UTC. 2024-09-17T08:03:26.257 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:00:48 ago on Tue 17 Sep 2024 08:02:38 AM UTC. 2024-09-17T08:03:26.333 INFO:teuthology.orchestra.run.smithi152.stdout:Last metadata expiration check: 0:00:52 ago on Tue 17 Sep 2024 08:02:34 AM UTC. 2024-09-17T08:03:26.371 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-17T08:03:26.371 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:03:26.371 INFO:teuthology.orchestra.run.smithi145.stdout: Package Architecture Version Repository Size 2024-09-17T08:03:26.372 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:03:26.372 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-17T08:03:26.372 INFO:teuthology.orchestra.run.smithi145.stdout: nvme-cli x86_64 2.9.1-6.el9 baseos 906 k 2024-09-17T08:03:26.372 INFO:teuthology.orchestra.run.smithi145.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-09-17T08:03:26.372 INFO:teuthology.orchestra.run.smithi145.stdout:Installing dependencies: 2024-09-17T08:03:26.372 INFO:teuthology.orchestra.run.smithi145.stdout: libnvme x86_64 1.9-3.el9 baseos 106 k 2024-09-17T08:03:26.372 INFO:teuthology.orchestra.run.smithi145.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-09-17T08:03:26.372 INFO:teuthology.orchestra.run.smithi145.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-09-17T08:03:26.372 INFO:teuthology.orchestra.run.smithi145.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-09-17T08:03:26.372 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:03:26.372 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-17T08:03:26.372 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:03:26.372 INFO:teuthology.orchestra.run.smithi145.stdout:Install 6 Packages 2024-09-17T08:03:26.373 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:03:26.379 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 2.0 M 2024-09-17T08:03:26.379 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 9.2 M 2024-09-17T08:03:26.379 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-17T08:03:26.395 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-09-17T08:03:26.395 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:03:26.395 INFO:teuthology.orchestra.run.smithi044.stdout: Package Architecture Version Repository Size 2024-09-17T08:03:26.396 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:03:26.396 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-09-17T08:03:26.396 INFO:teuthology.orchestra.run.smithi044.stdout: nvme-cli x86_64 2.9.1-6.el9 baseos 906 k 2024-09-17T08:03:26.396 INFO:teuthology.orchestra.run.smithi044.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-09-17T08:03:26.396 INFO:teuthology.orchestra.run.smithi044.stdout:Installing dependencies: 2024-09-17T08:03:26.396 INFO:teuthology.orchestra.run.smithi044.stdout: libnvme x86_64 1.9-3.el9 baseos 106 k 2024-09-17T08:03:26.396 INFO:teuthology.orchestra.run.smithi044.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-09-17T08:03:26.396 INFO:teuthology.orchestra.run.smithi044.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-09-17T08:03:26.396 INFO:teuthology.orchestra.run.smithi044.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-09-17T08:03:26.396 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:03:26.396 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-09-17T08:03:26.396 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:03:26.396 INFO:teuthology.orchestra.run.smithi044.stdout:Install 6 Packages 2024-09-17T08:03:26.397 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:03:26.402 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 2.0 M 2024-09-17T08:03:26.402 INFO:teuthology.orchestra.run.smithi044.stdout:Installed size: 9.2 M 2024-09-17T08:03:26.402 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-09-17T08:03:26.470 INFO:teuthology.orchestra.run.smithi152.stdout:Dependencies resolved. 2024-09-17T08:03:26.470 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:03:26.470 INFO:teuthology.orchestra.run.smithi152.stdout: Package Architecture Version Repository Size 2024-09-17T08:03:26.470 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:03:26.470 INFO:teuthology.orchestra.run.smithi152.stdout:Installing: 2024-09-17T08:03:26.471 INFO:teuthology.orchestra.run.smithi152.stdout: nvme-cli x86_64 2.9.1-6.el9 baseos 906 k 2024-09-17T08:03:26.471 INFO:teuthology.orchestra.run.smithi152.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-09-17T08:03:26.471 INFO:teuthology.orchestra.run.smithi152.stdout:Installing dependencies: 2024-09-17T08:03:26.471 INFO:teuthology.orchestra.run.smithi152.stdout: libnvme x86_64 1.9-3.el9 baseos 106 k 2024-09-17T08:03:26.471 INFO:teuthology.orchestra.run.smithi152.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-09-17T08:03:26.471 INFO:teuthology.orchestra.run.smithi152.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-09-17T08:03:26.471 INFO:teuthology.orchestra.run.smithi152.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-09-17T08:03:26.471 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:03:26.471 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction Summary 2024-09-17T08:03:26.471 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:03:26.471 INFO:teuthology.orchestra.run.smithi152.stdout:Install 6 Packages 2024-09-17T08:03:26.471 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:03:26.481 INFO:teuthology.orchestra.run.smithi152.stdout:Total download size: 2.0 M 2024-09-17T08:03:26.482 INFO:teuthology.orchestra.run.smithi152.stdout:Installed size: 9.2 M 2024-09-17T08:03:26.482 INFO:teuthology.orchestra.run.smithi152.stdout:Downloading Packages: 2024-09-17T08:03:26.651 INFO:teuthology.orchestra.run.smithi152.stdout:(1/6): nvmetcli-0.7-3.el9.noarch.rpm 303 kB/s | 44 kB 00:00 2024-09-17T08:03:26.676 INFO:teuthology.orchestra.run.smithi152.stdout:(2/6): libnvme-1.9-3.el9.x86_64.rpm 617 kB/s | 106 kB 00:00 2024-09-17T08:03:26.726 INFO:teuthology.orchestra.run.smithi152.stdout:(3/6): python3-kmod-0.9-32.el9.x86_64.rpm 1.6 MB/s | 84 kB 00:00 2024-09-17T08:03:26.751 INFO:teuthology.orchestra.run.smithi152.stdout:(4/6): python3-configshell-1.1.30-1.el9.noarch. 713 kB/s | 72 kB 00:00 2024-09-17T08:03:26.764 INFO:teuthology.orchestra.run.smithi145.stdout:(1/6): nvmetcli-0.7-3.el9.noarch.rpm 421 kB/s | 44 kB 00:00 2024-09-17T08:03:26.785 INFO:teuthology.orchestra.run.smithi152.stdout:(5/6): nvme-cli-2.9.1-6.el9.x86_64.rpm 3.1 MB/s | 906 kB 00:00 2024-09-17T08:03:26.789 INFO:teuthology.orchestra.run.smithi145.stdout:(2/6): libnvme-1.9-3.el9.x86_64.rpm 810 kB/s | 106 kB 00:00 2024-09-17T08:03:26.823 INFO:teuthology.orchestra.run.smithi145.stdout:(3/6): python3-configshell-1.1.30-1.el9.noarch. 1.2 MB/s | 72 kB 00:00 2024-09-17T08:03:26.848 INFO:teuthology.orchestra.run.smithi145.stdout:(4/6): python3-kmod-0.9-32.el9.x86_64.rpm 1.4 MB/s | 84 kB 00:00 2024-09-17T08:03:26.882 INFO:teuthology.orchestra.run.smithi145.stdout:(5/6): nvme-cli-2.9.1-6.el9.x86_64.rpm 4.0 MB/s | 906 kB 00:00 2024-09-17T08:03:26.885 INFO:teuthology.orchestra.run.smithi152.stdout:(6/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 5.2 MB/s | 837 kB 00:00 2024-09-17T08:03:26.885 INFO:teuthology.orchestra.run.smithi152.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:03:26.885 INFO:teuthology.orchestra.run.smithi152.stdout:Total 5.0 MB/s | 2.0 MB 00:00 2024-09-17T08:03:26.932 INFO:teuthology.orchestra.run.smithi145.stdout:(6/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 7.5 MB/s | 837 kB 00:00 2024-09-17T08:03:26.933 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:03:26.933 INFO:teuthology.orchestra.run.smithi145.stdout:Total 3.6 MB/s | 2.0 MB 00:00 2024-09-17T08:03:26.960 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction check 2024-09-17T08:03:26.974 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction check succeeded. 2024-09-17T08:03:26.974 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction test 2024-09-17T08:03:27.007 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-17T08:03:27.020 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-17T08:03:27.021 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-17T08:03:27.154 INFO:teuthology.orchestra.run.smithi044.stdout:(1/6): nvmetcli-0.7-3.el9.noarch.rpm 71 kB/s | 44 kB 00:00 2024-09-17T08:03:27.188 INFO:teuthology.orchestra.run.smithi044.stdout:(2/6): libnvme-1.9-3.el9.x86_64.rpm 161 kB/s | 106 kB 00:00 2024-09-17T08:03:27.242 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction test succeeded. 2024-09-17T08:03:27.242 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction 2024-09-17T08:03:27.264 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-17T08:03:27.265 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-17T08:03:27.488 INFO:teuthology.orchestra.run.smithi044.stdout:(3/6): nvme-cli-2.9.1-6.el9.x86_64.rpm 944 kB/s | 906 kB 00:00 2024-09-17T08:03:27.666 INFO:teuthology.orchestra.run.smithi152.stdout: Preparing : 1/1 2024-09-17T08:03:27.685 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-17T08:03:27.755 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2024-09-17T08:03:27.768 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2024-09-17T08:03:27.788 INFO:teuthology.orchestra.run.smithi044.stdout:(4/6): python3-configshell-1.1.30-1.el9.noarch. 113 kB/s | 72 kB 00:00 2024-09-17T08:03:27.797 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 2/6 2024-09-17T08:03:27.802 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 2/6 2024-09-17T08:03:27.832 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 3/6 2024-09-17T08:03:27.834 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 3/6 2024-09-17T08:03:27.838 INFO:teuthology.orchestra.run.smithi044.stdout:(5/6): python3-kmod-0.9-32.el9.x86_64.rpm 129 kB/s | 84 kB 00:00 2024-09-17T08:03:28.045 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : libnvme-1.9-3.el9.x86_64 4/6 2024-09-17T08:03:28.046 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : libnvme-1.9-3.el9.x86_64 4/6 2024-09-17T08:03:28.081 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-17T08:03:28.082 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-17T08:03:28.455 INFO:teuthology.orchestra.run.smithi044.stdout:(6/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 867 kB/s | 837 kB 00:00 2024-09-17T08:03:28.455 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:03:28.456 INFO:teuthology.orchestra.run.smithi044.stdout:Total 999 kB/s | 2.0 MB 00:02 2024-09-17T08:03:28.515 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-17T08:03:28.516 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-17T08:03:28.539 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-09-17T08:03:28.543 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : nvmetcli-0.7-3.el9.noarch 6/6 2024-09-17T08:03:28.546 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : nvmetcli-0.7-3.el9.noarch 6/6 2024-09-17T08:03:28.555 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-09-17T08:03:28.555 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-09-17T08:03:28.821 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-09-17T08:03:28.822 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-09-17T08:03:29.257 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-09-17T08:03:29.359 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2024-09-17T08:03:29.401 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 2/6 2024-09-17T08:03:29.429 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 3/6 2024-09-17T08:03:29.479 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 6/6 2024-09-17T08:03:29.479 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/6 2024-09-17T08:03:29.479 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/6 2024-09-17T08:03:29.479 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 3/6 2024-09-17T08:03:29.479 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 4/6 2024-09-17T08:03:29.479 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 5/6 2024-09-17T08:03:29.515 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 6/6 2024-09-17T08:03:29.515 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/6 2024-09-17T08:03:29.515 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/6 2024-09-17T08:03:29.515 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 3/6 2024-09-17T08:03:29.515 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 4/6 2024-09-17T08:03:29.515 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 5/6 2024-09-17T08:03:29.653 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : libnvme-1.9-3.el9.x86_64 4/6 2024-09-17T08:03:29.702 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-17T08:03:29.845 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2024-09-17T08:03:29.845 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:03:29.845 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-17T08:03:29.845 INFO:teuthology.orchestra.run.smithi145.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-17T08:03:29.845 INFO:teuthology.orchestra.run.smithi145.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-09-17T08:03:29.846 INFO:teuthology.orchestra.run.smithi145.stdout: python3-kmod-0.9-32.el9.x86_64 python3-urwid-2.1.2-4.el9.x86_64 2024-09-17T08:03:29.846 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:03:29.846 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-17T08:03:29.873 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2024-09-17T08:03:29.873 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:03:29.874 INFO:teuthology.orchestra.run.smithi152.stdout:Installed: 2024-09-17T08:03:29.874 INFO:teuthology.orchestra.run.smithi152.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-17T08:03:29.874 INFO:teuthology.orchestra.run.smithi152.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-09-17T08:03:29.874 INFO:teuthology.orchestra.run.smithi152.stdout: python3-kmod-0.9-32.el9.x86_64 python3-urwid-2.1.2-4.el9.x86_64 2024-09-17T08:03:29.874 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:03:29.874 INFO:teuthology.orchestra.run.smithi152.stdout:Complete! 2024-09-17T08:03:30.121 DEBUG:teuthology.parallel:result is None 2024-09-17T08:03:30.182 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-17T08:03:30.190 DEBUG:teuthology.parallel:result is None 2024-09-17T08:03:30.215 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : nvmetcli-0.7-3.el9.noarch 6/6 2024-09-17T08:03:31.195 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 6/6 2024-09-17T08:03:31.196 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/6 2024-09-17T08:03:31.196 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/6 2024-09-17T08:03:31.196 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 3/6 2024-09-17T08:03:31.196 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 4/6 2024-09-17T08:03:31.196 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 5/6 2024-09-17T08:03:31.514 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2024-09-17T08:03:31.514 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:03:31.514 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-09-17T08:03:31.514 INFO:teuthology.orchestra.run.smithi044.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-17T08:03:31.514 INFO:teuthology.orchestra.run.smithi044.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-09-17T08:03:31.514 INFO:teuthology.orchestra.run.smithi044.stdout: python3-kmod-0.9-32.el9.x86_64 python3-urwid-2.1.2-4.el9.x86_64 2024-09-17T08:03:31.514 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:03:31.514 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-09-17T08:03:31.834 DEBUG:teuthology.parallel:result is None 2024-09-17T08:03:31.834 INFO:teuthology.run_tasks:Running task install... 2024-09-17T08:03:31.847 DEBUG:teuthology.task.install:project ceph 2024-09-17T08:03:31.847 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': '19e2a2beb6f41a3ab62650e38614eb29b59dcbb9'}} 2024-09-17T08:03:31.847 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': '19e2a2beb6f41a3ab62650e38614eb29b59dcbb9'} 2024-09-17T08:03:31.847 INFO:teuthology.task.install:Using flavor: default 2024-09-17T08:03:31.853 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-17T08:03:31.853 INFO:teuthology.task.install:extra packages: [] 2024-09-17T08:03:31.854 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': '19e2a2beb6f41a3ab62650e38614eb29b59dcbb9', 'tag': None, 'wait_for_package': False} 2024-09-17T08:03:31.854 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 2024-09-17T08:03:31.856 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': '19e2a2beb6f41a3ab62650e38614eb29b59dcbb9', 'tag': None, 'wait_for_package': False} 2024-09-17T08:03:31.857 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 2024-09-17T08:03:31.857 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': '19e2a2beb6f41a3ab62650e38614eb29b59dcbb9', 'tag': None, 'wait_for_package': False} 2024-09-17T08:03:31.858 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 2024-09-17T08:03:32.005 INFO:teuthology.task.install.rpm:Pulling from https://4.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/centos/9/flavors/default/ 2024-09-17T08:03:32.005 INFO:teuthology.task.install.rpm:Package version is 18.2.4-855.g19e2a2be 2024-09-17T08:03:32.008 INFO:teuthology.task.install.rpm:Pulling from https://4.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/centos/9/flavors/default/ 2024-09-17T08:03:32.009 INFO:teuthology.task.install.rpm:Package version is 18.2.4-855.g19e2a2be 2024-09-17T08:03:32.011 INFO:teuthology.task.install.rpm:Pulling from https://4.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/centos/9/flavors/default/ 2024-09-17T08:03:32.012 INFO:teuthology.task.install.rpm:Package version is 18.2.4-855.g19e2a2be 2024-09-17T08:03:32.113 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://4.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://4.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://4.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-09-17T08:03:32.113 DEBUG:teuthology.orchestra.run.smithi152:> set -ex 2024-09-17T08:03:32.113 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-09-17T08:03:32.122 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://4.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://4.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://4.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-09-17T08:03:32.122 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-17T08:03:32.122 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-09-17T08:03:32.125 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://4.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://4.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://4.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-09-17T08:03:32.126 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-09-17T08:03:32.126 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-09-17T08:03:32.147 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-17T08:03:32.148 DEBUG:teuthology.orchestra.run.smithi152:> 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/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-09-17T08:03:32.155 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-17T08:03:32.156 DEBUG:teuthology.orchestra.run.smithi145:> 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/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-09-17T08:03:32.156 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-17T08:03:32.157 DEBUG:teuthology.orchestra.run.smithi044:> 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/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-09-17T08:03:32.216 DEBUG:teuthology.orchestra.run.smithi152:> 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-17T08:03:32.225 DEBUG:teuthology.orchestra.run.smithi044:> 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-17T08:03:32.226 DEBUG:teuthology.orchestra.run.smithi145:> 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-17T08:03:32.295 DEBUG:teuthology.orchestra.run.smithi152:> 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-17T08:03:32.302 DEBUG:teuthology.orchestra.run.smithi044:> 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-17T08:03:32.307 DEBUG:teuthology.orchestra.run.smithi145:> 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-17T08:03:32.361 INFO:teuthology.orchestra.run.smithi152.stdout:check_obsoletes = 1 2024-09-17T08:03:32.362 DEBUG:teuthology.orchestra.run.smithi152:> sudo yum clean all 2024-09-17T08:03:32.367 INFO:teuthology.orchestra.run.smithi044.stdout:check_obsoletes = 1 2024-09-17T08:03:32.369 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum clean all 2024-09-17T08:03:32.373 INFO:teuthology.orchestra.run.smithi145.stdout:check_obsoletes = 1 2024-09-17T08:03:32.375 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum clean all 2024-09-17T08:03:32.586 INFO:teuthology.orchestra.run.smithi152.stdout:45 files removed 2024-09-17T08:03:32.595 INFO:teuthology.orchestra.run.smithi145.stdout:45 files removed 2024-09-17T08:03:32.598 INFO:teuthology.orchestra.run.smithi044.stdout:45 files removed 2024-09-17T08:03:32.611 DEBUG:teuthology.orchestra.run.smithi152:> sudo yum -y install ceph-radosgw 2024-09-17T08:03:32.622 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install ceph-radosgw 2024-09-17T08:03:32.625 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install ceph-radosgw 2024-09-17T08:03:33.155 INFO:teuthology.orchestra.run.smithi145.stdout:ceph packages for x86_64 311 kB/s | 77 kB 00:00 2024-09-17T08:03:33.164 INFO:teuthology.orchestra.run.smithi152.stdout:ceph packages for x86_64 290 kB/s | 77 kB 00:00 2024-09-17T08:03:33.203 INFO:teuthology.orchestra.run.smithi044.stdout:ceph packages for x86_64 277 kB/s | 77 kB 00:00 2024-09-17T08:03:33.423 INFO:teuthology.orchestra.run.smithi145.stdout:ceph noarch packages 51 kB/s | 11 kB 00:00 2024-09-17T08:03:33.431 INFO:teuthology.orchestra.run.smithi152.stdout:ceph noarch packages 51 kB/s | 11 kB 00:00 2024-09-17T08:03:33.504 INFO:teuthology.orchestra.run.smithi044.stdout:ceph noarch packages 45 kB/s | 11 kB 00:00 2024-09-17T08:03:33.690 INFO:teuthology.orchestra.run.smithi145.stdout:ceph source packages 8.1 kB/s | 1.9 kB 00:00 2024-09-17T08:03:33.699 INFO:teuthology.orchestra.run.smithi152.stdout:ceph source packages 8.1 kB/s | 1.9 kB 00:00 2024-09-17T08:03:33.804 INFO:teuthology.orchestra.run.smithi044.stdout:ceph source packages 7.2 kB/s | 1.9 kB 00:00 2024-09-17T08:03:34.262 INFO:teuthology.orchestra.run.smithi044.stdout:CentOS Stream 9 - BaseOS 20 MB/s | 8.3 MB 00:00 2024-09-17T08:03:35.340 INFO:teuthology.orchestra.run.smithi152.stdout:CentOS Stream 9 - BaseOS 5.1 MB/s | 8.3 MB 00:01 2024-09-17T08:03:36.106 INFO:teuthology.orchestra.run.smithi044.stdout:CentOS Stream 9 - AppStream 28 MB/s | 20 MB 00:00 2024-09-17T08:03:36.198 INFO:teuthology.orchestra.run.smithi145.stdout:CentOS Stream 9 - BaseOS 3.3 MB/s | 8.3 MB 00:02 2024-09-17T08:03:40.773 INFO:teuthology.orchestra.run.smithi044.stdout:CentOS Stream 9 - CRB 9.2 MB/s | 6.5 MB 00:00 2024-09-17T08:03:42.532 INFO:teuthology.orchestra.run.smithi044.stdout:CentOS Stream 9 - Extras packages 41 kB/s | 19 kB 00:00 2024-09-17T08:03:43.670 INFO:teuthology.orchestra.run.smithi044.stdout:Extra Packages for Enterprise Linux 22 MB/s | 23 MB 00:01 2024-09-17T08:03:44.041 INFO:teuthology.orchestra.run.smithi152.stdout:CentOS Stream 9 - AppStream 2.7 MB/s | 20 MB 00:07 2024-09-17T08:03:49.293 INFO:teuthology.orchestra.run.smithi044.stdout:lab-extras 30 kB/s | 1.7 kB 00:00 2024-09-17T08:03:49.508 INFO:teuthology.orchestra.run.smithi152.stdout:CentOS Stream 9 - CRB 3.8 MB/s | 6.5 MB 00:01 2024-09-17T08:03:51.100 INFO:teuthology.orchestra.run.smithi152.stdout:CentOS Stream 9 - Extras packages 85 kB/s | 19 kB 00:00 2024-09-17T08:03:51.706 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-09-17T08:03:51.708 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:03:51.708 INFO:teuthology.orchestra.run.smithi044.stdout: Package Arch Version Repository Size 2024-09-17T08:03:51.708 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:03:51.708 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-09-17T08:03:51.709 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-radosgw x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 7.7 M 2024-09-17T08:03:51.709 INFO:teuthology.orchestra.run.smithi044.stdout:Upgrading: 2024-09-17T08:03:51.709 INFO:teuthology.orchestra.run.smithi044.stdout: librados2 x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 3.3 M 2024-09-17T08:03:51.709 INFO:teuthology.orchestra.run.smithi044.stdout: librbd1 x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 3.0 M 2024-09-17T08:03:51.709 INFO:teuthology.orchestra.run.smithi044.stdout:Installing dependencies: 2024-09-17T08:03:51.709 INFO:teuthology.orchestra.run.smithi044.stdout: boost-program-options x86_64 1.75.0-8.el9 appstream 107 k 2024-09-17T08:03:51.709 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-base x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 5.1 M 2024-09-17T08:03:51.709 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-common x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 18 M 2024-09-17T08:03:51.709 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-selinux x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 25 k 2024-09-17T08:03:51.709 INFO:teuthology.orchestra.run.smithi044.stdout: fmt x86_64 8.1.1-5.el9 epel 111 k 2024-09-17T08:03:51.709 INFO:teuthology.orchestra.run.smithi044.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2024-09-17T08:03:51.710 INFO:teuthology.orchestra.run.smithi044.stdout: libarrow x86_64 9.0.0-11.el9 epel 4.4 M 2024-09-17T08:03:51.710 INFO:teuthology.orchestra.run.smithi044.stdout: libarrow-doc noarch 9.0.0-11.el9 epel 26 k 2024-09-17T08:03:51.710 INFO:teuthology.orchestra.run.smithi044.stdout: libcephfs2 x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 712 k 2024-09-17T08:03:51.710 INFO:teuthology.orchestra.run.smithi044.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-09-17T08:03:51.710 INFO:teuthology.orchestra.run.smithi044.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-09-17T08:03:51.710 INFO:teuthology.orchestra.run.smithi044.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-09-17T08:03:51.710 INFO:teuthology.orchestra.run.smithi044.stdout: libradosstriper1 x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 477 k 2024-09-17T08:03:51.710 INFO:teuthology.orchestra.run.smithi044.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-09-17T08:03:51.710 INFO:teuthology.orchestra.run.smithi044.stdout: librgw2 x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 4.5 M 2024-09-17T08:03:51.710 INFO:teuthology.orchestra.run.smithi044.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-09-17T08:03:51.710 INFO:teuthology.orchestra.run.smithi044.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-09-17T08:03:51.710 INFO:teuthology.orchestra.run.smithi044.stdout: parquet-libs x86_64 9.0.0-11.el9 epel 839 k 2024-09-17T08:03:51.710 INFO:teuthology.orchestra.run.smithi044.stdout: python3-ceph-argparse x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 45 k 2024-09-17T08:03:51.711 INFO:teuthology.orchestra.run.smithi044.stdout: python3-ceph-common x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 129 k 2024-09-17T08:03:51.711 INFO:teuthology.orchestra.run.smithi044.stdout: python3-cephfs x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 162 k 2024-09-17T08:03:51.711 INFO:teuthology.orchestra.run.smithi044.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-09-17T08:03:51.711 INFO:teuthology.orchestra.run.smithi044.stdout: python3-rados x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 321 k 2024-09-17T08:03:51.711 INFO:teuthology.orchestra.run.smithi044.stdout: python3-rbd x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 300 k 2024-09-17T08:03:51.711 INFO:teuthology.orchestra.run.smithi044.stdout: python3-rgw x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 99 k 2024-09-17T08:03:51.711 INFO:teuthology.orchestra.run.smithi044.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2024-09-17T08:03:51.711 INFO:teuthology.orchestra.run.smithi044.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-09-17T08:03:51.711 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:03:51.711 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-09-17T08:03:51.711 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:03:51.712 INFO:teuthology.orchestra.run.smithi044.stdout:Install 28 Packages 2024-09-17T08:03:51.712 INFO:teuthology.orchestra.run.smithi044.stdout:Upgrade 2 Packages 2024-09-17T08:03:51.712 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:03:51.712 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 53 M 2024-09-17T08:03:51.713 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-09-17T08:03:52.013 INFO:teuthology.orchestra.run.smithi152.stdout:Extra Packages for Enterprise Linux 29 MB/s | 23 MB 00:00 2024-09-17T08:03:52.635 INFO:teuthology.orchestra.run.smithi044.stdout:(1/30): ceph-base-18.2.4-855.g19e2a2be.el9.x86_ 9.1 MB/s | 5.1 MB 00:00 2024-09-17T08:03:52.686 INFO:teuthology.orchestra.run.smithi044.stdout:(2/30): ceph-selinux-18.2.4-855.g19e2a2be.el9.x 504 kB/s | 25 kB 00:00 2024-09-17T08:03:52.770 INFO:teuthology.orchestra.run.smithi044.stdout:(3/30): libcephfs2-18.2.4-855.g19e2a2be.el9.x86 8.4 MB/s | 712 kB 00:00 2024-09-17T08:03:52.903 INFO:teuthology.orchestra.run.smithi044.stdout:(4/30): ceph-radosgw-18.2.4-855.g19e2a2be.el9.x 9.4 MB/s | 7.7 MB 00:00 2024-09-17T08:03:52.937 INFO:teuthology.orchestra.run.smithi044.stdout:(5/30): libradosstriper1-18.2.4-855.g19e2a2be.e 2.8 MB/s | 477 kB 00:00 2024-09-17T08:03:52.987 INFO:teuthology.orchestra.run.smithi044.stdout:(6/30): python3-ceph-argparse-18.2.4-855.g19e2a 905 kB/s | 45 kB 00:00 2024-09-17T08:03:53.179 INFO:teuthology.orchestra.run.smithi044.stdout:(7/30): ceph-common-18.2.4-855.g19e2a2be.el9.x8 17 MB/s | 18 MB 00:01 2024-09-17T08:03:53.204 INFO:teuthology.orchestra.run.smithi044.stdout:(8/30): python3-ceph-common-18.2.4-855.g19e2a2b 596 kB/s | 129 kB 00:00 2024-09-17T08:03:53.229 INFO:teuthology.orchestra.run.smithi044.stdout:(9/30): python3-cephfs-18.2.4-855.g19e2a2be.el9 3.2 MB/s | 162 kB 00:00 2024-09-17T08:03:53.263 INFO:teuthology.orchestra.run.smithi044.stdout:(10/30): python3-rados-18.2.4-855.g19e2a2be.el9 5.4 MB/s | 321 kB 00:00 2024-09-17T08:03:53.288 INFO:teuthology.orchestra.run.smithi044.stdout:(11/30): python3-rbd-18.2.4-855.g19e2a2be.el9.x 5.0 MB/s | 300 kB 00:00 2024-09-17T08:03:53.313 INFO:teuthology.orchestra.run.smithi044.stdout:(12/30): python3-rgw-18.2.4-855.g19e2a2be.el9.x 1.9 MB/s | 99 kB 00:00 2024-09-17T08:03:53.389 INFO:teuthology.orchestra.run.smithi044.stdout:(13/30): librgw2-18.2.4-855.g19e2a2be.el9.x86_6 9.2 MB/s | 4.5 MB 00:00 2024-09-17T08:03:53.447 INFO:teuthology.orchestra.run.smithi044.stdout:(14/30): boost-program-options-1.75.0-8.el9.x86 673 kB/s | 107 kB 00:00 2024-09-17T08:03:53.473 INFO:teuthology.orchestra.run.smithi044.stdout:(15/30): librabbitmq-0.11.0-7.el9.x86_64.rpm 542 kB/s | 45 kB 00:00 2024-09-17T08:03:53.506 INFO:teuthology.orchestra.run.smithi044.stdout:(16/30): libpmemobj-1.12.1-1.el9.x86_64.rpm 832 kB/s | 160 kB 00:00 2024-09-17T08:03:53.548 INFO:teuthology.orchestra.run.smithi044.stdout:(17/30): librdkafka-1.6.1-102.el9.x86_64.rpm 6.4 MB/s | 662 kB 00:00 2024-09-17T08:03:53.573 INFO:teuthology.orchestra.run.smithi044.stdout:(18/30): python3-prettytable-0.7.2-27.el9.noarc 631 kB/s | 42 kB 00:00 2024-09-17T08:03:53.599 INFO:teuthology.orchestra.run.smithi044.stdout:(19/30): lttng-ust-2.12.0-6.el9.x86_64.rpm 2.3 MB/s | 292 kB 00:00 2024-09-17T08:03:53.658 INFO:teuthology.orchestra.run.smithi044.stdout:(20/30): fmt-8.1.1-5.el9.x86_64.rpm 1.0 MB/s | 111 kB 00:00 2024-09-17T08:03:53.683 INFO:teuthology.orchestra.run.smithi044.stdout:(21/30): libarrow-doc-9.0.0-11.el9.noarch.rpm 1.1 MB/s | 26 kB 00:00 2024-09-17T08:03:53.708 INFO:teuthology.orchestra.run.smithi044.stdout:(22/30): gperftools-libs-2.9.1-3.el9.x86_64.rpm 2.2 MB/s | 308 kB 00:00 2024-09-17T08:03:53.734 INFO:teuthology.orchestra.run.smithi044.stdout:(23/30): liboath-2.6.7-2.el9.x86_64.rpm 967 kB/s | 49 kB 00:00 2024-09-17T08:03:53.759 INFO:teuthology.orchestra.run.smithi044.stdout:(24/30): libunwind-1.6.2-1.el9.x86_64.rpm 1.3 MB/s | 67 kB 00:00 2024-09-17T08:03:53.801 INFO:teuthology.orchestra.run.smithi044.stdout:(25/30): parquet-libs-9.0.0-11.el9.x86_64.rpm 12 MB/s | 839 kB 00:00 2024-09-17T08:03:53.826 INFO:teuthology.orchestra.run.smithi044.stdout:(26/30): re2-20211101-20.el9.x86_64.rpm 2.8 MB/s | 191 kB 00:00 2024-09-17T08:03:53.893 INFO:teuthology.orchestra.run.smithi044.stdout:(27/30): thrift-0.15.0-2.el9.x86_64.rpm 17 MB/s | 1.6 MB 00:00 2024-09-17T08:03:53.968 INFO:teuthology.orchestra.run.smithi044.stdout:(28/30): libarrow-9.0.0-11.el9.x86_64.rpm 13 MB/s | 4.4 MB 00:00 2024-09-17T08:03:54.035 INFO:teuthology.orchestra.run.smithi044.stdout:(29/30): librados2-18.2.4-855.g19e2a2be.el9.x86 16 MB/s | 3.3 MB 00:00 2024-09-17T08:03:54.152 INFO:teuthology.orchestra.run.smithi044.stdout:(30/30): librbd1-18.2.4-855.g19e2a2be.el9.x86_6 12 MB/s | 3.0 MB 00:00 2024-09-17T08:03:54.157 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:03:54.157 INFO:teuthology.orchestra.run.smithi044.stdout:Total 22 MB/s | 53 MB 00:02 2024-09-17T08:03:54.232 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-09-17T08:03:54.271 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-09-17T08:03:54.272 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-09-17T08:03:54.588 INFO:teuthology.orchestra.run.smithi145.stdout:CentOS Stream 9 - AppStream 1.2 MB/s | 20 MB 00:17 2024-09-17T08:03:54.744 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-09-17T08:03:54.744 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-09-17T08:03:56.273 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-09-17T08:03:56.352 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/32 2024-09-17T08:03:56.400 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/32 2024-09-17T08:03:56.467 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/32 2024-09-17T08:03:56.808 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : thrift-0.15.0-2.el9.x86_64 4/32 2024-09-17T08:03:56.907 INFO:teuthology.orchestra.run.smithi044.stdout: Upgrading : librados2-2:18.2.4-855.g19e2a2be.el9.x86_64 5/32 2024-09-17T08:03:57.000 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: librados2-2:18.2.4-855.g19e2a2be.el9.x86_64 5/32 2024-09-17T08:03:57.086 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-rados-2:18.2.4-855.g19e2a2be.el9.x86_64 6/32 2024-09-17T08:03:57.125 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : libcephfs2-2:18.2.4-855.g19e2a2be.el9.x86_64 7/32 2024-09-17T08:03:57.179 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: libcephfs2-2:18.2.4-855.g19e2a2be.el9.x86_64 7/32 2024-09-17T08:03:57.217 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : liboath-2.6.7-2.el9.x86_64 8/32 2024-09-17T08:03:57.261 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-ceph-argparse-2:18.2.4-855.g19e2a2be.el9.x 9/32 2024-09-17T08:03:57.338 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-cephfs-2:18.2.4-855.g19e2a2be.el9.x86_64 10/32 2024-09-17T08:03:57.377 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : libradosstriper1-2:18.2.4-855.g19e2a2be.el9.x86_64 11/32 2024-09-17T08:03:57.393 INFO:teuthology.orchestra.run.smithi152.stdout:lab-extras 40 kB/s | 1.7 kB 00:00 2024-09-17T08:03:57.444 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: libradosstriper1-2:18.2.4-855.g19e2a2be.el9.x86_64 11/32 2024-09-17T08:03:57.553 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : re2-1:20211101-20.el9.x86_64 12/32 2024-09-17T08:03:57.585 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : libarrow-9.0.0-11.el9.x86_64 13/32 2024-09-17T08:03:57.634 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 14/32 2024-09-17T08:03:57.666 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 15/32 2024-09-17T08:03:57.694 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : libarrow-doc-9.0.0-11.el9.noarch 16/32 2024-09-17T08:03:57.730 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : fmt-8.1.1-5.el9.x86_64 17/32 2024-09-17T08:03:57.763 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 18/32 2024-09-17T08:03:58.088 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 19/32 2024-09-17T08:03:58.141 INFO:teuthology.orchestra.run.smithi044.stdout: Upgrading : librbd1-2:18.2.4-855.g19e2a2be.el9.x86_64 20/32 2024-09-17T08:03:58.233 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: librbd1-2:18.2.4-855.g19e2a2be.el9.x86_64 20/32 2024-09-17T08:03:58.263 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-rbd-2:18.2.4-855.g19e2a2be.el9.x86_64 21/32 2024-09-17T08:03:58.299 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 22/32 2024-09-17T08:03:58.728 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : parquet-libs-9.0.0-11.el9.x86_64 23/32 2024-09-17T08:03:58.753 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : librgw2-2:18.2.4-855.g19e2a2be.el9.x86_64 24/32 2024-09-17T08:03:58.824 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: librgw2-2:18.2.4-855.g19e2a2be.el9.x86_64 24/32 2024-09-17T08:03:58.903 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-rgw-2:18.2.4-855.g19e2a2be.el9.x86_64 25/32 2024-09-17T08:03:58.930 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-ceph-common-2:18.2.4-855.g19e2a2be.el9.x86 26/32 2024-09-17T08:03:59.604 INFO:teuthology.orchestra.run.smithi152.stdout:Dependencies resolved. 2024-09-17T08:03:59.606 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:03:59.606 INFO:teuthology.orchestra.run.smithi152.stdout: Package Arch Version Repository Size 2024-09-17T08:03:59.607 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:03:59.607 INFO:teuthology.orchestra.run.smithi152.stdout:Installing: 2024-09-17T08:03:59.607 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-radosgw x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 7.7 M 2024-09-17T08:03:59.607 INFO:teuthology.orchestra.run.smithi152.stdout:Upgrading: 2024-09-17T08:03:59.607 INFO:teuthology.orchestra.run.smithi152.stdout: librados2 x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 3.3 M 2024-09-17T08:03:59.607 INFO:teuthology.orchestra.run.smithi152.stdout: librbd1 x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 3.0 M 2024-09-17T08:03:59.607 INFO:teuthology.orchestra.run.smithi152.stdout:Installing dependencies: 2024-09-17T08:03:59.607 INFO:teuthology.orchestra.run.smithi152.stdout: boost-program-options x86_64 1.75.0-8.el9 appstream 107 k 2024-09-17T08:03:59.607 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-base x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 5.1 M 2024-09-17T08:03:59.607 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-common x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 18 M 2024-09-17T08:03:59.607 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-selinux x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 25 k 2024-09-17T08:03:59.607 INFO:teuthology.orchestra.run.smithi152.stdout: fmt x86_64 8.1.1-5.el9 epel 111 k 2024-09-17T08:03:59.608 INFO:teuthology.orchestra.run.smithi152.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2024-09-17T08:03:59.608 INFO:teuthology.orchestra.run.smithi152.stdout: libarrow x86_64 9.0.0-11.el9 epel 4.4 M 2024-09-17T08:03:59.608 INFO:teuthology.orchestra.run.smithi152.stdout: libarrow-doc noarch 9.0.0-11.el9 epel 26 k 2024-09-17T08:03:59.608 INFO:teuthology.orchestra.run.smithi152.stdout: libcephfs2 x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 712 k 2024-09-17T08:03:59.608 INFO:teuthology.orchestra.run.smithi152.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-09-17T08:03:59.608 INFO:teuthology.orchestra.run.smithi152.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-09-17T08:03:59.608 INFO:teuthology.orchestra.run.smithi152.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-09-17T08:03:59.608 INFO:teuthology.orchestra.run.smithi152.stdout: libradosstriper1 x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 477 k 2024-09-17T08:03:59.608 INFO:teuthology.orchestra.run.smithi152.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-09-17T08:03:59.608 INFO:teuthology.orchestra.run.smithi152.stdout: librgw2 x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 4.5 M 2024-09-17T08:03:59.608 INFO:teuthology.orchestra.run.smithi152.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-09-17T08:03:59.608 INFO:teuthology.orchestra.run.smithi152.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-09-17T08:03:59.608 INFO:teuthology.orchestra.run.smithi152.stdout: parquet-libs x86_64 9.0.0-11.el9 epel 839 k 2024-09-17T08:03:59.609 INFO:teuthology.orchestra.run.smithi152.stdout: python3-ceph-argparse x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 45 k 2024-09-17T08:03:59.609 INFO:teuthology.orchestra.run.smithi152.stdout: python3-ceph-common x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 129 k 2024-09-17T08:03:59.609 INFO:teuthology.orchestra.run.smithi152.stdout: python3-cephfs x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 162 k 2024-09-17T08:03:59.609 INFO:teuthology.orchestra.run.smithi152.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-09-17T08:03:59.609 INFO:teuthology.orchestra.run.smithi152.stdout: python3-rados x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 321 k 2024-09-17T08:03:59.609 INFO:teuthology.orchestra.run.smithi152.stdout: python3-rbd x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 300 k 2024-09-17T08:03:59.609 INFO:teuthology.orchestra.run.smithi152.stdout: python3-rgw x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 99 k 2024-09-17T08:03:59.609 INFO:teuthology.orchestra.run.smithi152.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2024-09-17T08:03:59.609 INFO:teuthology.orchestra.run.smithi152.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-09-17T08:03:59.609 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:03:59.609 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction Summary 2024-09-17T08:03:59.609 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:03:59.609 INFO:teuthology.orchestra.run.smithi152.stdout:Install 28 Packages 2024-09-17T08:03:59.610 INFO:teuthology.orchestra.run.smithi152.stdout:Upgrade 2 Packages 2024-09-17T08:03:59.610 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:03:59.610 INFO:teuthology.orchestra.run.smithi152.stdout:Total download size: 53 M 2024-09-17T08:03:59.610 INFO:teuthology.orchestra.run.smithi152.stdout:Downloading Packages: 2024-09-17T08:04:00.378 INFO:teuthology.orchestra.run.smithi152.stdout:(1/30): ceph-base-18.2.4-855.g19e2a2be.el9.x86_ 12 MB/s | 5.1 MB 00:00 2024-09-17T08:04:00.436 INFO:teuthology.orchestra.run.smithi152.stdout:(2/30): ceph-selinux-18.2.4-855.g19e2a2be.el9.x 434 kB/s | 25 kB 00:00 2024-09-17T08:04:00.537 INFO:teuthology.orchestra.run.smithi152.stdout:(3/30): libcephfs2-18.2.4-855.g19e2a2be.el9.x86 7.0 MB/s | 712 kB 00:00 2024-09-17T08:04:00.629 INFO:teuthology.orchestra.run.smithi152.stdout:(4/30): libradosstriper1-18.2.4-855.g19e2a2be.e 5.1 MB/s | 477 kB 00:00 2024-09-17T08:04:00.737 INFO:teuthology.orchestra.run.smithi152.stdout:(5/30): ceph-radosgw-18.2.4-855.g19e2a2be.el9.x 9.8 MB/s | 7.7 MB 00:00 2024-09-17T08:04:00.872 INFO:teuthology.orchestra.run.smithi145.stdout:CentOS Stream 9 - CRB 2.7 MB/s | 6.5 MB 00:02 2024-09-17T08:04:00.954 INFO:teuthology.orchestra.run.smithi152.stdout:(6/30): ceph-common-18.2.4-855.g19e2a2be.el9.x8 18 MB/s | 18 MB 00:01 2024-09-17T08:04:00.979 INFO:teuthology.orchestra.run.smithi152.stdout:(7/30): python3-ceph-argparse-18.2.4-855.g19e2a 186 kB/s | 45 kB 00:00 2024-09-17T08:04:01.004 INFO:teuthology.orchestra.run.smithi152.stdout:(8/30): python3-ceph-common-18.2.4-855.g19e2a2b 2.5 MB/s | 129 kB 00:00 2024-09-17T08:04:01.030 INFO:teuthology.orchestra.run.smithi152.stdout:(9/30): python3-cephfs-18.2.4-855.g19e2a2be.el9 3.2 MB/s | 162 kB 00:00 2024-09-17T08:04:01.063 INFO:teuthology.orchestra.run.smithi152.stdout:(10/30): python3-rados-18.2.4-855.g19e2a2be.el9 5.4 MB/s | 321 kB 00:00 2024-09-17T08:04:01.074 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-common-2:18.2.4-855.g19e2a2be.el9.x86_64 27/32 2024-09-17T08:04:01.097 INFO:teuthology.orchestra.run.smithi152.stdout:(11/30): python3-rbd-18.2.4-855.g19e2a2be.el9.x 4.4 MB/s | 300 kB 00:00 2024-09-17T08:04:01.110 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-common-2:18.2.4-855.g19e2a2be.el9.x86_64 27/32 2024-09-17T08:04:01.164 INFO:teuthology.orchestra.run.smithi152.stdout:(12/30): librgw2-18.2.4-855.g19e2a2be.el9.x86_6 8.3 MB/s | 4.5 MB 00:00 2024-09-17T08:04:01.189 INFO:teuthology.orchestra.run.smithi152.stdout:(13/30): python3-rgw-18.2.4-855.g19e2a2be.el9.x 792 kB/s | 99 kB 00:00 2024-09-17T08:04:01.365 INFO:teuthology.orchestra.run.smithi152.stdout:(14/30): boost-program-options-1.75.0-8.el9.x86 400 kB/s | 107 kB 00:00 2024-09-17T08:04:01.398 INFO:teuthology.orchestra.run.smithi152.stdout:(15/30): libpmemobj-1.12.1-1.el9.x86_64.rpm 685 kB/s | 160 kB 00:00 2024-09-17T08:04:01.423 INFO:teuthology.orchestra.run.smithi152.stdout:(16/30): librabbitmq-0.11.0-7.el9.x86_64.rpm 193 kB/s | 45 kB 00:00 2024-09-17T08:04:01.507 INFO:teuthology.orchestra.run.smithi152.stdout:(17/30): lttng-ust-2.12.0-6.el9.x86_64.rpm 2.6 MB/s | 292 kB 00:00 2024-09-17T08:04:01.532 INFO:teuthology.orchestra.run.smithi152.stdout:(18/30): python3-prettytable-0.7.2-27.el9.noarc 389 kB/s | 42 kB 00:00 2024-09-17T08:04:01.583 INFO:teuthology.orchestra.run.smithi152.stdout:(19/30): librdkafka-1.6.1-102.el9.x86_64.rpm 3.0 MB/s | 662 kB 00:00 2024-09-17T08:04:01.616 INFO:teuthology.orchestra.run.smithi152.stdout:(20/30): fmt-8.1.1-5.el9.x86_64.rpm 1.0 MB/s | 111 kB 00:00 2024-09-17T08:04:01.642 INFO:teuthology.orchestra.run.smithi152.stdout:(21/30): libarrow-doc-9.0.0-11.el9.noarch.rpm 1.1 MB/s | 26 kB 00:00 2024-09-17T08:04:01.675 INFO:teuthology.orchestra.run.smithi152.stdout:(22/30): gperftools-libs-2.9.1-3.el9.x86_64.rpm 2.1 MB/s | 308 kB 00:00 2024-09-17T08:04:01.678 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-common-2:18.2.4-855.g19e2a2be.el9.x86_64 27/32 2024-09-17T08:04:01.700 INFO:teuthology.orchestra.run.smithi152.stdout:(23/30): liboath-2.6.7-2.el9.x86_64.rpm 832 kB/s | 49 kB 00:00 2024-09-17T08:04:01.722 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-base-2:18.2.4-855.g19e2a2be.el9.x86_64 28/32 2024-09-17T08:04:01.726 INFO:teuthology.orchestra.run.smithi152.stdout:(24/30): libunwind-1.6.2-1.el9.x86_64.rpm 1.3 MB/s | 67 kB 00:00 2024-09-17T08:04:01.759 INFO:teuthology.orchestra.run.smithi152.stdout:(25/30): re2-20211101-20.el9.x86_64.rpm 5.7 MB/s | 191 kB 00:00 2024-09-17T08:04:01.799 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-base-2:18.2.4-855.g19e2a2be.el9.x86_64 28/32 2024-09-17T08:04:01.799 INFO:teuthology.orchestra.run.smithi044.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-09-17T08:04:01.799 INFO:teuthology.orchestra.run.smithi044.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-09-17T08:04:01.799 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:04:01.809 INFO:teuthology.orchestra.run.smithi152.stdout:(26/30): parquet-libs-9.0.0-11.el9.x86_64.rpm 7.5 MB/s | 839 kB 00:00 2024-09-17T08:04:01.837 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-selinux-2:18.2.4-855.g19e2a2be.el9.x86_64 29/32 2024-09-17T08:04:01.868 INFO:teuthology.orchestra.run.smithi152.stdout:(27/30): thrift-0.15.0-2.el9.x86_64.rpm 15 MB/s | 1.6 MB 00:00 2024-09-17T08:04:01.952 INFO:teuthology.orchestra.run.smithi152.stdout:(28/30): libarrow-9.0.0-11.el9.x86_64.rpm 12 MB/s | 4.4 MB 00:00 2024-09-17T08:04:02.044 INFO:teuthology.orchestra.run.smithi152.stdout:(29/30): librados2-18.2.4-855.g19e2a2be.el9.x86 14 MB/s | 3.3 MB 00:00 2024-09-17T08:04:02.119 INFO:teuthology.orchestra.run.smithi152.stdout:(30/30): librbd1-18.2.4-855.g19e2a2be.el9.x86_6 12 MB/s | 3.0 MB 00:00 2024-09-17T08:04:02.124 INFO:teuthology.orchestra.run.smithi152.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:04:02.125 INFO:teuthology.orchestra.run.smithi152.stdout:Total 21 MB/s | 53 MB 00:02 2024-09-17T08:04:02.195 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction check 2024-09-17T08:04:02.231 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction check succeeded. 2024-09-17T08:04:02.232 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction test 2024-09-17T08:04:02.539 INFO:teuthology.orchestra.run.smithi145.stdout:CentOS Stream 9 - Extras packages 45 kB/s | 19 kB 00:00 2024-09-17T08:04:02.696 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction test succeeded. 2024-09-17T08:04:02.696 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction 2024-09-17T08:04:03.577 INFO:teuthology.orchestra.run.smithi145.stdout:Extra Packages for Enterprise Linux 25 MB/s | 23 MB 00:00 2024-09-17T08:04:04.052 INFO:teuthology.orchestra.run.smithi152.stdout: Preparing : 1/1 2024-09-17T08:04:04.136 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/32 2024-09-17T08:04:04.165 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/32 2024-09-17T08:04:04.223 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/32 2024-09-17T08:04:04.627 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : thrift-0.15.0-2.el9.x86_64 4/32 2024-09-17T08:04:04.679 INFO:teuthology.orchestra.run.smithi152.stdout: Upgrading : librados2-2:18.2.4-855.g19e2a2be.el9.x86_64 5/32 2024-09-17T08:04:04.771 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: librados2-2:18.2.4-855.g19e2a2be.el9.x86_64 5/32 2024-09-17T08:04:04.855 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-rados-2:18.2.4-855.g19e2a2be.el9.x86_64 6/32 2024-09-17T08:04:04.898 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : libcephfs2-2:18.2.4-855.g19e2a2be.el9.x86_64 7/32 2024-09-17T08:04:04.943 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: libcephfs2-2:18.2.4-855.g19e2a2be.el9.x86_64 7/32 2024-09-17T08:04:04.989 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : liboath-2.6.7-2.el9.x86_64 8/32 2024-09-17T08:04:05.038 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-ceph-argparse-2:18.2.4-855.g19e2a2be.el9.x 9/32 2024-09-17T08:04:05.110 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-cephfs-2:18.2.4-855.g19e2a2be.el9.x86_64 10/32 2024-09-17T08:04:05.141 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : libradosstriper1-2:18.2.4-855.g19e2a2be.el9.x86_64 11/32 2024-09-17T08:04:05.216 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: libradosstriper1-2:18.2.4-855.g19e2a2be.el9.x86_64 11/32 2024-09-17T08:04:05.323 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : re2-1:20211101-20.el9.x86_64 12/32 2024-09-17T08:04:05.357 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : libarrow-9.0.0-11.el9.x86_64 13/32 2024-09-17T08:04:05.406 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 14/32 2024-09-17T08:04:05.447 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 15/32 2024-09-17T08:04:05.474 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : libarrow-doc-9.0.0-11.el9.noarch 16/32 2024-09-17T08:04:05.510 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : fmt-8.1.1-5.el9.x86_64 17/32 2024-09-17T08:04:05.543 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 18/32 2024-09-17T08:04:05.843 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 19/32 2024-09-17T08:04:05.897 INFO:teuthology.orchestra.run.smithi152.stdout: Upgrading : librbd1-2:18.2.4-855.g19e2a2be.el9.x86_64 20/32 2024-09-17T08:04:06.029 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: librbd1-2:18.2.4-855.g19e2a2be.el9.x86_64 20/32 2024-09-17T08:04:06.029 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-rbd-2:18.2.4-855.g19e2a2be.el9.x86_64 21/32 2024-09-17T08:04:06.054 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 22/32 2024-09-17T08:04:06.460 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : parquet-libs-9.0.0-11.el9.x86_64 23/32 2024-09-17T08:04:06.491 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : librgw2-2:18.2.4-855.g19e2a2be.el9.x86_64 24/32 2024-09-17T08:04:06.546 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: librgw2-2:18.2.4-855.g19e2a2be.el9.x86_64 24/32 2024-09-17T08:04:06.623 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-rgw-2:18.2.4-855.g19e2a2be.el9.x86_64 25/32 2024-09-17T08:04:06.651 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-ceph-common-2:18.2.4-855.g19e2a2be.el9.x86 26/32 2024-09-17T08:04:08.789 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: ceph-common-2:18.2.4-855.g19e2a2be.el9.x86_64 27/32 2024-09-17T08:04:08.823 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : ceph-common-2:18.2.4-855.g19e2a2be.el9.x86_64 27/32 2024-09-17T08:04:09.183 INFO:teuthology.orchestra.run.smithi145.stdout:lab-extras 29 kB/s | 1.7 kB 00:00 2024-09-17T08:04:09.358 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: ceph-common-2:18.2.4-855.g19e2a2be.el9.x86_64 27/32 2024-09-17T08:04:09.401 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : ceph-base-2:18.2.4-855.g19e2a2be.el9.x86_64 28/32 2024-09-17T08:04:09.510 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: ceph-base-2:18.2.4-855.g19e2a2be.el9.x86_64 28/32 2024-09-17T08:04:09.510 INFO:teuthology.orchestra.run.smithi152.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-09-17T08:04:09.510 INFO:teuthology.orchestra.run.smithi152.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-09-17T08:04:09.510 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:04:09.544 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : ceph-selinux-2:18.2.4-855.g19e2a2be.el9.x86_64 29/32 2024-09-17T08:04:11.459 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-17T08:04:11.461 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:04:11.461 INFO:teuthology.orchestra.run.smithi145.stdout: Package Arch Version Repository Size 2024-09-17T08:04:11.461 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:04:11.461 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-17T08:04:11.461 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-radosgw x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 7.7 M 2024-09-17T08:04:11.461 INFO:teuthology.orchestra.run.smithi145.stdout:Upgrading: 2024-09-17T08:04:11.462 INFO:teuthology.orchestra.run.smithi145.stdout: librados2 x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 3.3 M 2024-09-17T08:04:11.462 INFO:teuthology.orchestra.run.smithi145.stdout: librbd1 x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 3.0 M 2024-09-17T08:04:11.462 INFO:teuthology.orchestra.run.smithi145.stdout:Installing dependencies: 2024-09-17T08:04:11.462 INFO:teuthology.orchestra.run.smithi145.stdout: boost-program-options x86_64 1.75.0-8.el9 appstream 107 k 2024-09-17T08:04:11.462 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-base x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 5.1 M 2024-09-17T08:04:11.462 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-common x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 18 M 2024-09-17T08:04:11.462 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-selinux x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 25 k 2024-09-17T08:04:11.462 INFO:teuthology.orchestra.run.smithi145.stdout: fmt x86_64 8.1.1-5.el9 epel 111 k 2024-09-17T08:04:11.462 INFO:teuthology.orchestra.run.smithi145.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2024-09-17T08:04:11.462 INFO:teuthology.orchestra.run.smithi145.stdout: libarrow x86_64 9.0.0-11.el9 epel 4.4 M 2024-09-17T08:04:11.462 INFO:teuthology.orchestra.run.smithi145.stdout: libarrow-doc noarch 9.0.0-11.el9 epel 26 k 2024-09-17T08:04:11.462 INFO:teuthology.orchestra.run.smithi145.stdout: libcephfs2 x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 712 k 2024-09-17T08:04:11.463 INFO:teuthology.orchestra.run.smithi145.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-09-17T08:04:11.463 INFO:teuthology.orchestra.run.smithi145.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-09-17T08:04:11.463 INFO:teuthology.orchestra.run.smithi145.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-09-17T08:04:11.463 INFO:teuthology.orchestra.run.smithi145.stdout: libradosstriper1 x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 477 k 2024-09-17T08:04:11.463 INFO:teuthology.orchestra.run.smithi145.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-09-17T08:04:11.463 INFO:teuthology.orchestra.run.smithi145.stdout: librgw2 x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 4.5 M 2024-09-17T08:04:11.463 INFO:teuthology.orchestra.run.smithi145.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-09-17T08:04:11.463 INFO:teuthology.orchestra.run.smithi145.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-09-17T08:04:11.463 INFO:teuthology.orchestra.run.smithi145.stdout: parquet-libs x86_64 9.0.0-11.el9 epel 839 k 2024-09-17T08:04:11.463 INFO:teuthology.orchestra.run.smithi145.stdout: python3-ceph-argparse x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 45 k 2024-09-17T08:04:11.463 INFO:teuthology.orchestra.run.smithi145.stdout: python3-ceph-common x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 129 k 2024-09-17T08:04:11.464 INFO:teuthology.orchestra.run.smithi145.stdout: python3-cephfs x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 162 k 2024-09-17T08:04:11.464 INFO:teuthology.orchestra.run.smithi145.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-09-17T08:04:11.464 INFO:teuthology.orchestra.run.smithi145.stdout: python3-rados x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 321 k 2024-09-17T08:04:11.464 INFO:teuthology.orchestra.run.smithi145.stdout: python3-rbd x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 300 k 2024-09-17T08:04:11.464 INFO:teuthology.orchestra.run.smithi145.stdout: python3-rgw x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 99 k 2024-09-17T08:04:11.464 INFO:teuthology.orchestra.run.smithi145.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2024-09-17T08:04:11.464 INFO:teuthology.orchestra.run.smithi145.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-09-17T08:04:11.464 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:04:11.464 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-17T08:04:11.464 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:04:11.465 INFO:teuthology.orchestra.run.smithi145.stdout:Install 28 Packages 2024-09-17T08:04:11.465 INFO:teuthology.orchestra.run.smithi145.stdout:Upgrade 2 Packages 2024-09-17T08:04:11.465 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:04:11.465 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 53 M 2024-09-17T08:04:11.465 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-17T08:04:12.506 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-selinux-2:18.2.4-855.g19e2a2be.el9.x86_64 29/32 2024-09-17T08:04:12.507 INFO:teuthology.orchestra.run.smithi044.stdout:skipping the directory /sys 2024-09-17T08:04:12.507 INFO:teuthology.orchestra.run.smithi044.stdout:skipping the directory /proc 2024-09-17T08:04:12.507 INFO:teuthology.orchestra.run.smithi044.stdout:skipping the directory /mnt 2024-09-17T08:04:12.507 INFO:teuthology.orchestra.run.smithi044.stdout:skipping the directory /var/tmp 2024-09-17T08:04:12.507 INFO:teuthology.orchestra.run.smithi044.stdout:skipping the directory /home 2024-09-17T08:04:12.507 INFO:teuthology.orchestra.run.smithi044.stdout:skipping the directory /root 2024-09-17T08:04:12.507 INFO:teuthology.orchestra.run.smithi044.stdout:skipping the directory /tmp 2024-09-17T08:04:12.507 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:04:12.567 INFO:teuthology.orchestra.run.smithi145.stdout:(1/30): ceph-base-18.2.4-855.g19e2a2be.el9.x86_ 10 MB/s | 5.1 MB 00:00 2024-09-17T08:04:12.625 INFO:teuthology.orchestra.run.smithi145.stdout:(2/30): ceph-selinux-18.2.4-855.g19e2a2be.el9.x 433 kB/s | 25 kB 00:00 2024-09-17T08:04:12.726 INFO:teuthology.orchestra.run.smithi145.stdout:(3/30): ceph-radosgw-18.2.4-855.g19e2a2be.el9.x 12 MB/s | 7.7 MB 00:00 2024-09-17T08:04:12.759 INFO:teuthology.orchestra.run.smithi145.stdout:(4/30): libcephfs2-18.2.4-855.g19e2a2be.el9.x86 5.2 MB/s | 712 kB 00:00 2024-09-17T08:04:12.785 INFO:teuthology.orchestra.run.smithi145.stdout:(5/30): libradosstriper1-18.2.4-855.g19e2a2be.e 8.0 MB/s | 477 kB 00:00 2024-09-17T08:04:12.843 INFO:teuthology.orchestra.run.smithi145.stdout:(6/30): python3-ceph-argparse-18.2.4-855.g19e2a 770 kB/s | 45 kB 00:00 2024-09-17T08:04:12.969 INFO:teuthology.orchestra.run.smithi145.stdout:(7/30): librgw2-18.2.4-855.g19e2a2be.el9.x86_64 21 MB/s | 4.5 MB 00:00 2024-09-17T08:04:12.993 INFO:teuthology.orchestra.run.smithi145.stdout:(8/30): python3-ceph-common-18.2.4-855.g19e2a2b 861 kB/s | 129 kB 00:00 2024-09-17T08:04:13.019 INFO:teuthology.orchestra.run.smithi145.stdout:(9/30): python3-cephfs-18.2.4-855.g19e2a2be.el9 3.2 MB/s | 162 kB 00:00 2024-09-17T08:04:13.053 INFO:teuthology.orchestra.run.smithi145.stdout:(10/30): python3-rados-18.2.4-855.g19e2a2be.el9 5.3 MB/s | 321 kB 00:00 2024-09-17T08:04:13.078 INFO:teuthology.orchestra.run.smithi145.stdout:(11/30): python3-rbd-18.2.4-855.g19e2a2be.el9.x 5.0 MB/s | 300 kB 00:00 2024-09-17T08:04:13.104 INFO:teuthology.orchestra.run.smithi145.stdout:(12/30): python3-rgw-18.2.4-855.g19e2a2be.el9.x 1.9 MB/s | 99 kB 00:00 2024-09-17T08:04:13.278 INFO:teuthology.orchestra.run.smithi145.stdout:(13/30): ceph-common-18.2.4-855.g19e2a2be.el9.x 15 MB/s | 18 MB 00:01 2024-09-17T08:04:13.281 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-radosgw-2:18.2.4-855.g19e2a2be.el9.x86_64 30/32 2024-09-17T08:04:13.309 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-radosgw-2:18.2.4-855.g19e2a2be.el9.x86_64 30/32 2024-09-17T08:04:13.309 INFO:teuthology.orchestra.run.smithi044.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T08:04:13.309 INFO:teuthology.orchestra.run.smithi044.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-09-17T08:04:13.309 INFO:teuthology.orchestra.run.smithi044.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-17T08:04:13.310 INFO:teuthology.orchestra.run.smithi044.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-17T08:04:13.310 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:04:13.311 INFO:teuthology.orchestra.run.smithi044.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 31/32 2024-09-17T08:04:13.387 INFO:teuthology.orchestra.run.smithi145.stdout:(14/30): boost-program-options-1.75.0-8.el9.x86 346 kB/s | 107 kB 00:00 2024-09-17T08:04:13.401 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 31/32 2024-09-17T08:04:13.401 INFO:teuthology.orchestra.run.smithi044.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 32/32 2024-09-17T08:04:13.404 INFO:teuthology.orchestra.run.smithi145.stdout:(15/30): librabbitmq-0.11.0-7.el9.x86_64.rpm 362 kB/s | 45 kB 00:00 2024-09-17T08:04:13.429 INFO:teuthology.orchestra.run.smithi145.stdout:(16/30): libpmemobj-1.12.1-1.el9.x86_64.rpm 492 kB/s | 160 kB 00:00 2024-09-17T08:04:13.471 INFO:teuthology.orchestra.run.smithi145.stdout:(17/30): python3-prettytable-0.7.2-27.el9.noarc 1.0 MB/s | 42 kB 00:00 2024-09-17T08:04:13.521 INFO:teuthology.orchestra.run.smithi145.stdout:(18/30): fmt-8.1.1-5.el9.x86_64.rpm 2.2 MB/s | 111 kB 00:00 2024-09-17T08:04:13.547 INFO:teuthology.orchestra.run.smithi145.stdout:(19/30): lttng-ust-2.12.0-6.el9.x86_64.rpm 2.0 MB/s | 292 kB 00:00 2024-09-17T08:04:13.588 INFO:teuthology.orchestra.run.smithi145.stdout:(20/30): gperftools-libs-2.9.1-3.el9.x86_64.rpm 4.5 MB/s | 308 kB 00:00 2024-09-17T08:04:13.614 INFO:teuthology.orchestra.run.smithi145.stdout:(21/30): librdkafka-1.6.1-102.el9.x86_64.rpm 2.9 MB/s | 662 kB 00:00 2024-09-17T08:04:13.639 INFO:teuthology.orchestra.run.smithi145.stdout:(22/30): libarrow-doc-9.0.0-11.el9.noarch.rpm 535 kB/s | 26 kB 00:00 2024-09-17T08:04:13.673 INFO:teuthology.orchestra.run.smithi145.stdout:(23/30): libunwind-1.6.2-1.el9.x86_64.rpm 2.5 MB/s | 67 kB 00:00 2024-09-17T08:04:13.707 INFO:teuthology.orchestra.run.smithi145.stdout:(24/30): liboath-2.6.7-2.el9.x86_64.rpm 527 kB/s | 49 kB 00:00 2024-09-17T08:04:13.748 INFO:teuthology.orchestra.run.smithi145.stdout:(25/30): re2-20211101-20.el9.x86_64.rpm 4.5 MB/s | 191 kB 00:00 2024-09-17T08:04:13.782 INFO:teuthology.orchestra.run.smithi145.stdout:(26/30): parquet-libs-9.0.0-11.el9.x86_64.rpm 7.7 MB/s | 839 kB 00:00 2024-09-17T08:04:13.857 INFO:teuthology.orchestra.run.smithi145.stdout:(27/30): libarrow-9.0.0-11.el9.x86_64.rpm 14 MB/s | 4.4 MB 00:00 2024-09-17T08:04:13.899 INFO:teuthology.orchestra.run.smithi145.stdout:(28/30): thrift-0.15.0-2.el9.x86_64.rpm 11 MB/s | 1.6 MB 00:00 2024-09-17T08:04:14.008 INFO:teuthology.orchestra.run.smithi145.stdout:(29/30): librados2-18.2.4-855.g19e2a2be.el9.x86 15 MB/s | 3.3 MB 00:00 2024-09-17T08:04:14.067 INFO:teuthology.orchestra.run.smithi145.stdout:(30/30): librbd1-18.2.4-855.g19e2a2be.el9.x86_6 14 MB/s | 3.0 MB 00:00 2024-09-17T08:04:14.072 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:04:14.072 INFO:teuthology.orchestra.run.smithi145.stdout:Total 20 MB/s | 53 MB 00:02 2024-09-17T08:04:14.144 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-17T08:04:14.179 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-17T08:04:14.179 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-17T08:04:14.613 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 32/32 2024-09-17T08:04:14.613 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-base-2:18.2.4-855.g19e2a2be.el9.x86_64 1/32 2024-09-17T08:04:14.613 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-common-2:18.2.4-855.g19e2a2be.el9.x86_64 2/32 2024-09-17T08:04:14.614 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-radosgw-2:18.2.4-855.g19e2a2be.el9.x86_64 3/32 2024-09-17T08:04:14.614 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-selinux-2:18.2.4-855.g19e2a2be.el9.x86_64 4/32 2024-09-17T08:04:14.614 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : libcephfs2-2:18.2.4-855.g19e2a2be.el9.x86_64 5/32 2024-09-17T08:04:14.614 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : libradosstriper1-2:18.2.4-855.g19e2a2be.el9.x86_64 6/32 2024-09-17T08:04:14.614 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : librgw2-2:18.2.4-855.g19e2a2be.el9.x86_64 7/32 2024-09-17T08:04:14.614 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-ceph-argparse-2:18.2.4-855.g19e2a2be.el9.x 8/32 2024-09-17T08:04:14.614 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-ceph-common-2:18.2.4-855.g19e2a2be.el9.x86 9/32 2024-09-17T08:04:14.614 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-cephfs-2:18.2.4-855.g19e2a2be.el9.x86_64 10/32 2024-09-17T08:04:14.614 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-rados-2:18.2.4-855.g19e2a2be.el9.x86_64 11/32 2024-09-17T08:04:14.614 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-rbd-2:18.2.4-855.g19e2a2be.el9.x86_64 12/32 2024-09-17T08:04:14.614 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-rgw-2:18.2.4-855.g19e2a2be.el9.x86_64 13/32 2024-09-17T08:04:14.614 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/32 2024-09-17T08:04:14.614 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/32 2024-09-17T08:04:14.614 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/32 2024-09-17T08:04:14.615 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/32 2024-09-17T08:04:14.615 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/32 2024-09-17T08:04:14.615 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/32 2024-09-17T08:04:14.615 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : fmt-8.1.1-5.el9.x86_64 20/32 2024-09-17T08:04:14.615 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 21/32 2024-09-17T08:04:14.615 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : libarrow-9.0.0-11.el9.x86_64 22/32 2024-09-17T08:04:14.615 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : libarrow-doc-9.0.0-11.el9.noarch 23/32 2024-09-17T08:04:14.615 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 24/32 2024-09-17T08:04:14.615 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 25/32 2024-09-17T08:04:14.615 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : parquet-libs-9.0.0-11.el9.x86_64 26/32 2024-09-17T08:04:14.615 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : re2-1:20211101-20.el9.x86_64 27/32 2024-09-17T08:04:14.616 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 28/32 2024-09-17T08:04:14.616 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : librados2-2:18.2.4-855.g19e2a2be.el9.x86_64 29/32 2024-09-17T08:04:14.616 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 30/32 2024-09-17T08:04:14.616 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : librbd1-2:18.2.4-855.g19e2a2be.el9.x86_64 31/32 2024-09-17T08:04:14.635 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-17T08:04:14.635 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-17T08:04:15.512 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 32/32 2024-09-17T08:04:15.513 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:04:15.513 INFO:teuthology.orchestra.run.smithi044.stdout:Upgraded: 2024-09-17T08:04:15.513 INFO:teuthology.orchestra.run.smithi044.stdout: librados2-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:15.513 INFO:teuthology.orchestra.run.smithi044.stdout: librbd1-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:15.513 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-09-17T08:04:15.513 INFO:teuthology.orchestra.run.smithi044.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-09-17T08:04:15.513 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-base-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:15.513 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-common-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:15.513 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-radosgw-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:15.513 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-selinux-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:15.513 INFO:teuthology.orchestra.run.smithi044.stdout: fmt-8.1.1-5.el9.x86_64 2024-09-17T08:04:15.513 INFO:teuthology.orchestra.run.smithi044.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2024-09-17T08:04:15.514 INFO:teuthology.orchestra.run.smithi044.stdout: libarrow-9.0.0-11.el9.x86_64 2024-09-17T08:04:15.514 INFO:teuthology.orchestra.run.smithi044.stdout: libarrow-doc-9.0.0-11.el9.noarch 2024-09-17T08:04:15.514 INFO:teuthology.orchestra.run.smithi044.stdout: libcephfs2-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:15.514 INFO:teuthology.orchestra.run.smithi044.stdout: liboath-2.6.7-2.el9.x86_64 2024-09-17T08:04:15.514 INFO:teuthology.orchestra.run.smithi044.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-09-17T08:04:15.514 INFO:teuthology.orchestra.run.smithi044.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-09-17T08:04:15.514 INFO:teuthology.orchestra.run.smithi044.stdout: libradosstriper1-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:15.514 INFO:teuthology.orchestra.run.smithi044.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-09-17T08:04:15.514 INFO:teuthology.orchestra.run.smithi044.stdout: librgw2-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:15.514 INFO:teuthology.orchestra.run.smithi044.stdout: libunwind-1.6.2-1.el9.x86_64 2024-09-17T08:04:15.514 INFO:teuthology.orchestra.run.smithi044.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-09-17T08:04:15.514 INFO:teuthology.orchestra.run.smithi044.stdout: parquet-libs-9.0.0-11.el9.x86_64 2024-09-17T08:04:15.514 INFO:teuthology.orchestra.run.smithi044.stdout: python3-ceph-argparse-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:15.514 INFO:teuthology.orchestra.run.smithi044.stdout: python3-ceph-common-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:15.514 INFO:teuthology.orchestra.run.smithi044.stdout: python3-cephfs-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:15.515 INFO:teuthology.orchestra.run.smithi044.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-09-17T08:04:15.515 INFO:teuthology.orchestra.run.smithi044.stdout: python3-rados-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:15.515 INFO:teuthology.orchestra.run.smithi044.stdout: python3-rbd-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:15.515 INFO:teuthology.orchestra.run.smithi044.stdout: python3-rgw-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:15.515 INFO:teuthology.orchestra.run.smithi044.stdout: re2-1:20211101-20.el9.x86_64 2024-09-17T08:04:15.515 INFO:teuthology.orchestra.run.smithi044.stdout: thrift-0.15.0-2.el9.x86_64 2024-09-17T08:04:15.515 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:04:15.515 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-09-17T08:04:15.867 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install ceph-test 2024-09-17T08:04:15.964 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-17T08:04:16.049 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/32 2024-09-17T08:04:16.088 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/32 2024-09-17T08:04:16.147 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/32 2024-09-17T08:04:16.469 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:00:27 ago on Tue 17 Sep 2024 08:03:49 AM UTC. 2024-09-17T08:04:16.470 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : thrift-0.15.0-2.el9.x86_64 4/32 2024-09-17T08:04:16.587 INFO:teuthology.orchestra.run.smithi145.stdout: Upgrading : librados2-2:18.2.4-855.g19e2a2be.el9.x86_64 5/32 2024-09-17T08:04:16.608 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-09-17T08:04:16.608 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:04:16.608 INFO:teuthology.orchestra.run.smithi044.stdout: Package Arch Version Repository Size 2024-09-17T08:04:16.609 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:04:16.609 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-09-17T08:04:16.609 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-test x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 40 M 2024-09-17T08:04:16.609 INFO:teuthology.orchestra.run.smithi044.stdout:Installing dependencies: 2024-09-17T08:04:16.609 INFO:teuthology.orchestra.run.smithi044.stdout: libcephsqlite x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 166 k 2024-09-17T08:04:16.610 INFO:teuthology.orchestra.run.smithi044.stdout: socat x86_64 1.7.4.1-6.el9 appstream 304 k 2024-09-17T08:04:16.610 INFO:teuthology.orchestra.run.smithi044.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-09-17T08:04:16.610 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:04:16.610 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-09-17T08:04:16.610 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:04:16.610 INFO:teuthology.orchestra.run.smithi044.stdout:Install 4 Packages 2024-09-17T08:04:16.611 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:04:16.611 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 40 M 2024-09-17T08:04:16.612 INFO:teuthology.orchestra.run.smithi044.stdout:Installed size: 164 M 2024-09-17T08:04:16.612 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-09-17T08:04:16.679 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: librados2-2:18.2.4-855.g19e2a2be.el9.x86_64 5/32 2024-09-17T08:04:16.764 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-rados-2:18.2.4-855.g19e2a2be.el9.x86_64 6/32 2024-09-17T08:04:16.797 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : libcephfs2-2:18.2.4-855.g19e2a2be.el9.x86_64 7/32 2024-09-17T08:04:16.816 INFO:teuthology.orchestra.run.smithi044.stdout:(1/4): socat-1.7.4.1-6.el9.x86_64.rpm 1.9 MB/s | 304 kB 00:00 2024-09-17T08:04:16.850 INFO:teuthology.orchestra.run.smithi044.stdout:(2/4): xmlstarlet-1.6.1-20.el9.x86_64.rpm 1.9 MB/s | 64 kB 00:00 2024-09-17T08:04:16.883 INFO:teuthology.orchestra.run.smithi044.stdout:(3/4): libcephsqlite-18.2.4-855.g19e2a2be.el9.x 741 kB/s | 166 kB 00:00 2024-09-17T08:04:17.001 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: libcephfs2-2:18.2.4-855.g19e2a2be.el9.x86_64 7/32 2024-09-17T08:04:17.038 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : liboath-2.6.7-2.el9.x86_64 8/32 2024-09-17T08:04:17.085 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-ceph-argparse-2:18.2.4-855.g19e2a2be.el9.x 9/32 2024-09-17T08:04:17.165 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-cephfs-2:18.2.4-855.g19e2a2be.el9.x86_64 10/32 2024-09-17T08:04:17.191 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : libradosstriper1-2:18.2.4-855.g19e2a2be.el9.x86_64 11/32 2024-09-17T08:04:17.266 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: libradosstriper1-2:18.2.4-855.g19e2a2be.el9.x86_64 11/32 2024-09-17T08:04:17.373 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : re2-1:20211101-20.el9.x86_64 12/32 2024-09-17T08:04:17.408 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : libarrow-9.0.0-11.el9.x86_64 13/32 2024-09-17T08:04:17.456 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 14/32 2024-09-17T08:04:17.497 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 15/32 2024-09-17T08:04:17.524 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : libarrow-doc-9.0.0-11.el9.noarch 16/32 2024-09-17T08:04:17.560 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : fmt-8.1.1-5.el9.x86_64 17/32 2024-09-17T08:04:17.615 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 18/32 2024-09-17T08:04:17.918 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 19/32 2024-09-17T08:04:17.955 INFO:teuthology.orchestra.run.smithi145.stdout: Upgrading : librbd1-2:18.2.4-855.g19e2a2be.el9.x86_64 20/32 2024-09-17T08:04:17.958 INFO:teuthology.orchestra.run.smithi044.stdout:(4/4): ceph-test-18.2.4-855.g19e2a2be.el9.x86_6 31 MB/s | 40 MB 00:01 2024-09-17T08:04:17.960 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:04:17.961 INFO:teuthology.orchestra.run.smithi044.stdout:Total 30 MB/s | 40 MB 00:01 2024-09-17T08:04:17.989 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-09-17T08:04:18.011 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-09-17T08:04:18.011 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-09-17T08:04:18.047 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: librbd1-2:18.2.4-855.g19e2a2be.el9.x86_64 20/32 2024-09-17T08:04:18.077 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-rbd-2:18.2.4-855.g19e2a2be.el9.x86_64 21/32 2024-09-17T08:04:18.121 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 22/32 2024-09-17T08:04:18.363 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-09-17T08:04:18.364 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-09-17T08:04:18.526 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : parquet-libs-9.0.0-11.el9.x86_64 23/32 2024-09-17T08:04:18.558 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : librgw2-2:18.2.4-855.g19e2a2be.el9.x86_64 24/32 2024-09-17T08:04:18.630 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: librgw2-2:18.2.4-855.g19e2a2be.el9.x86_64 24/32 2024-09-17T08:04:18.714 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-rgw-2:18.2.4-855.g19e2a2be.el9.x86_64 25/32 2024-09-17T08:04:18.744 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-ceph-common-2:18.2.4-855.g19e2a2be.el9.x86 26/32 2024-09-17T08:04:18.868 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-09-17T08:04:18.936 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/4 2024-09-17T08:04:18.975 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : socat-1.7.4.1-6.el9.x86_64 2/4 2024-09-17T08:04:19.002 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : libcephsqlite-2:18.2.4-855.g19e2a2be.el9.x86_64 3/4 2024-09-17T08:04:19.257 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: ceph-selinux-2:18.2.4-855.g19e2a2be.el9.x86_64 29/32 2024-09-17T08:04:19.257 INFO:teuthology.orchestra.run.smithi152.stdout:skipping the directory /sys 2024-09-17T08:04:19.257 INFO:teuthology.orchestra.run.smithi152.stdout:skipping the directory /proc 2024-09-17T08:04:19.257 INFO:teuthology.orchestra.run.smithi152.stdout:skipping the directory /mnt 2024-09-17T08:04:19.258 INFO:teuthology.orchestra.run.smithi152.stdout:skipping the directory /var/tmp 2024-09-17T08:04:19.258 INFO:teuthology.orchestra.run.smithi152.stdout:skipping the directory /home 2024-09-17T08:04:19.258 INFO:teuthology.orchestra.run.smithi152.stdout:skipping the directory /root 2024-09-17T08:04:19.258 INFO:teuthology.orchestra.run.smithi152.stdout:skipping the directory /tmp 2024-09-17T08:04:19.258 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:04:19.974 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : ceph-radosgw-2:18.2.4-855.g19e2a2be.el9.x86_64 30/32 2024-09-17T08:04:19.999 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: ceph-radosgw-2:18.2.4-855.g19e2a2be.el9.x86_64 30/32 2024-09-17T08:04:19.999 INFO:teuthology.orchestra.run.smithi152.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T08:04:19.999 INFO:teuthology.orchestra.run.smithi152.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-09-17T08:04:20.000 INFO:teuthology.orchestra.run.smithi152.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-17T08:04:20.000 INFO:teuthology.orchestra.run.smithi152.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-17T08:04:20.000 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:04:20.001 INFO:teuthology.orchestra.run.smithi152.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 31/32 2024-09-17T08:04:20.085 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 31/32 2024-09-17T08:04:20.085 INFO:teuthology.orchestra.run.smithi152.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 32/32 2024-09-17T08:04:20.808 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-common-2:18.2.4-855.g19e2a2be.el9.x86_64 27/32 2024-09-17T08:04:20.848 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-common-2:18.2.4-855.g19e2a2be.el9.x86_64 27/32 2024-09-17T08:04:21.207 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 32/32 2024-09-17T08:04:21.207 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : ceph-base-2:18.2.4-855.g19e2a2be.el9.x86_64 1/32 2024-09-17T08:04:21.207 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : ceph-common-2:18.2.4-855.g19e2a2be.el9.x86_64 2/32 2024-09-17T08:04:21.207 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : ceph-radosgw-2:18.2.4-855.g19e2a2be.el9.x86_64 3/32 2024-09-17T08:04:21.207 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : ceph-selinux-2:18.2.4-855.g19e2a2be.el9.x86_64 4/32 2024-09-17T08:04:21.207 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : libcephfs2-2:18.2.4-855.g19e2a2be.el9.x86_64 5/32 2024-09-17T08:04:21.207 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : libradosstriper1-2:18.2.4-855.g19e2a2be.el9.x86_64 6/32 2024-09-17T08:04:21.208 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : librgw2-2:18.2.4-855.g19e2a2be.el9.x86_64 7/32 2024-09-17T08:04:21.208 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-ceph-argparse-2:18.2.4-855.g19e2a2be.el9.x 8/32 2024-09-17T08:04:21.208 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-ceph-common-2:18.2.4-855.g19e2a2be.el9.x86 9/32 2024-09-17T08:04:21.208 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-cephfs-2:18.2.4-855.g19e2a2be.el9.x86_64 10/32 2024-09-17T08:04:21.208 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-rados-2:18.2.4-855.g19e2a2be.el9.x86_64 11/32 2024-09-17T08:04:21.208 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-rbd-2:18.2.4-855.g19e2a2be.el9.x86_64 12/32 2024-09-17T08:04:21.208 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-rgw-2:18.2.4-855.g19e2a2be.el9.x86_64 13/32 2024-09-17T08:04:21.208 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/32 2024-09-17T08:04:21.208 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/32 2024-09-17T08:04:21.208 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/32 2024-09-17T08:04:21.208 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/32 2024-09-17T08:04:21.208 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/32 2024-09-17T08:04:21.208 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/32 2024-09-17T08:04:21.209 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : fmt-8.1.1-5.el9.x86_64 20/32 2024-09-17T08:04:21.209 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 21/32 2024-09-17T08:04:21.209 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : libarrow-9.0.0-11.el9.x86_64 22/32 2024-09-17T08:04:21.209 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : libarrow-doc-9.0.0-11.el9.noarch 23/32 2024-09-17T08:04:21.209 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 24/32 2024-09-17T08:04:21.209 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 25/32 2024-09-17T08:04:21.209 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : parquet-libs-9.0.0-11.el9.x86_64 26/32 2024-09-17T08:04:21.209 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : re2-1:20211101-20.el9.x86_64 27/32 2024-09-17T08:04:21.209 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 28/32 2024-09-17T08:04:21.209 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : librados2-2:18.2.4-855.g19e2a2be.el9.x86_64 29/32 2024-09-17T08:04:21.210 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 30/32 2024-09-17T08:04:21.210 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : librbd1-2:18.2.4-855.g19e2a2be.el9.x86_64 31/32 2024-09-17T08:04:21.385 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-common-2:18.2.4-855.g19e2a2be.el9.x86_64 27/32 2024-09-17T08:04:21.427 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-base-2:18.2.4-855.g19e2a2be.el9.x86_64 28/32 2024-09-17T08:04:21.529 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-base-2:18.2.4-855.g19e2a2be.el9.x86_64 28/32 2024-09-17T08:04:21.529 INFO:teuthology.orchestra.run.smithi145.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-09-17T08:04:21.529 INFO:teuthology.orchestra.run.smithi145.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-09-17T08:04:21.530 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:04:21.561 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-selinux-2:18.2.4-855.g19e2a2be.el9.x86_64 29/32 2024-09-17T08:04:22.234 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 32/32 2024-09-17T08:04:22.234 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:04:22.234 INFO:teuthology.orchestra.run.smithi152.stdout:Upgraded: 2024-09-17T08:04:22.234 INFO:teuthology.orchestra.run.smithi152.stdout: librados2-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:22.234 INFO:teuthology.orchestra.run.smithi152.stdout: librbd1-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:22.235 INFO:teuthology.orchestra.run.smithi152.stdout:Installed: 2024-09-17T08:04:22.235 INFO:teuthology.orchestra.run.smithi152.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-09-17T08:04:22.235 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-base-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:22.235 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-common-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:22.235 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-radosgw-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:22.235 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-selinux-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:22.235 INFO:teuthology.orchestra.run.smithi152.stdout: fmt-8.1.1-5.el9.x86_64 2024-09-17T08:04:22.235 INFO:teuthology.orchestra.run.smithi152.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2024-09-17T08:04:22.235 INFO:teuthology.orchestra.run.smithi152.stdout: libarrow-9.0.0-11.el9.x86_64 2024-09-17T08:04:22.235 INFO:teuthology.orchestra.run.smithi152.stdout: libarrow-doc-9.0.0-11.el9.noarch 2024-09-17T08:04:22.235 INFO:teuthology.orchestra.run.smithi152.stdout: libcephfs2-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:22.235 INFO:teuthology.orchestra.run.smithi152.stdout: liboath-2.6.7-2.el9.x86_64 2024-09-17T08:04:22.236 INFO:teuthology.orchestra.run.smithi152.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-09-17T08:04:22.236 INFO:teuthology.orchestra.run.smithi152.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-09-17T08:04:22.236 INFO:teuthology.orchestra.run.smithi152.stdout: libradosstriper1-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:22.236 INFO:teuthology.orchestra.run.smithi152.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-09-17T08:04:22.236 INFO:teuthology.orchestra.run.smithi152.stdout: librgw2-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:22.236 INFO:teuthology.orchestra.run.smithi152.stdout: libunwind-1.6.2-1.el9.x86_64 2024-09-17T08:04:22.236 INFO:teuthology.orchestra.run.smithi152.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-09-17T08:04:22.236 INFO:teuthology.orchestra.run.smithi152.stdout: parquet-libs-9.0.0-11.el9.x86_64 2024-09-17T08:04:22.236 INFO:teuthology.orchestra.run.smithi152.stdout: python3-ceph-argparse-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:22.237 INFO:teuthology.orchestra.run.smithi152.stdout: python3-ceph-common-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:22.237 INFO:teuthology.orchestra.run.smithi152.stdout: python3-cephfs-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:22.237 INFO:teuthology.orchestra.run.smithi152.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-09-17T08:04:22.237 INFO:teuthology.orchestra.run.smithi152.stdout: python3-rados-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:22.237 INFO:teuthology.orchestra.run.smithi152.stdout: python3-rbd-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:22.237 INFO:teuthology.orchestra.run.smithi152.stdout: python3-rgw-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:22.237 INFO:teuthology.orchestra.run.smithi152.stdout: re2-1:20211101-20.el9.x86_64 2024-09-17T08:04:22.237 INFO:teuthology.orchestra.run.smithi152.stdout: thrift-0.15.0-2.el9.x86_64 2024-09-17T08:04:22.237 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:04:22.237 INFO:teuthology.orchestra.run.smithi152.stdout:Complete! 2024-09-17T08:04:22.625 DEBUG:teuthology.orchestra.run.smithi152:> sudo yum -y install ceph-test 2024-09-17T08:04:22.919 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: libcephsqlite-2:18.2.4-855.g19e2a2be.el9.x86_64 3/4 2024-09-17T08:04:22.995 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-test-2:18.2.4-855.g19e2a2be.el9.x86_64 4/4 2024-09-17T08:04:23.205 INFO:teuthology.orchestra.run.smithi152.stdout:Last metadata expiration check: 0:00:26 ago on Tue 17 Sep 2024 08:03:57 AM UTC. 2024-09-17T08:04:23.336 INFO:teuthology.orchestra.run.smithi152.stdout:Dependencies resolved. 2024-09-17T08:04:23.336 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:04:23.336 INFO:teuthology.orchestra.run.smithi152.stdout: Package Arch Version Repository Size 2024-09-17T08:04:23.337 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:04:23.337 INFO:teuthology.orchestra.run.smithi152.stdout:Installing: 2024-09-17T08:04:23.337 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-test x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 40 M 2024-09-17T08:04:23.337 INFO:teuthology.orchestra.run.smithi152.stdout:Installing dependencies: 2024-09-17T08:04:23.337 INFO:teuthology.orchestra.run.smithi152.stdout: libcephsqlite x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 166 k 2024-09-17T08:04:23.337 INFO:teuthology.orchestra.run.smithi152.stdout: socat x86_64 1.7.4.1-6.el9 appstream 304 k 2024-09-17T08:04:23.337 INFO:teuthology.orchestra.run.smithi152.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-09-17T08:04:23.337 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:04:23.337 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction Summary 2024-09-17T08:04:23.337 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:04:23.337 INFO:teuthology.orchestra.run.smithi152.stdout:Install 4 Packages 2024-09-17T08:04:23.338 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:04:23.338 INFO:teuthology.orchestra.run.smithi152.stdout:Total download size: 40 M 2024-09-17T08:04:23.338 INFO:teuthology.orchestra.run.smithi152.stdout:Installed size: 164 M 2024-09-17T08:04:23.338 INFO:teuthology.orchestra.run.smithi152.stdout:Downloading Packages: 2024-09-17T08:04:23.610 INFO:teuthology.orchestra.run.smithi152.stdout:(1/4): libcephsqlite-18.2.4-855.g19e2a2be.el9.x 741 kB/s | 166 kB 00:00 2024-09-17T08:04:23.985 INFO:teuthology.orchestra.run.smithi152.stdout:(2/4): xmlstarlet-1.6.1-20.el9.x86_64.rpm 170 kB/s | 64 kB 00:00 2024-09-17T08:04:24.019 INFO:teuthology.orchestra.run.smithi152.stdout:(3/4): socat-1.7.4.1-6.el9.x86_64.rpm 481 kB/s | 304 kB 00:00 2024-09-17T08:04:24.678 INFO:teuthology.orchestra.run.smithi152.stdout:(4/4): ceph-test-18.2.4-855.g19e2a2be.el9.x86_6 31 MB/s | 40 MB 00:01 2024-09-17T08:04:24.679 INFO:teuthology.orchestra.run.smithi152.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:04:24.680 INFO:teuthology.orchestra.run.smithi152.stdout:Total 30 MB/s | 40 MB 00:01 2024-09-17T08:04:24.707 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction check 2024-09-17T08:04:24.728 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction check succeeded. 2024-09-17T08:04:24.728 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction test 2024-09-17T08:04:25.061 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-test-2:18.2.4-855.g19e2a2be.el9.x86_64 4/4 2024-09-17T08:04:25.061 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-test-2:18.2.4-855.g19e2a2be.el9.x86_64 1/4 2024-09-17T08:04:25.061 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : libcephsqlite-2:18.2.4-855.g19e2a2be.el9.x86_64 2/4 2024-09-17T08:04:25.061 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : socat-1.7.4.1-6.el9.x86_64 3/4 2024-09-17T08:04:25.062 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction test succeeded. 2024-09-17T08:04:25.062 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction 2024-09-17T08:04:25.375 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 4/4 2024-09-17T08:04:25.375 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:04:25.375 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-09-17T08:04:25.375 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-test-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:25.376 INFO:teuthology.orchestra.run.smithi044.stdout: libcephsqlite-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:25.376 INFO:teuthology.orchestra.run.smithi044.stdout: socat-1.7.4.1-6.el9.x86_64 2024-09-17T08:04:25.376 INFO:teuthology.orchestra.run.smithi044.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-09-17T08:04:25.376 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:04:25.376 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-09-17T08:04:25.557 INFO:teuthology.orchestra.run.smithi152.stdout: Preparing : 1/1 2024-09-17T08:04:25.655 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/4 2024-09-17T08:04:25.661 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install ceph 2024-09-17T08:04:25.701 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : socat-1.7.4.1-6.el9.x86_64 2/4 2024-09-17T08:04:25.729 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : libcephsqlite-2:18.2.4-855.g19e2a2be.el9.x86_64 3/4 2024-09-17T08:04:26.258 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:00:37 ago on Tue 17 Sep 2024 08:03:49 AM UTC. 2024-09-17T08:04:26.401 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-09-17T08:04:26.404 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:04:26.404 INFO:teuthology.orchestra.run.smithi044.stdout: Package Arch Version Repository Size 2024-09-17T08:04:26.404 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:04:26.404 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-09-17T08:04:26.404 INFO:teuthology.orchestra.run.smithi044.stdout: ceph x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 6.5 k 2024-09-17T08:04:26.404 INFO:teuthology.orchestra.run.smithi044.stdout:Installing dependencies: 2024-09-17T08:04:26.404 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-mds x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 2.1 M 2024-09-17T08:04:26.404 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-mgr x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 1.5 M 2024-09-17T08:04:26.404 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-mgr-modules-core noarch 2:18.2.4-855.g19e2a2be.el9 ceph-noarch 246 k 2024-09-17T08:04:26.405 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-mon x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 4.7 M 2024-09-17T08:04:26.405 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-osd x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 17 M 2024-09-17T08:04:26.405 INFO:teuthology.orchestra.run.smithi044.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-09-17T08:04:26.405 INFO:teuthology.orchestra.run.smithi044.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-09-17T08:04:26.405 INFO:teuthology.orchestra.run.smithi044.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-09-17T08:04:26.405 INFO:teuthology.orchestra.run.smithi044.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-09-17T08:04:26.405 INFO:teuthology.orchestra.run.smithi044.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-09-17T08:04:26.405 INFO:teuthology.orchestra.run.smithi044.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-09-17T08:04:26.405 INFO:teuthology.orchestra.run.smithi044.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-09-17T08:04:26.405 INFO:teuthology.orchestra.run.smithi044.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2024-09-17T08:04:26.405 INFO:teuthology.orchestra.run.smithi044.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-09-17T08:04:26.405 INFO:teuthology.orchestra.run.smithi044.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-09-17T08:04:26.405 INFO:teuthology.orchestra.run.smithi044.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-09-17T08:04:26.406 INFO:teuthology.orchestra.run.smithi044.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-09-17T08:04:26.406 INFO:teuthology.orchestra.run.smithi044.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-09-17T08:04:26.406 INFO:teuthology.orchestra.run.smithi044.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-09-17T08:04:26.406 INFO:teuthology.orchestra.run.smithi044.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-09-17T08:04:26.406 INFO:teuthology.orchestra.run.smithi044.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-09-17T08:04:26.406 INFO:teuthology.orchestra.run.smithi044.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-09-17T08:04:26.406 INFO:teuthology.orchestra.run.smithi044.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-09-17T08:04:26.406 INFO:teuthology.orchestra.run.smithi044.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-09-17T08:04:26.406 INFO:teuthology.orchestra.run.smithi044.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-09-17T08:04:26.406 INFO:teuthology.orchestra.run.smithi044.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-09-17T08:04:26.406 INFO:teuthology.orchestra.run.smithi044.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-09-17T08:04:26.406 INFO:teuthology.orchestra.run.smithi044.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-09-17T08:04:26.407 INFO:teuthology.orchestra.run.smithi044.stdout: python3-urllib3 noarch 1.26.5-6.el9 baseos 215 k 2024-09-17T08:04:26.407 INFO:teuthology.orchestra.run.smithi044.stdout: python3-webob noarch 1.8.8-2.el9 epel 230 k 2024-09-17T08:04:26.407 INFO:teuthology.orchestra.run.smithi044.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-09-17T08:04:26.407 INFO:teuthology.orchestra.run.smithi044.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-09-17T08:04:26.407 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:04:26.407 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-09-17T08:04:26.407 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:04:26.407 INFO:teuthology.orchestra.run.smithi044.stdout:Install 33 Packages 2024-09-17T08:04:26.407 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:04:26.408 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 29 M 2024-09-17T08:04:26.408 INFO:teuthology.orchestra.run.smithi044.stdout:Installed size: 104 M 2024-09-17T08:04:26.408 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-09-17T08:04:27.310 INFO:teuthology.orchestra.run.smithi044.stdout:(1/33): ceph-18.2.4-855.g19e2a2be.el9.x86_64.rp 53 kB/s | 6.5 kB 00:00 2024-09-17T08:04:27.510 INFO:teuthology.orchestra.run.smithi044.stdout:(2/33): ceph-mgr-18.2.4-855.g19e2a2be.el9.x86_6 4.5 MB/s | 1.5 MB 00:00 2024-09-17T08:04:27.569 INFO:teuthology.orchestra.run.smithi044.stdout:(3/33): ceph-mds-18.2.4-855.g19e2a2be.el9.x86_6 5.5 MB/s | 2.1 MB 00:00 2024-09-17T08:04:27.661 INFO:teuthology.orchestra.run.smithi044.stdout:(4/33): ceph-mgr-modules-core-18.2.4-855.g19e2a 2.6 MB/s | 246 kB 00:00 2024-09-17T08:04:27.728 INFO:teuthology.orchestra.run.smithi044.stdout:(5/33): ceph-mon-18.2.4-855.g19e2a2be.el9.x86_6 11 MB/s | 4.7 MB 00:00 2024-09-17T08:04:27.853 INFO:teuthology.orchestra.run.smithi044.stdout:(6/33): python3-cffi-1.14.5-5.el9.x86_64.rpm 1.3 MB/s | 253 kB 00:00 2024-09-17T08:04:27.895 INFO:teuthology.orchestra.run.smithi044.stdout:(7/33): python3-ply-3.11-14.el9.noarch.rpm 2.5 MB/s | 106 kB 00:00 2024-09-17T08:04:27.937 INFO:teuthology.orchestra.run.smithi044.stdout:(8/33): python3-pycparser-2.20-6.el9.noarch.rpm 3.2 MB/s | 135 kB 00:00 2024-09-17T08:04:28.121 INFO:teuthology.orchestra.run.smithi044.stdout:(9/33): ceph-osd-18.2.4-855.g19e2a2be.el9.x86_6 27 MB/s | 17 MB 00:00 2024-09-17T08:04:28.146 INFO:teuthology.orchestra.run.smithi044.stdout:(10/33): python3-requests-2.25.1-8.el9.noarch.r 599 kB/s | 125 kB 00:00 2024-09-17T08:04:28.179 INFO:teuthology.orchestra.run.smithi044.stdout:(11/33): python3-cryptography-36.0.1-4.el9.x86_ 2.7 MB/s | 1.2 MB 00:00 2024-09-17T08:04:28.213 INFO:teuthology.orchestra.run.smithi044.stdout:(12/33): python3-mako-1.1.4-6.el9.noarch.rpm 2.5 MB/s | 172 kB 00:00 2024-09-17T08:04:28.238 INFO:teuthology.orchestra.run.smithi044.stdout:(13/33): python3-markupsafe-1.1.1-12.el9.x86_64 594 kB/s | 35 kB 00:00 2024-09-17T08:04:28.264 INFO:teuthology.orchestra.run.smithi044.stdout:(14/33): python3-pytz-2021.1-5.el9.noarch.rpm 1.0 MB/s | 51 kB 00:00 2024-09-17T08:04:28.289 INFO:teuthology.orchestra.run.smithi044.stdout:(15/33): python3-toml-0.10.2-6.el9.noarch.rpm 831 kB/s | 42 kB 00:00 2024-09-17T08:04:28.314 INFO:teuthology.orchestra.run.smithi044.stdout:(16/33): python3-urllib3-1.26.5-6.el9.noarch.rp 1.1 MB/s | 215 kB 00:00 2024-09-17T08:04:28.365 INFO:teuthology.orchestra.run.smithi044.stdout:(17/33): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 433 kB/s | 43 kB 00:00 2024-09-17T08:04:28.390 INFO:teuthology.orchestra.run.smithi044.stdout:(18/33): python3-jaraco-8.2.1-3.el9.noarch.rpm 469 kB/s | 11 kB 00:00 2024-09-17T08:04:28.415 INFO:teuthology.orchestra.run.smithi044.stdout:(19/33): python3-jaraco-classes-3.2.1-5.el9.noa 709 kB/s | 18 kB 00:00 2024-09-17T08:04:28.440 INFO:teuthology.orchestra.run.smithi044.stdout:(20/33): python3-cheroot-8.6.0-4.el9.noarch.rpm 1.1 MB/s | 172 kB 00:00 2024-09-17T08:04:28.466 INFO:teuthology.orchestra.run.smithi044.stdout:(21/33): python3-jaraco-collections-3.0.0-8.el9 460 kB/s | 23 kB 00:00 2024-09-17T08:04:28.491 INFO:teuthology.orchestra.run.smithi044.stdout:(22/33): python3-jaraco-functools-3.5.0-2.el9.n 387 kB/s | 19 kB 00:00 2024-09-17T08:04:28.516 INFO:teuthology.orchestra.run.smithi044.stdout:(23/33): python3-jaraco-text-3.2.0-6.el9.noarch 392 kB/s | 20 kB 00:00 2024-09-17T08:04:28.541 INFO:teuthology.orchestra.run.smithi044.stdout:(24/33): python3-logutils-0.3.5-21.el9.noarch.r 923 kB/s | 46 kB 00:00 2024-09-17T08:04:28.567 INFO:teuthology.orchestra.run.smithi044.stdout:(25/33): python3-more-itertools-8.12.0-2.el9.no 1.5 MB/s | 79 kB 00:00 2024-09-17T08:04:28.592 INFO:teuthology.orchestra.run.smithi044.stdout:(26/33): python3-cherrypy-18.6.1-2.el9.noarch.r 1.3 MB/s | 358 kB 00:00 2024-09-17T08:04:28.609 INFO:teuthology.orchestra.run.smithi044.stdout:(27/33): python3-portend-3.1.0-2.el9.noarch.rpm 391 kB/s | 16 kB 00:00 2024-09-17T08:04:28.634 INFO:teuthology.orchestra.run.smithi044.stdout:(28/33): python3-pecan-1.4.2-3.el9.noarch.rpm 2.9 MB/s | 272 kB 00:00 2024-09-17T08:04:28.660 INFO:teuthology.orchestra.run.smithi044.stdout:(29/33): python3-tempora-5.0.0-2.el9.noarch.rpm 715 kB/s | 36 kB 00:00 2024-09-17T08:04:28.685 INFO:teuthology.orchestra.run.smithi044.stdout:(30/33): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.2 MB/s | 90 kB 00:00 2024-09-17T08:04:28.710 INFO:teuthology.orchestra.run.smithi044.stdout:(31/33): python3-webob-1.8.8-2.el9.noarch.rpm 3.0 MB/s | 230 kB 00:00 2024-09-17T08:04:28.727 INFO:teuthology.orchestra.run.smithi044.stdout:(32/33): python3-zc-lockfile-2.0-10.el9.noarch. 477 kB/s | 20 kB 00:00 2024-09-17T08:04:28.752 INFO:teuthology.orchestra.run.smithi044.stdout:(33/33): python3-werkzeug-2.0.3-3.el9.1.noarch. 4.5 MB/s | 427 kB 00:00 2024-09-17T08:04:28.757 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:04:28.757 INFO:teuthology.orchestra.run.smithi044.stdout:Total 12 MB/s | 29 MB 00:02 2024-09-17T08:04:28.885 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-09-17T08:04:28.929 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-09-17T08:04:28.929 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-09-17T08:04:29.343 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-09-17T08:04:29.343 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-09-17T08:04:29.413 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: libcephsqlite-2:18.2.4-855.g19e2a2be.el9.x86_64 3/4 2024-09-17T08:04:29.486 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : ceph-test-2:18.2.4-855.g19e2a2be.el9.x86_64 4/4 2024-09-17T08:04:30.655 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-09-17T08:04:30.714 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/33 2024-09-17T08:04:30.746 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/33 2024-09-17T08:04:30.779 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 3/33 2024-09-17T08:04:30.876 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 4/33 2024-09-17T08:04:30.953 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 5/33 2024-09-17T08:04:31.008 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-webob-1.8.8-2.el9.noarch 6/33 2024-09-17T08:04:31.050 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 7/33 2024-09-17T08:04:31.079 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 8/33 2024-09-17T08:04:31.114 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 9/33 2024-09-17T08:04:31.147 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 10/33 2024-09-17T08:04:31.189 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 11/33 2024-09-17T08:04:31.234 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 12/33 2024-09-17T08:04:31.267 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 13/33 2024-09-17T08:04:31.306 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 14/33 2024-09-17T08:04:31.325 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-selinux-2:18.2.4-855.g19e2a2be.el9.x86_64 29/32 2024-09-17T08:04:31.326 INFO:teuthology.orchestra.run.smithi145.stdout:skipping the directory /sys 2024-09-17T08:04:31.326 INFO:teuthology.orchestra.run.smithi145.stdout:skipping the directory /proc 2024-09-17T08:04:31.326 INFO:teuthology.orchestra.run.smithi145.stdout:skipping the directory /mnt 2024-09-17T08:04:31.326 INFO:teuthology.orchestra.run.smithi145.stdout:skipping the directory /var/tmp 2024-09-17T08:04:31.326 INFO:teuthology.orchestra.run.smithi145.stdout:skipping the directory /home 2024-09-17T08:04:31.326 INFO:teuthology.orchestra.run.smithi145.stdout:skipping the directory /root 2024-09-17T08:04:31.326 INFO:teuthology.orchestra.run.smithi145.stdout:skipping the directory /tmp 2024-09-17T08:04:31.326 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:04:31.392 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 15/33 2024-09-17T08:04:31.542 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: ceph-test-2:18.2.4-855.g19e2a2be.el9.x86_64 4/4 2024-09-17T08:04:31.542 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : ceph-test-2:18.2.4-855.g19e2a2be.el9.x86_64 1/4 2024-09-17T08:04:31.542 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : libcephsqlite-2:18.2.4-855.g19e2a2be.el9.x86_64 2/4 2024-09-17T08:04:31.542 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : socat-1.7.4.1-6.el9.x86_64 3/4 2024-09-17T08:04:31.543 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 16/33 2024-09-17T08:04:31.634 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 17/33 2024-09-17T08:04:31.704 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-urllib3-1.26.5-6.el9.noarch 18/33 2024-09-17T08:04:31.739 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 19/33 2024-09-17T08:04:31.798 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-ply-3.11-14.el9.noarch 20/33 2024-09-17T08:04:31.861 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 21/33 2024-09-17T08:04:31.871 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 4/4 2024-09-17T08:04:31.871 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:04:31.871 INFO:teuthology.orchestra.run.smithi152.stdout:Installed: 2024-09-17T08:04:31.871 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-test-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:31.871 INFO:teuthology.orchestra.run.smithi152.stdout: libcephsqlite-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:31.871 INFO:teuthology.orchestra.run.smithi152.stdout: socat-1.7.4.1-6.el9.x86_64 2024-09-17T08:04:31.871 INFO:teuthology.orchestra.run.smithi152.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-09-17T08:04:31.871 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:04:31.871 INFO:teuthology.orchestra.run.smithi152.stdout:Complete! 2024-09-17T08:04:32.059 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 22/33 2024-09-17T08:04:32.078 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-radosgw-2:18.2.4-855.g19e2a2be.el9.x86_64 30/32 2024-09-17T08:04:32.104 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-radosgw-2:18.2.4-855.g19e2a2be.el9.x86_64 30/32 2024-09-17T08:04:32.104 INFO:teuthology.orchestra.run.smithi145.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T08:04:32.104 INFO:teuthology.orchestra.run.smithi145.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-09-17T08:04:32.104 INFO:teuthology.orchestra.run.smithi145.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-17T08:04:32.104 INFO:teuthology.orchestra.run.smithi145.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-17T08:04:32.104 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:04:32.106 INFO:teuthology.orchestra.run.smithi145.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 31/32 2024-09-17T08:04:32.118 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 23/33 2024-09-17T08:04:32.188 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 31/32 2024-09-17T08:04:32.188 INFO:teuthology.orchestra.run.smithi145.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 32/32 2024-09-17T08:04:32.200 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 24/33 2024-09-17T08:04:32.203 DEBUG:teuthology.orchestra.run.smithi152:> sudo yum -y install ceph 2024-09-17T08:04:32.298 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 25/33 2024-09-17T08:04:32.333 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 26/33 2024-09-17T08:04:32.457 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 27/33 2024-09-17T08:04:32.634 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-mgr-modules-core-2:18.2.4-855.g19e2a2be.el9.n 28/33 2024-09-17T08:04:32.660 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-mgr-2:18.2.4-855.g19e2a2be.el9.x86_64 29/33 2024-09-17T08:04:32.687 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-mgr-2:18.2.4-855.g19e2a2be.el9.x86_64 29/33 2024-09-17T08:04:32.687 INFO:teuthology.orchestra.run.smithi044.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T08:04:32.687 INFO:teuthology.orchestra.run.smithi044.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-09-17T08:04:32.687 INFO:teuthology.orchestra.run.smithi044.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-17T08:04:32.687 INFO:teuthology.orchestra.run.smithi044.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-17T08:04:32.687 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:04:32.794 INFO:teuthology.orchestra.run.smithi152.stdout:Last metadata expiration check: 0:00:35 ago on Tue 17 Sep 2024 08:03:57 AM UTC. 2024-09-17T08:04:32.940 INFO:teuthology.orchestra.run.smithi152.stdout:Dependencies resolved. 2024-09-17T08:04:32.942 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:04:32.942 INFO:teuthology.orchestra.run.smithi152.stdout: Package Arch Version Repository Size 2024-09-17T08:04:32.942 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:04:32.942 INFO:teuthology.orchestra.run.smithi152.stdout:Installing: 2024-09-17T08:04:32.943 INFO:teuthology.orchestra.run.smithi152.stdout: ceph x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 6.5 k 2024-09-17T08:04:32.943 INFO:teuthology.orchestra.run.smithi152.stdout:Installing dependencies: 2024-09-17T08:04:32.943 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-mds x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 2.1 M 2024-09-17T08:04:32.943 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-mgr x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 1.5 M 2024-09-17T08:04:32.943 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-mgr-modules-core noarch 2:18.2.4-855.g19e2a2be.el9 ceph-noarch 246 k 2024-09-17T08:04:32.943 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-mon x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 4.7 M 2024-09-17T08:04:32.943 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-osd x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 17 M 2024-09-17T08:04:32.943 INFO:teuthology.orchestra.run.smithi152.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-09-17T08:04:32.943 INFO:teuthology.orchestra.run.smithi152.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-09-17T08:04:32.943 INFO:teuthology.orchestra.run.smithi152.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-09-17T08:04:32.943 INFO:teuthology.orchestra.run.smithi152.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-09-17T08:04:32.943 INFO:teuthology.orchestra.run.smithi152.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-09-17T08:04:32.943 INFO:teuthology.orchestra.run.smithi152.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-09-17T08:04:32.944 INFO:teuthology.orchestra.run.smithi152.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-09-17T08:04:32.944 INFO:teuthology.orchestra.run.smithi152.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2024-09-17T08:04:32.944 INFO:teuthology.orchestra.run.smithi152.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-09-17T08:04:32.944 INFO:teuthology.orchestra.run.smithi152.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-09-17T08:04:32.944 INFO:teuthology.orchestra.run.smithi152.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-09-17T08:04:32.944 INFO:teuthology.orchestra.run.smithi152.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-09-17T08:04:32.944 INFO:teuthology.orchestra.run.smithi152.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-09-17T08:04:32.944 INFO:teuthology.orchestra.run.smithi152.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-09-17T08:04:32.944 INFO:teuthology.orchestra.run.smithi152.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-09-17T08:04:32.944 INFO:teuthology.orchestra.run.smithi152.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-09-17T08:04:32.945 INFO:teuthology.orchestra.run.smithi152.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-09-17T08:04:32.945 INFO:teuthology.orchestra.run.smithi152.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-09-17T08:04:32.945 INFO:teuthology.orchestra.run.smithi152.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-09-17T08:04:32.945 INFO:teuthology.orchestra.run.smithi152.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-09-17T08:04:32.945 INFO:teuthology.orchestra.run.smithi152.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-09-17T08:04:32.945 INFO:teuthology.orchestra.run.smithi152.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-09-17T08:04:32.945 INFO:teuthology.orchestra.run.smithi152.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-09-17T08:04:32.945 INFO:teuthology.orchestra.run.smithi152.stdout: python3-urllib3 noarch 1.26.5-6.el9 baseos 215 k 2024-09-17T08:04:32.945 INFO:teuthology.orchestra.run.smithi152.stdout: python3-webob noarch 1.8.8-2.el9 epel 230 k 2024-09-17T08:04:32.945 INFO:teuthology.orchestra.run.smithi152.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-09-17T08:04:32.945 INFO:teuthology.orchestra.run.smithi152.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-09-17T08:04:32.945 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:04:32.946 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction Summary 2024-09-17T08:04:32.946 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:04:32.946 INFO:teuthology.orchestra.run.smithi152.stdout:Install 33 Packages 2024-09-17T08:04:32.946 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:04:32.946 INFO:teuthology.orchestra.run.smithi152.stdout:Total download size: 29 M 2024-09-17T08:04:32.946 INFO:teuthology.orchestra.run.smithi152.stdout:Installed size: 104 M 2024-09-17T08:04:32.946 INFO:teuthology.orchestra.run.smithi152.stdout:Downloading Packages: 2024-09-17T08:04:33.267 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 32/32 2024-09-17T08:04:33.267 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-base-2:18.2.4-855.g19e2a2be.el9.x86_64 1/32 2024-09-17T08:04:33.267 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-common-2:18.2.4-855.g19e2a2be.el9.x86_64 2/32 2024-09-17T08:04:33.267 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-radosgw-2:18.2.4-855.g19e2a2be.el9.x86_64 3/32 2024-09-17T08:04:33.267 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-selinux-2:18.2.4-855.g19e2a2be.el9.x86_64 4/32 2024-09-17T08:04:33.267 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : libcephfs2-2:18.2.4-855.g19e2a2be.el9.x86_64 5/32 2024-09-17T08:04:33.267 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : libradosstriper1-2:18.2.4-855.g19e2a2be.el9.x86_64 6/32 2024-09-17T08:04:33.267 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : librgw2-2:18.2.4-855.g19e2a2be.el9.x86_64 7/32 2024-09-17T08:04:33.268 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-ceph-argparse-2:18.2.4-855.g19e2a2be.el9.x 8/32 2024-09-17T08:04:33.268 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-ceph-common-2:18.2.4-855.g19e2a2be.el9.x86 9/32 2024-09-17T08:04:33.268 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-cephfs-2:18.2.4-855.g19e2a2be.el9.x86_64 10/32 2024-09-17T08:04:33.268 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-rados-2:18.2.4-855.g19e2a2be.el9.x86_64 11/32 2024-09-17T08:04:33.268 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-rbd-2:18.2.4-855.g19e2a2be.el9.x86_64 12/32 2024-09-17T08:04:33.268 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-rgw-2:18.2.4-855.g19e2a2be.el9.x86_64 13/32 2024-09-17T08:04:33.268 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/32 2024-09-17T08:04:33.268 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/32 2024-09-17T08:04:33.268 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/32 2024-09-17T08:04:33.268 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/32 2024-09-17T08:04:33.268 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/32 2024-09-17T08:04:33.268 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/32 2024-09-17T08:04:33.268 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : fmt-8.1.1-5.el9.x86_64 20/32 2024-09-17T08:04:33.269 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 21/32 2024-09-17T08:04:33.269 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : libarrow-9.0.0-11.el9.x86_64 22/32 2024-09-17T08:04:33.269 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : libarrow-doc-9.0.0-11.el9.noarch 23/32 2024-09-17T08:04:33.269 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 24/32 2024-09-17T08:04:33.269 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 25/32 2024-09-17T08:04:33.269 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : parquet-libs-9.0.0-11.el9.x86_64 26/32 2024-09-17T08:04:33.269 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : re2-1:20211101-20.el9.x86_64 27/32 2024-09-17T08:04:33.269 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 28/32 2024-09-17T08:04:33.269 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : librados2-2:18.2.4-855.g19e2a2be.el9.x86_64 29/32 2024-09-17T08:04:33.269 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 30/32 2024-09-17T08:04:33.269 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : librbd1-2:18.2.4-855.g19e2a2be.el9.x86_64 31/32 2024-09-17T08:04:33.362 INFO:teuthology.orchestra.run.smithi152.stdout:(1/33): ceph-18.2.4-855.g19e2a2be.el9.x86_64.rp 54 kB/s | 6.5 kB 00:00 2024-09-17T08:04:33.554 INFO:teuthology.orchestra.run.smithi152.stdout:(2/33): ceph-mgr-18.2.4-855.g19e2a2be.el9.x86_6 4.7 MB/s | 1.5 MB 00:00 2024-09-17T08:04:33.604 INFO:teuthology.orchestra.run.smithi152.stdout:(3/33): ceph-mds-18.2.4-855.g19e2a2be.el9.x86_6 5.8 MB/s | 2.1 MB 00:00 2024-09-17T08:04:33.704 INFO:teuthology.orchestra.run.smithi152.stdout:(4/33): ceph-mgr-modules-core-18.2.4-855.g19e2a 2.4 MB/s | 246 kB 00:00 2024-09-17T08:04:33.779 INFO:teuthology.orchestra.run.smithi152.stdout:(5/33): ceph-mon-18.2.4-855.g19e2a2be.el9.x86_6 11 MB/s | 4.7 MB 00:00 2024-09-17T08:04:34.138 INFO:teuthology.orchestra.run.smithi152.stdout:(6/33): ceph-osd-18.2.4-855.g19e2a2be.el9.x86_6 28 MB/s | 17 MB 00:00 2024-09-17T08:04:34.211 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-osd-2:18.2.4-855.g19e2a2be.el9.x86_64 30/33 2024-09-17T08:04:34.242 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-osd-2:18.2.4-855.g19e2a2be.el9.x86_64 30/33 2024-09-17T08:04:34.242 INFO:teuthology.orchestra.run.smithi044.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T08:04:34.242 INFO:teuthology.orchestra.run.smithi044.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-09-17T08:04:34.242 INFO:teuthology.orchestra.run.smithi044.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-17T08:04:34.242 INFO:teuthology.orchestra.run.smithi044.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-17T08:04:34.243 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:04:34.276 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 32/32 2024-09-17T08:04:34.277 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:04:34.277 INFO:teuthology.orchestra.run.smithi145.stdout:Upgraded: 2024-09-17T08:04:34.277 INFO:teuthology.orchestra.run.smithi145.stdout: librados2-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:34.277 INFO:teuthology.orchestra.run.smithi145.stdout: librbd1-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:34.277 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-17T08:04:34.277 INFO:teuthology.orchestra.run.smithi145.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-09-17T08:04:34.277 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-base-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:34.277 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-common-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:34.277 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-radosgw-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:34.277 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-selinux-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:34.277 INFO:teuthology.orchestra.run.smithi145.stdout: fmt-8.1.1-5.el9.x86_64 2024-09-17T08:04:34.277 INFO:teuthology.orchestra.run.smithi145.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2024-09-17T08:04:34.278 INFO:teuthology.orchestra.run.smithi145.stdout: libarrow-9.0.0-11.el9.x86_64 2024-09-17T08:04:34.278 INFO:teuthology.orchestra.run.smithi145.stdout: libarrow-doc-9.0.0-11.el9.noarch 2024-09-17T08:04:34.278 INFO:teuthology.orchestra.run.smithi145.stdout: libcephfs2-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:34.278 INFO:teuthology.orchestra.run.smithi145.stdout: liboath-2.6.7-2.el9.x86_64 2024-09-17T08:04:34.278 INFO:teuthology.orchestra.run.smithi145.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-09-17T08:04:34.278 INFO:teuthology.orchestra.run.smithi145.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-09-17T08:04:34.278 INFO:teuthology.orchestra.run.smithi145.stdout: libradosstriper1-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:34.278 INFO:teuthology.orchestra.run.smithi145.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-09-17T08:04:34.278 INFO:teuthology.orchestra.run.smithi145.stdout: librgw2-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:34.278 INFO:teuthology.orchestra.run.smithi145.stdout: libunwind-1.6.2-1.el9.x86_64 2024-09-17T08:04:34.278 INFO:teuthology.orchestra.run.smithi145.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-09-17T08:04:34.278 INFO:teuthology.orchestra.run.smithi145.stdout: parquet-libs-9.0.0-11.el9.x86_64 2024-09-17T08:04:34.278 INFO:teuthology.orchestra.run.smithi145.stdout: python3-ceph-argparse-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:34.279 INFO:teuthology.orchestra.run.smithi145.stdout: python3-ceph-common-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:34.279 INFO:teuthology.orchestra.run.smithi145.stdout: python3-cephfs-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:34.279 INFO:teuthology.orchestra.run.smithi145.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-09-17T08:04:34.279 INFO:teuthology.orchestra.run.smithi145.stdout: python3-rados-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:34.279 INFO:teuthology.orchestra.run.smithi145.stdout: python3-rbd-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:34.279 INFO:teuthology.orchestra.run.smithi145.stdout: python3-rgw-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:34.279 INFO:teuthology.orchestra.run.smithi145.stdout: re2-1:20211101-20.el9.x86_64 2024-09-17T08:04:34.279 INFO:teuthology.orchestra.run.smithi145.stdout: thrift-0.15.0-2.el9.x86_64 2024-09-17T08:04:34.279 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:04:34.279 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-17T08:04:34.629 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install ceph-test 2024-09-17T08:04:34.721 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-mon-2:18.2.4-855.g19e2a2be.el9.x86_64 31/33 2024-09-17T08:04:34.721 INFO:teuthology.orchestra.run.smithi152.stdout:(7/33): python3-cffi-1.14.5-5.el9.x86_64.rpm 249 kB/s | 253 kB 00:01 2024-09-17T08:04:34.746 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-mon-2:18.2.4-855.g19e2a2be.el9.x86_64 31/33 2024-09-17T08:04:34.746 INFO:teuthology.orchestra.run.smithi044.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T08:04:34.746 INFO:teuthology.orchestra.run.smithi044.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-09-17T08:04:34.746 INFO:teuthology.orchestra.run.smithi044.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-17T08:04:34.746 INFO:teuthology.orchestra.run.smithi044.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-17T08:04:34.746 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:04:34.813 INFO:teuthology.orchestra.run.smithi152.stdout:(8/33): python3-ply-3.11-14.el9.noarch.rpm 161 kB/s | 106 kB 00:00 2024-09-17T08:04:34.914 INFO:teuthology.orchestra.run.smithi152.stdout:(9/33): python3-cryptography-36.0.1-4.el9.x86_6 1.1 MB/s | 1.2 MB 00:01 2024-09-17T08:04:34.971 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-mds-2:18.2.4-855.g19e2a2be.el9.x86_64 32/33 2024-09-17T08:04:34.997 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-mds-2:18.2.4-855.g19e2a2be.el9.x86_64 32/33 2024-09-17T08:04:34.997 INFO:teuthology.orchestra.run.smithi044.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T08:04:34.997 INFO:teuthology.orchestra.run.smithi044.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-09-17T08:04:34.997 INFO:teuthology.orchestra.run.smithi044.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-17T08:04:34.997 INFO:teuthology.orchestra.run.smithi044.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-17T08:04:34.997 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:04:35.071 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-2:18.2.4-855.g19e2a2be.el9.x86_64 33/33 2024-09-17T08:04:35.212 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:00:26 ago on Tue 17 Sep 2024 08:04:09 AM UTC. 2024-09-17T08:04:35.351 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-17T08:04:35.352 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:04:35.352 INFO:teuthology.orchestra.run.smithi145.stdout: Package Arch Version Repository Size 2024-09-17T08:04:35.352 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:04:35.352 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-17T08:04:35.352 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-test x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 40 M 2024-09-17T08:04:35.353 INFO:teuthology.orchestra.run.smithi145.stdout:Installing dependencies: 2024-09-17T08:04:35.353 INFO:teuthology.orchestra.run.smithi145.stdout: libcephsqlite x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 166 k 2024-09-17T08:04:35.353 INFO:teuthology.orchestra.run.smithi145.stdout: socat x86_64 1.7.4.1-6.el9 appstream 304 k 2024-09-17T08:04:35.353 INFO:teuthology.orchestra.run.smithi145.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-09-17T08:04:35.353 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:04:35.353 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-17T08:04:35.353 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:04:35.353 INFO:teuthology.orchestra.run.smithi145.stdout:Install 4 Packages 2024-09-17T08:04:35.353 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:04:35.354 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 40 M 2024-09-17T08:04:35.354 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 164 M 2024-09-17T08:04:35.354 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-17T08:04:35.522 INFO:teuthology.orchestra.run.smithi152.stdout:(10/33): python3-pycparser-2.20-6.el9.noarch.rp 169 kB/s | 135 kB 00:00 2024-09-17T08:04:35.547 INFO:teuthology.orchestra.run.smithi152.stdout:(11/33): python3-requests-2.25.1-8.el9.noarch.r 170 kB/s | 125 kB 00:00 2024-09-17T08:04:35.656 INFO:teuthology.orchestra.run.smithi152.stdout:(12/33): python3-urllib3-1.26.5-6.el9.noarch.rp 289 kB/s | 215 kB 00:00 2024-09-17T08:04:35.833 INFO:teuthology.orchestra.run.smithi145.stdout:(1/4): socat-1.7.4.1-6.el9.x86_64.rpm 1.5 MB/s | 304 kB 00:00 2024-09-17T08:04:35.858 INFO:teuthology.orchestra.run.smithi145.stdout:(2/4): libcephsqlite-18.2.4-855.g19e2a2be.el9.x 732 kB/s | 166 kB 00:00 2024-09-17T08:04:35.878 INFO:teuthology.orchestra.run.smithi145.stdout:(3/4): xmlstarlet-1.6.1-20.el9.x86_64.rpm 1.4 MB/s | 64 kB 00:00 2024-09-17T08:04:36.098 INFO:teuthology.orchestra.run.smithi152.stdout:(13/33): python3-markupsafe-1.1.1-12.el9.x86_64 63 kB/s | 35 kB 00:00 2024-09-17T08:04:36.240 INFO:teuthology.orchestra.run.smithi152.stdout:(14/33): python3-mako-1.1.4-6.el9.noarch.rpm 240 kB/s | 172 kB 00:00 2024-09-17T08:04:36.282 INFO:teuthology.orchestra.run.smithi152.stdout:(15/33): python3-pytz-2021.1-5.el9.noarch.rpm 82 kB/s | 51 kB 00:00 2024-09-17T08:04:36.306 INFO:teuthology.orchestra.run.smithi152.stdout:(16/33): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 657 kB/s | 43 kB 00:00 2024-09-17T08:04:36.349 INFO:teuthology.orchestra.run.smithi152.stdout:(17/33): python3-cheroot-8.6.0-4.el9.noarch.rpm 2.6 MB/s | 172 kB 00:00 2024-09-17T08:04:36.399 INFO:teuthology.orchestra.run.smithi152.stdout:(18/33): python3-cherrypy-18.6.1-2.el9.noarch.r 3.9 MB/s | 358 kB 00:00 2024-09-17T08:04:36.416 INFO:teuthology.orchestra.run.smithi152.stdout:(19/33): python3-jaraco-8.2.1-3.el9.noarch.rpm 159 kB/s | 11 kB 00:00 2024-09-17T08:04:36.441 INFO:teuthology.orchestra.run.smithi152.stdout:(20/33): python3-jaraco-classes-3.2.1-5.el9.noa 424 kB/s | 18 kB 00:00 2024-09-17T08:04:36.467 INFO:teuthology.orchestra.run.smithi152.stdout:(21/33): python3-jaraco-collections-3.0.0-8.el9 458 kB/s | 23 kB 00:00 2024-09-17T08:04:36.492 INFO:teuthology.orchestra.run.smithi152.stdout:(22/33): python3-jaraco-functools-3.5.0-2.el9.n 388 kB/s | 19 kB 00:00 2024-09-17T08:04:36.517 INFO:teuthology.orchestra.run.smithi152.stdout:(23/33): python3-jaraco-text-3.2.0-6.el9.noarch 392 kB/s | 20 kB 00:00 2024-09-17T08:04:36.542 INFO:teuthology.orchestra.run.smithi152.stdout:(24/33): python3-logutils-0.3.5-21.el9.noarch.r 926 kB/s | 46 kB 00:00 2024-09-17T08:04:36.616 INFO:teuthology.orchestra.run.smithi152.stdout:(25/33): python3-more-itertools-8.12.0-2.el9.no 1.5 MB/s | 79 kB 00:00 2024-09-17T08:04:36.616 INFO:teuthology.orchestra.run.smithi152.stdout:(26/33): python3-pecan-1.4.2-3.el9.noarch.rpm 5.3 MB/s | 272 kB 00:00 2024-09-17T08:04:36.618 INFO:teuthology.orchestra.run.smithi152.stdout:(27/33): python3-portend-3.1.0-2.el9.noarch.rpm 328 kB/s | 16 kB 00:00 2024-09-17T08:04:36.643 INFO:teuthology.orchestra.run.smithi152.stdout:(28/33): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.8 MB/s | 90 kB 00:00 2024-09-17T08:04:36.669 INFO:teuthology.orchestra.run.smithi152.stdout:(29/33): python3-tempora-5.0.0-2.el9.noarch.rpm 712 kB/s | 36 kB 00:00 2024-09-17T08:04:36.694 INFO:teuthology.orchestra.run.smithi152.stdout:(30/33): python3-webob-1.8.8-2.el9.noarch.rpm 4.5 MB/s | 230 kB 00:00 2024-09-17T08:04:36.719 INFO:teuthology.orchestra.run.smithi152.stdout:(31/33): python3-toml-0.10.2-6.el9.noarch.rpm 67 kB/s | 42 kB 00:00 2024-09-17T08:04:36.745 INFO:teuthology.orchestra.run.smithi152.stdout:(32/33): python3-zc-lockfile-2.0-10.el9.noarch. 406 kB/s | 20 kB 00:00 2024-09-17T08:04:36.778 INFO:teuthology.orchestra.run.smithi152.stdout:(33/33): python3-werkzeug-2.0.3-3.el9.1.noarch. 3.8 MB/s | 427 kB 00:00 2024-09-17T08:04:36.783 INFO:teuthology.orchestra.run.smithi152.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:04:36.783 INFO:teuthology.orchestra.run.smithi152.stdout:Total 7.6 MB/s | 29 MB 00:03 2024-09-17T08:04:36.872 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-2:18.2.4-855.g19e2a2be.el9.x86_64 33/33 2024-09-17T08:04:36.872 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-2:18.2.4-855.g19e2a2be.el9.x86_64 1/33 2024-09-17T08:04:36.872 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-mds-2:18.2.4-855.g19e2a2be.el9.x86_64 2/33 2024-09-17T08:04:36.872 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-mgr-2:18.2.4-855.g19e2a2be.el9.x86_64 3/33 2024-09-17T08:04:36.872 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-mon-2:18.2.4-855.g19e2a2be.el9.x86_64 4/33 2024-09-17T08:04:36.872 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-osd-2:18.2.4-855.g19e2a2be.el9.x86_64 5/33 2024-09-17T08:04:36.872 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-mgr-modules-core-2:18.2.4-855.g19e2a2be.el9.n 6/33 2024-09-17T08:04:36.873 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/33 2024-09-17T08:04:36.873 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/33 2024-09-17T08:04:36.873 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/33 2024-09-17T08:04:36.873 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/33 2024-09-17T08:04:36.873 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/33 2024-09-17T08:04:36.873 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-urllib3-1.26.5-6.el9.noarch 12/33 2024-09-17T08:04:36.873 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 13/33 2024-09-17T08:04:36.873 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 14/33 2024-09-17T08:04:36.873 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 15/33 2024-09-17T08:04:36.873 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 16/33 2024-09-17T08:04:36.873 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 17/33 2024-09-17T08:04:36.873 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 18/33 2024-09-17T08:04:36.873 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 19/33 2024-09-17T08:04:36.874 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 20/33 2024-09-17T08:04:36.874 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 21/33 2024-09-17T08:04:36.874 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 22/33 2024-09-17T08:04:36.874 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 23/33 2024-09-17T08:04:36.874 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 24/33 2024-09-17T08:04:36.874 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 25/33 2024-09-17T08:04:36.874 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 26/33 2024-09-17T08:04:36.874 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 27/33 2024-09-17T08:04:36.875 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 28/33 2024-09-17T08:04:36.875 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 29/33 2024-09-17T08:04:36.875 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 30/33 2024-09-17T08:04:36.875 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-webob-1.8.8-2.el9.noarch 31/33 2024-09-17T08:04:36.876 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 32/33 2024-09-17T08:04:36.907 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction check 2024-09-17T08:04:36.911 INFO:teuthology.orchestra.run.smithi145.stdout:(4/4): ceph-test-18.2.4-855.g19e2a2be.el9.x86_6 31 MB/s | 40 MB 00:01 2024-09-17T08:04:36.913 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:04:36.914 INFO:teuthology.orchestra.run.smithi145.stdout:Total 26 MB/s | 40 MB 00:01 2024-09-17T08:04:36.942 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-17T08:04:36.944 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction check succeeded. 2024-09-17T08:04:36.945 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction test 2024-09-17T08:04:36.961 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-17T08:04:36.962 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-17T08:04:37.287 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-17T08:04:37.287 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-17T08:04:37.347 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction test succeeded. 2024-09-17T08:04:37.347 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction 2024-09-17T08:04:37.767 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-17T08:04:37.808 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 33/33 2024-09-17T08:04:37.808 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:04:37.808 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-09-17T08:04:37.808 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:37.808 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-mds-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:37.808 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-mgr-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:37.808 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-mgr-modules-core-2:18.2.4-855.g19e2a2be.el9.noarch 2024-09-17T08:04:37.808 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-mon-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:37.808 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-osd-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:37.808 INFO:teuthology.orchestra.run.smithi044.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-09-17T08:04:37.809 INFO:teuthology.orchestra.run.smithi044.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-09-17T08:04:37.809 INFO:teuthology.orchestra.run.smithi044.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-09-17T08:04:37.809 INFO:teuthology.orchestra.run.smithi044.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-09-17T08:04:37.809 INFO:teuthology.orchestra.run.smithi044.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-09-17T08:04:37.809 INFO:teuthology.orchestra.run.smithi044.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-09-17T08:04:37.809 INFO:teuthology.orchestra.run.smithi044.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-09-17T08:04:37.809 INFO:teuthology.orchestra.run.smithi044.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-09-17T08:04:37.809 INFO:teuthology.orchestra.run.smithi044.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-09-17T08:04:37.809 INFO:teuthology.orchestra.run.smithi044.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-09-17T08:04:37.809 INFO:teuthology.orchestra.run.smithi044.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-09-17T08:04:37.809 INFO:teuthology.orchestra.run.smithi044.stdout: python3-mako-1.1.4-6.el9.noarch 2024-09-17T08:04:37.809 INFO:teuthology.orchestra.run.smithi044.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-09-17T08:04:37.809 INFO:teuthology.orchestra.run.smithi044.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-09-17T08:04:37.810 INFO:teuthology.orchestra.run.smithi044.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-09-17T08:04:37.810 INFO:teuthology.orchestra.run.smithi044.stdout: python3-ply-3.11-14.el9.noarch 2024-09-17T08:04:37.810 INFO:teuthology.orchestra.run.smithi044.stdout: python3-portend-3.1.0-2.el9.noarch 2024-09-17T08:04:37.810 INFO:teuthology.orchestra.run.smithi044.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-09-17T08:04:37.810 INFO:teuthology.orchestra.run.smithi044.stdout: python3-pycparser-2.20-6.el9.noarch 2024-09-17T08:04:37.810 INFO:teuthology.orchestra.run.smithi044.stdout: python3-pytz-2021.1-5.el9.noarch 2024-09-17T08:04:37.810 INFO:teuthology.orchestra.run.smithi044.stdout: python3-requests-2.25.1-8.el9.noarch 2024-09-17T08:04:37.810 INFO:teuthology.orchestra.run.smithi044.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-09-17T08:04:37.810 INFO:teuthology.orchestra.run.smithi044.stdout: python3-toml-0.10.2-6.el9.noarch 2024-09-17T08:04:37.810 INFO:teuthology.orchestra.run.smithi044.stdout: python3-urllib3-1.26.5-6.el9.noarch 2024-09-17T08:04:37.810 INFO:teuthology.orchestra.run.smithi044.stdout: python3-webob-1.8.8-2.el9.noarch 2024-09-17T08:04:37.810 INFO:teuthology.orchestra.run.smithi044.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-09-17T08:04:37.810 INFO:teuthology.orchestra.run.smithi044.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-09-17T08:04:37.810 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:04:37.811 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-09-17T08:04:37.846 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/4 2024-09-17T08:04:37.894 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : socat-1.7.4.1-6.el9.x86_64 2/4 2024-09-17T08:04:37.921 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : libcephsqlite-2:18.2.4-855.g19e2a2be.el9.x86_64 3/4 2024-09-17T08:04:38.163 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install ceph-base 2024-09-17T08:04:38.539 INFO:teuthology.orchestra.run.smithi152.stdout: Preparing : 1/1 2024-09-17T08:04:38.614 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/33 2024-09-17T08:04:38.646 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/33 2024-09-17T08:04:38.679 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 3/33 2024-09-17T08:04:38.771 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 4/33 2024-09-17T08:04:38.771 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:00:49 ago on Tue 17 Sep 2024 08:03:49 AM UTC. 2024-09-17T08:04:38.849 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 5/33 2024-09-17T08:04:38.864 INFO:teuthology.orchestra.run.smithi044.stdout:Package ceph-base-2:18.2.4-855.g19e2a2be.el9.x86_64 is already installed. 2024-09-17T08:04:38.899 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-webob-1.8.8-2.el9.noarch 6/33 2024-09-17T08:04:38.909 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-09-17T08:04:38.910 INFO:teuthology.orchestra.run.smithi044.stdout:Nothing to do. 2024-09-17T08:04:38.910 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-09-17T08:04:38.941 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 7/33 2024-09-17T08:04:38.971 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 8/33 2024-09-17T08:04:38.979 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install cephadm 2024-09-17T08:04:39.006 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 9/33 2024-09-17T08:04:39.039 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 10/33 2024-09-17T08:04:39.080 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 11/33 2024-09-17T08:04:39.123 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 12/33 2024-09-17T08:04:39.157 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 13/33 2024-09-17T08:04:39.196 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 14/33 2024-09-17T08:04:39.280 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 15/33 2024-09-17T08:04:39.451 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 16/33 2024-09-17T08:04:39.529 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 17/33 2024-09-17T08:04:39.581 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:00:50 ago on Tue 17 Sep 2024 08:03:49 AM UTC. 2024-09-17T08:04:39.581 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-urllib3-1.26.5-6.el9.noarch 18/33 2024-09-17T08:04:39.620 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 19/33 2024-09-17T08:04:39.669 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-ply-3.11-14.el9.noarch 20/33 2024-09-17T08:04:39.717 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-09-17T08:04:39.718 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:04:39.718 INFO:teuthology.orchestra.run.smithi044.stdout: Package Arch Version Repository Size 2024-09-17T08:04:39.718 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:04:39.718 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-09-17T08:04:39.718 INFO:teuthology.orchestra.run.smithi044.stdout: cephadm noarch 2:18.2.4-855.g19e2a2be.el9 ceph-noarch 226 k 2024-09-17T08:04:39.719 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:04:39.719 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-09-17T08:04:39.719 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:04:39.719 INFO:teuthology.orchestra.run.smithi044.stdout:Install 1 Package 2024-09-17T08:04:39.719 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:04:39.719 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 226 k 2024-09-17T08:04:39.719 INFO:teuthology.orchestra.run.smithi044.stdout:Installed size: 217 k 2024-09-17T08:04:39.719 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-09-17T08:04:39.733 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 21/33 2024-09-17T08:04:39.920 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 22/33 2024-09-17T08:04:39.937 INFO:teuthology.orchestra.run.smithi044.stdout:cephadm-18.2.4-855.g19e2a2be.el9.noarch.rpm 1.0 MB/s | 226 kB 00:00 2024-09-17T08:04:39.938 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:04:39.938 INFO:teuthology.orchestra.run.smithi044.stdout:Total 1.0 MB/s | 226 kB 00:00 2024-09-17T08:04:39.938 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-09-17T08:04:39.944 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-09-17T08:04:39.944 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-09-17T08:04:39.947 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-09-17T08:04:39.947 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-09-17T08:04:39.965 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 23/33 2024-09-17T08:04:40.020 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-09-17T08:04:40.052 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 24/33 2024-09-17T08:04:40.149 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 25/33 2024-09-17T08:04:40.189 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 26/33 2024-09-17T08:04:40.307 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 27/33 2024-09-17T08:04:40.410 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: cephadm-2:18.2.4-855.g19e2a2be.el9.noarch 1/1 2024-09-17T08:04:40.471 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : ceph-mgr-modules-core-2:18.2.4-855.g19e2a2be.el9.n 28/33 2024-09-17T08:04:40.500 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : ceph-mgr-2:18.2.4-855.g19e2a2be.el9.x86_64 29/33 2024-09-17T08:04:40.510 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : cephadm-2:18.2.4-855.g19e2a2be.el9.noarch 1/1 2024-09-17T08:04:40.525 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: ceph-mgr-2:18.2.4-855.g19e2a2be.el9.x86_64 29/33 2024-09-17T08:04:40.526 INFO:teuthology.orchestra.run.smithi152.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T08:04:40.526 INFO:teuthology.orchestra.run.smithi152.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-09-17T08:04:40.526 INFO:teuthology.orchestra.run.smithi152.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-17T08:04:40.526 INFO:teuthology.orchestra.run.smithi152.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-17T08:04:40.526 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:04:40.861 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: cephadm-2:18.2.4-855.g19e2a2be.el9.noarch 1/1 2024-09-17T08:04:41.100 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : cephadm-2:18.2.4-855.g19e2a2be.el9.noarch 1/1 2024-09-17T08:04:41.100 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:04:41.100 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-09-17T08:04:41.100 INFO:teuthology.orchestra.run.smithi044.stdout: cephadm-2:18.2.4-855.g19e2a2be.el9.noarch 2024-09-17T08:04:41.100 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:04:41.100 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-09-17T08:04:41.326 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install ceph-immutable-object-cache 2024-09-17T08:04:41.635 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: libcephsqlite-2:18.2.4-855.g19e2a2be.el9.x86_64 3/4 2024-09-17T08:04:41.711 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-test-2:18.2.4-855.g19e2a2be.el9.x86_64 4/4 2024-09-17T08:04:41.937 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:00:52 ago on Tue 17 Sep 2024 08:03:49 AM UTC. 2024-09-17T08:04:42.019 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : ceph-osd-2:18.2.4-855.g19e2a2be.el9.x86_64 30/33 2024-09-17T08:04:42.049 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: ceph-osd-2:18.2.4-855.g19e2a2be.el9.x86_64 30/33 2024-09-17T08:04:42.049 INFO:teuthology.orchestra.run.smithi152.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T08:04:42.049 INFO:teuthology.orchestra.run.smithi152.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-09-17T08:04:42.049 INFO:teuthology.orchestra.run.smithi152.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-17T08:04:42.049 INFO:teuthology.orchestra.run.smithi152.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-17T08:04:42.049 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:04:42.071 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-09-17T08:04:42.072 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:04:42.072 INFO:teuthology.orchestra.run.smithi044.stdout: Package Arch Version Repo Size 2024-09-17T08:04:42.072 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:04:42.072 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-09-17T08:04:42.072 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-immutable-object-cache x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 143 k 2024-09-17T08:04:42.072 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:04:42.072 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-09-17T08:04:42.072 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:04:42.073 INFO:teuthology.orchestra.run.smithi044.stdout:Install 1 Package 2024-09-17T08:04:42.073 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:04:42.073 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 143 k 2024-09-17T08:04:42.073 INFO:teuthology.orchestra.run.smithi044.stdout:Installed size: 395 k 2024-09-17T08:04:42.073 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-09-17T08:04:42.295 INFO:teuthology.orchestra.run.smithi044.stdout:ceph-immutable-object-cache-18.2.4-855.g19e2a2b 645 kB/s | 143 kB 00:00 2024-09-17T08:04:42.295 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:04:42.295 INFO:teuthology.orchestra.run.smithi044.stdout:Total 640 kB/s | 143 kB 00:00 2024-09-17T08:04:42.295 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-09-17T08:04:42.303 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-09-17T08:04:42.304 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-09-17T08:04:42.364 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-09-17T08:04:42.364 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-09-17T08:04:42.502 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : ceph-mon-2:18.2.4-855.g19e2a2be.el9.x86_64 31/33 2024-09-17T08:04:42.523 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-09-17T08:04:42.527 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: ceph-mon-2:18.2.4-855.g19e2a2be.el9.x86_64 31/33 2024-09-17T08:04:42.527 INFO:teuthology.orchestra.run.smithi152.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T08:04:42.527 INFO:teuthology.orchestra.run.smithi152.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-09-17T08:04:42.527 INFO:teuthology.orchestra.run.smithi152.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-17T08:04:42.527 INFO:teuthology.orchestra.run.smithi152.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-17T08:04:42.527 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:04:42.587 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-immutable-object-cache-2:18.2.4-855.g19e2a2be.e 1/1 2024-09-17T08:04:42.613 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-immutable-object-cache-2:18.2.4-855.g19e2a2be.e 1/1 2024-09-17T08:04:42.613 INFO:teuthology.orchestra.run.smithi044.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T08:04:42.614 INFO:teuthology.orchestra.run.smithi044.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-09-17T08:04:42.614 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:04:42.736 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : ceph-mds-2:18.2.4-855.g19e2a2be.el9.x86_64 32/33 2024-09-17T08:04:42.761 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: ceph-mds-2:18.2.4-855.g19e2a2be.el9.x86_64 32/33 2024-09-17T08:04:42.761 INFO:teuthology.orchestra.run.smithi152.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T08:04:42.761 INFO:teuthology.orchestra.run.smithi152.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-09-17T08:04:42.761 INFO:teuthology.orchestra.run.smithi152.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-17T08:04:42.761 INFO:teuthology.orchestra.run.smithi152.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-17T08:04:42.761 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:04:42.825 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : ceph-2:18.2.4-855.g19e2a2be.el9.x86_64 33/33 2024-09-17T08:04:43.594 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-immutable-object-cache-2:18.2.4-855.g19e2a2be.e 1/1 2024-09-17T08:04:43.595 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:04:43.595 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-09-17T08:04:43.595 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-immutable-object-cache-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:43.595 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:04:43.595 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-09-17T08:04:43.709 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-test-2:18.2.4-855.g19e2a2be.el9.x86_64 4/4 2024-09-17T08:04:43.710 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-test-2:18.2.4-855.g19e2a2be.el9.x86_64 1/4 2024-09-17T08:04:43.710 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : libcephsqlite-2:18.2.4-855.g19e2a2be.el9.x86_64 2/4 2024-09-17T08:04:43.710 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : socat-1.7.4.1-6.el9.x86_64 3/4 2024-09-17T08:04:43.806 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install ceph-mgr 2024-09-17T08:04:44.017 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 4/4 2024-09-17T08:04:44.017 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:04:44.018 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-17T08:04:44.018 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-test-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:44.018 INFO:teuthology.orchestra.run.smithi145.stdout: libcephsqlite-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:44.018 INFO:teuthology.orchestra.run.smithi145.stdout: socat-1.7.4.1-6.el9.x86_64 2024-09-17T08:04:44.018 INFO:teuthology.orchestra.run.smithi145.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-09-17T08:04:44.018 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:04:44.019 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-17T08:04:44.346 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install ceph 2024-09-17T08:04:44.425 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:00:55 ago on Tue 17 Sep 2024 08:03:49 AM UTC. 2024-09-17T08:04:44.519 INFO:teuthology.orchestra.run.smithi044.stdout:Package ceph-mgr-2:18.2.4-855.g19e2a2be.el9.x86_64 is already installed. 2024-09-17T08:04:44.564 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-09-17T08:04:44.565 INFO:teuthology.orchestra.run.smithi044.stdout:Nothing to do. 2024-09-17T08:04:44.565 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-09-17T08:04:44.584 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: ceph-2:18.2.4-855.g19e2a2be.el9.x86_64 33/33 2024-09-17T08:04:44.584 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : ceph-2:18.2.4-855.g19e2a2be.el9.x86_64 1/33 2024-09-17T08:04:44.584 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : ceph-mds-2:18.2.4-855.g19e2a2be.el9.x86_64 2/33 2024-09-17T08:04:44.584 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : ceph-mgr-2:18.2.4-855.g19e2a2be.el9.x86_64 3/33 2024-09-17T08:04:44.584 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : ceph-mon-2:18.2.4-855.g19e2a2be.el9.x86_64 4/33 2024-09-17T08:04:44.584 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : ceph-osd-2:18.2.4-855.g19e2a2be.el9.x86_64 5/33 2024-09-17T08:04:44.584 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : ceph-mgr-modules-core-2:18.2.4-855.g19e2a2be.el9.n 6/33 2024-09-17T08:04:44.584 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/33 2024-09-17T08:04:44.584 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/33 2024-09-17T08:04:44.584 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/33 2024-09-17T08:04:44.584 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/33 2024-09-17T08:04:44.584 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/33 2024-09-17T08:04:44.585 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-urllib3-1.26.5-6.el9.noarch 12/33 2024-09-17T08:04:44.585 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 13/33 2024-09-17T08:04:44.585 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 14/33 2024-09-17T08:04:44.585 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 15/33 2024-09-17T08:04:44.585 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 16/33 2024-09-17T08:04:44.585 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 17/33 2024-09-17T08:04:44.585 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 18/33 2024-09-17T08:04:44.585 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 19/33 2024-09-17T08:04:44.585 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 20/33 2024-09-17T08:04:44.585 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 21/33 2024-09-17T08:04:44.585 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 22/33 2024-09-17T08:04:44.585 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 23/33 2024-09-17T08:04:44.585 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 24/33 2024-09-17T08:04:44.586 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 25/33 2024-09-17T08:04:44.586 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 26/33 2024-09-17T08:04:44.587 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 27/33 2024-09-17T08:04:44.587 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 28/33 2024-09-17T08:04:44.587 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 29/33 2024-09-17T08:04:44.587 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 30/33 2024-09-17T08:04:44.587 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-webob-1.8.8-2.el9.noarch 31/33 2024-09-17T08:04:44.587 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 32/33 2024-09-17T08:04:44.633 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install ceph-mgr-dashboard 2024-09-17T08:04:44.929 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:00:35 ago on Tue 17 Sep 2024 08:04:09 AM UTC. 2024-09-17T08:04:45.065 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-17T08:04:45.067 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:04:45.067 INFO:teuthology.orchestra.run.smithi145.stdout: Package Arch Version Repository Size 2024-09-17T08:04:45.067 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:04:45.067 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-17T08:04:45.067 INFO:teuthology.orchestra.run.smithi145.stdout: ceph x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 6.5 k 2024-09-17T08:04:45.067 INFO:teuthology.orchestra.run.smithi145.stdout:Installing dependencies: 2024-09-17T08:04:45.067 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-mds x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 2.1 M 2024-09-17T08:04:45.067 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-mgr x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 1.5 M 2024-09-17T08:04:45.067 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-mgr-modules-core noarch 2:18.2.4-855.g19e2a2be.el9 ceph-noarch 246 k 2024-09-17T08:04:45.067 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-mon x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 4.7 M 2024-09-17T08:04:45.067 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-osd x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 17 M 2024-09-17T08:04:45.067 INFO:teuthology.orchestra.run.smithi145.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-09-17T08:04:45.068 INFO:teuthology.orchestra.run.smithi145.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-09-17T08:04:45.068 INFO:teuthology.orchestra.run.smithi145.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-09-17T08:04:45.068 INFO:teuthology.orchestra.run.smithi145.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-09-17T08:04:45.068 INFO:teuthology.orchestra.run.smithi145.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-09-17T08:04:45.068 INFO:teuthology.orchestra.run.smithi145.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-09-17T08:04:45.068 INFO:teuthology.orchestra.run.smithi145.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-09-17T08:04:45.068 INFO:teuthology.orchestra.run.smithi145.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2024-09-17T08:04:45.068 INFO:teuthology.orchestra.run.smithi145.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-09-17T08:04:45.068 INFO:teuthology.orchestra.run.smithi145.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-09-17T08:04:45.069 INFO:teuthology.orchestra.run.smithi145.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-09-17T08:04:45.069 INFO:teuthology.orchestra.run.smithi145.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-09-17T08:04:45.069 INFO:teuthology.orchestra.run.smithi145.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-09-17T08:04:45.069 INFO:teuthology.orchestra.run.smithi145.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-09-17T08:04:45.069 INFO:teuthology.orchestra.run.smithi145.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-09-17T08:04:45.069 INFO:teuthology.orchestra.run.smithi145.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-09-17T08:04:45.069 INFO:teuthology.orchestra.run.smithi145.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-09-17T08:04:45.069 INFO:teuthology.orchestra.run.smithi145.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-09-17T08:04:45.069 INFO:teuthology.orchestra.run.smithi145.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-09-17T08:04:45.069 INFO:teuthology.orchestra.run.smithi145.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-09-17T08:04:45.069 INFO:teuthology.orchestra.run.smithi145.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-09-17T08:04:45.069 INFO:teuthology.orchestra.run.smithi145.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-09-17T08:04:45.070 INFO:teuthology.orchestra.run.smithi145.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-09-17T08:04:45.070 INFO:teuthology.orchestra.run.smithi145.stdout: python3-urllib3 noarch 1.26.5-6.el9 baseos 215 k 2024-09-17T08:04:45.070 INFO:teuthology.orchestra.run.smithi145.stdout: python3-webob noarch 1.8.8-2.el9 epel 230 k 2024-09-17T08:04:45.070 INFO:teuthology.orchestra.run.smithi145.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-09-17T08:04:45.070 INFO:teuthology.orchestra.run.smithi145.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-09-17T08:04:45.070 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:04:45.070 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-17T08:04:45.070 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:04:45.070 INFO:teuthology.orchestra.run.smithi145.stdout:Install 33 Packages 2024-09-17T08:04:45.070 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:04:45.071 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 29 M 2024-09-17T08:04:45.071 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 104 M 2024-09-17T08:04:45.071 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-17T08:04:45.238 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:00:56 ago on Tue 17 Sep 2024 08:03:49 AM UTC. 2024-09-17T08:04:45.377 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-09-17T08:04:45.378 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:04:45.378 INFO:teuthology.orchestra.run.smithi044.stdout: Package Arch Version Repository Size 2024-09-17T08:04:45.378 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:04:45.378 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-09-17T08:04:45.378 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-mgr-dashboard noarch 2:18.2.4-855.g19e2a2be.el9 ceph-noarch 3.5 M 2024-09-17T08:04:45.378 INFO:teuthology.orchestra.run.smithi044.stdout:Installing dependencies: 2024-09-17T08:04:45.378 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-grafana-dashboards noarch 2:18.2.4-855.g19e2a2be.el9 ceph-noarch 24 k 2024-09-17T08:04:45.378 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-prometheus-alerts noarch 2:18.2.4-855.g19e2a2be.el9 ceph-noarch 16 k 2024-09-17T08:04:45.379 INFO:teuthology.orchestra.run.smithi044.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-09-17T08:04:45.379 INFO:teuthology.orchestra.run.smithi044.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-09-17T08:04:45.379 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:04:45.379 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-09-17T08:04:45.379 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:04:45.379 INFO:teuthology.orchestra.run.smithi044.stdout:Install 5 Packages 2024-09-17T08:04:45.379 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:04:45.380 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 3.8 M 2024-09-17T08:04:45.380 INFO:teuthology.orchestra.run.smithi044.stdout:Installed size: 87 M 2024-09-17T08:04:45.380 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-09-17T08:04:45.430 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 33/33 2024-09-17T08:04:45.430 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:04:45.430 INFO:teuthology.orchestra.run.smithi152.stdout:Installed: 2024-09-17T08:04:45.430 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:45.430 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-mds-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:45.430 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-mgr-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:45.431 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-mgr-modules-core-2:18.2.4-855.g19e2a2be.el9.noarch 2024-09-17T08:04:45.431 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-mon-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:45.431 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-osd-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:45.431 INFO:teuthology.orchestra.run.smithi152.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-09-17T08:04:45.431 INFO:teuthology.orchestra.run.smithi152.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-09-17T08:04:45.431 INFO:teuthology.orchestra.run.smithi152.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-09-17T08:04:45.431 INFO:teuthology.orchestra.run.smithi152.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-09-17T08:04:45.431 INFO:teuthology.orchestra.run.smithi152.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-09-17T08:04:45.431 INFO:teuthology.orchestra.run.smithi152.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-09-17T08:04:45.431 INFO:teuthology.orchestra.run.smithi152.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-09-17T08:04:45.431 INFO:teuthology.orchestra.run.smithi152.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-09-17T08:04:45.431 INFO:teuthology.orchestra.run.smithi152.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-09-17T08:04:45.431 INFO:teuthology.orchestra.run.smithi152.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-09-17T08:04:45.431 INFO:teuthology.orchestra.run.smithi152.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-09-17T08:04:45.432 INFO:teuthology.orchestra.run.smithi152.stdout: python3-mako-1.1.4-6.el9.noarch 2024-09-17T08:04:45.432 INFO:teuthology.orchestra.run.smithi152.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-09-17T08:04:45.432 INFO:teuthology.orchestra.run.smithi152.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-09-17T08:04:45.432 INFO:teuthology.orchestra.run.smithi152.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-09-17T08:04:45.432 INFO:teuthology.orchestra.run.smithi152.stdout: python3-ply-3.11-14.el9.noarch 2024-09-17T08:04:45.432 INFO:teuthology.orchestra.run.smithi152.stdout: python3-portend-3.1.0-2.el9.noarch 2024-09-17T08:04:45.432 INFO:teuthology.orchestra.run.smithi152.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-09-17T08:04:45.432 INFO:teuthology.orchestra.run.smithi152.stdout: python3-pycparser-2.20-6.el9.noarch 2024-09-17T08:04:45.432 INFO:teuthology.orchestra.run.smithi152.stdout: python3-pytz-2021.1-5.el9.noarch 2024-09-17T08:04:45.432 INFO:teuthology.orchestra.run.smithi152.stdout: python3-requests-2.25.1-8.el9.noarch 2024-09-17T08:04:45.432 INFO:teuthology.orchestra.run.smithi152.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-09-17T08:04:45.432 INFO:teuthology.orchestra.run.smithi152.stdout: python3-toml-0.10.2-6.el9.noarch 2024-09-17T08:04:45.432 INFO:teuthology.orchestra.run.smithi152.stdout: python3-urllib3-1.26.5-6.el9.noarch 2024-09-17T08:04:45.432 INFO:teuthology.orchestra.run.smithi152.stdout: python3-webob-1.8.8-2.el9.noarch 2024-09-17T08:04:45.433 INFO:teuthology.orchestra.run.smithi152.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-09-17T08:04:45.433 INFO:teuthology.orchestra.run.smithi152.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-09-17T08:04:45.433 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:04:45.433 INFO:teuthology.orchestra.run.smithi152.stdout:Complete! 2024-09-17T08:04:45.528 INFO:teuthology.orchestra.run.smithi145.stdout:(1/33): ceph-18.2.4-855.g19e2a2be.el9.x86_64.rp 51 kB/s | 6.5 kB 00:00 2024-09-17T08:04:45.598 INFO:teuthology.orchestra.run.smithi044.stdout:(1/5): ceph-grafana-dashboards-18.2.4-855.g19e2 164 kB/s | 24 kB 00:00 2024-09-17T08:04:45.623 INFO:teuthology.orchestra.run.smithi044.stdout:(2/5): ceph-prometheus-alerts-18.2.4-855.g19e2a 95 kB/s | 16 kB 00:00 2024-09-17T08:04:45.665 INFO:teuthology.orchestra.run.smithi044.stdout:(3/5): python3-repoze-lru-0.7-16.el9.noarch.rpm 459 kB/s | 31 kB 00:00 2024-09-17T08:04:45.691 INFO:teuthology.orchestra.run.smithi044.stdout:(4/5): python3-routes-2.5.1-5.el9.noarch.rpm 2.8 MB/s | 188 kB 00:00 2024-09-17T08:04:45.746 INFO:teuthology.orchestra.run.smithi145.stdout:(2/33): ceph-mds-18.2.4-855.g19e2a2be.el9.x86_6 6.1 MB/s | 2.1 MB 00:00 2024-09-17T08:04:45.788 INFO:teuthology.orchestra.run.smithi145.stdout:(3/33): ceph-mgr-18.2.4-855.g19e2a2be.el9.x86_6 3.8 MB/s | 1.5 MB 00:00 2024-09-17T08:04:45.800 DEBUG:teuthology.orchestra.run.smithi152:> sudo yum -y install ceph-base 2024-09-17T08:04:45.880 INFO:teuthology.orchestra.run.smithi145.stdout:(4/33): ceph-mon-18.2.4-855.g19e2a2be.el9.x86_6 13 MB/s | 4.7 MB 00:00 2024-09-17T08:04:45.905 INFO:teuthology.orchestra.run.smithi145.stdout:(5/33): ceph-mgr-modules-core-18.2.4-855.g19e2a 2.1 MB/s | 246 kB 00:00 2024-09-17T08:04:46.005 INFO:teuthology.orchestra.run.smithi145.stdout:(6/33): python3-cffi-1.14.5-5.el9.x86_64.rpm 2.0 MB/s | 253 kB 00:00 2024-09-17T08:04:46.047 INFO:teuthology.orchestra.run.smithi145.stdout:(7/33): python3-ply-3.11-14.el9.noarch.rpm 2.5 MB/s | 106 kB 00:00 2024-09-17T08:04:46.089 INFO:teuthology.orchestra.run.smithi145.stdout:(8/33): python3-cryptography-36.0.1-4.el9.x86_6 6.7 MB/s | 1.2 MB 00:00 2024-09-17T08:04:46.115 INFO:teuthology.orchestra.run.smithi145.stdout:(9/33): python3-pycparser-2.20-6.el9.noarch.rpm 2.0 MB/s | 135 kB 00:00 2024-09-17T08:04:46.140 INFO:teuthology.orchestra.run.smithi145.stdout:(10/33): python3-requests-2.25.1-8.el9.noarch.r 2.4 MB/s | 125 kB 00:00 2024-09-17T08:04:46.165 INFO:teuthology.orchestra.run.smithi145.stdout:(11/33): python3-urllib3-1.26.5-6.el9.noarch.rp 4.2 MB/s | 215 kB 00:00 2024-09-17T08:04:46.224 INFO:teuthology.orchestra.run.smithi044.stdout:(5/5): ceph-mgr-dashboard-18.2.4-855.g19e2a2be. 4.6 MB/s | 3.5 MB 00:00 2024-09-17T08:04:46.228 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:04:46.228 INFO:teuthology.orchestra.run.smithi044.stdout:Total 4.5 MB/s | 3.8 MB 00:00 2024-09-17T08:04:46.229 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-09-17T08:04:46.237 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-09-17T08:04:46.237 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-09-17T08:04:46.322 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-09-17T08:04:46.323 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-09-17T08:04:46.366 INFO:teuthology.orchestra.run.smithi145.stdout:(12/33): ceph-osd-18.2.4-855.g19e2a2be.el9.x86_ 27 MB/s | 17 MB 00:00 2024-09-17T08:04:46.382 INFO:teuthology.orchestra.run.smithi145.stdout:(13/33): python3-markupsafe-1.1.1-12.el9.x86_64 160 kB/s | 35 kB 00:00 2024-09-17T08:04:46.398 INFO:teuthology.orchestra.run.smithi152.stdout:Last metadata expiration check: 0:00:49 ago on Tue 17 Sep 2024 08:03:57 AM UTC. 2024-09-17T08:04:46.433 INFO:teuthology.orchestra.run.smithi145.stdout:(14/33): python3-mako-1.1.4-6.el9.noarch.rpm 588 kB/s | 172 kB 00:00 2024-09-17T08:04:46.450 INFO:teuthology.orchestra.run.smithi145.stdout:(15/33): python3-toml-0.10.2-6.el9.noarch.rpm 622 kB/s | 42 kB 00:00 2024-09-17T08:04:46.467 INFO:teuthology.orchestra.run.smithi145.stdout:(16/33): python3-pytz-2021.1-5.el9.noarch.rpm 507 kB/s | 51 kB 00:00 2024-09-17T08:04:46.487 INFO:teuthology.orchestra.run.smithi152.stdout:Package ceph-base-2:18.2.4-855.g19e2a2be.el9.x86_64 is already installed. 2024-09-17T08:04:46.530 INFO:teuthology.orchestra.run.smithi152.stdout:Dependencies resolved. 2024-09-17T08:04:46.531 INFO:teuthology.orchestra.run.smithi152.stdout:Nothing to do. 2024-09-17T08:04:46.531 INFO:teuthology.orchestra.run.smithi152.stdout:Complete! 2024-09-17T08:04:46.533 INFO:teuthology.orchestra.run.smithi145.stdout:(17/33): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 432 kB/s | 43 kB 00:00 2024-09-17T08:04:46.550 INFO:teuthology.orchestra.run.smithi145.stdout:(18/33): python3-jaraco-8.2.1-3.el9.noarch.rpm 725 kB/s | 11 kB 00:00 2024-09-17T08:04:46.576 INFO:teuthology.orchestra.run.smithi145.stdout:(19/33): python3-cheroot-8.6.0-4.el9.noarch.rpm 1.3 MB/s | 172 kB 00:00 2024-09-17T08:04:46.582 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-09-17T08:04:46.592 INFO:teuthology.orchestra.run.smithi145.stdout:(20/33): python3-jaraco-classes-3.2.1-5.el9.noa 423 kB/s | 18 kB 00:00 2024-09-17T08:04:46.600 DEBUG:teuthology.orchestra.run.smithi152:> sudo yum -y install cephadm 2024-09-17T08:04:46.618 INFO:teuthology.orchestra.run.smithi145.stdout:(21/33): python3-jaraco-collections-3.0.0-8.el9 927 kB/s | 23 kB 00:00 2024-09-17T08:04:46.643 INFO:teuthology.orchestra.run.smithi145.stdout:(22/33): python3-jaraco-functools-3.5.0-2.el9.n 387 kB/s | 19 kB 00:00 2024-09-17T08:04:46.665 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 1/5 2024-09-17T08:04:46.668 INFO:teuthology.orchestra.run.smithi145.stdout:(23/33): python3-jaraco-text-3.2.0-6.el9.noarch 391 kB/s | 20 kB 00:00 2024-09-17T08:04:46.694 INFO:teuthology.orchestra.run.smithi145.stdout:(24/33): python3-logutils-0.3.5-21.el9.noarch.r 921 kB/s | 46 kB 00:00 2024-09-17T08:04:46.695 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 2/5 2024-09-17T08:04:46.725 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-prometheus-alerts-2:18.2.4-855.g19e2a2be.el9.no 3/5 2024-09-17T08:04:46.727 INFO:teuthology.orchestra.run.smithi145.stdout:(25/33): python3-cherrypy-18.6.1-2.el9.noarch.r 1.4 MB/s | 358 kB 00:00 2024-09-17T08:04:46.753 INFO:teuthology.orchestra.run.smithi145.stdout:(26/33): python3-more-itertools-8.12.0-2.el9.no 938 kB/s | 79 kB 00:00 2024-09-17T08:04:46.778 INFO:teuthology.orchestra.run.smithi145.stdout:(27/33): python3-portend-3.1.0-2.el9.noarch.rpm 328 kB/s | 16 kB 00:00 2024-09-17T08:04:46.803 INFO:teuthology.orchestra.run.smithi145.stdout:(28/33): python3-tempora-5.0.0-2.el9.noarch.rpm 1.4 MB/s | 36 kB 00:00 2024-09-17T08:04:46.828 INFO:teuthology.orchestra.run.smithi145.stdout:(29/33): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.2 MB/s | 90 kB 00:00 2024-09-17T08:04:46.854 INFO:teuthology.orchestra.run.smithi145.stdout:(30/33): python3-pecan-1.4.2-3.el9.noarch.rpm 1.7 MB/s | 272 kB 00:00 2024-09-17T08:04:46.879 INFO:teuthology.orchestra.run.smithi145.stdout:(31/33): python3-zc-lockfile-2.0-10.el9.noarch. 803 kB/s | 20 kB 00:00 2024-09-17T08:04:46.904 INFO:teuthology.orchestra.run.smithi145.stdout:(32/33): python3-webob-1.8.8-2.el9.noarch.rpm 2.2 MB/s | 230 kB 00:00 2024-09-17T08:04:46.929 INFO:teuthology.orchestra.run.smithi145.stdout:(33/33): python3-werkzeug-2.0.3-3.el9.1.noarch. 4.1 MB/s | 427 kB 00:00 2024-09-17T08:04:46.934 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:04:46.934 INFO:teuthology.orchestra.run.smithi145.stdout:Total 16 MB/s | 29 MB 00:01 2024-09-17T08:04:47.054 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-17T08:04:47.091 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-17T08:04:47.092 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-17T08:04:47.177 INFO:teuthology.orchestra.run.smithi152.stdout:Last metadata expiration check: 0:00:50 ago on Tue 17 Sep 2024 08:03:57 AM UTC. 2024-09-17T08:04:47.307 INFO:teuthology.orchestra.run.smithi152.stdout:Dependencies resolved. 2024-09-17T08:04:47.308 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:04:47.308 INFO:teuthology.orchestra.run.smithi152.stdout: Package Arch Version Repository Size 2024-09-17T08:04:47.308 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:04:47.308 INFO:teuthology.orchestra.run.smithi152.stdout:Installing: 2024-09-17T08:04:47.309 INFO:teuthology.orchestra.run.smithi152.stdout: cephadm noarch 2:18.2.4-855.g19e2a2be.el9 ceph-noarch 226 k 2024-09-17T08:04:47.309 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:04:47.309 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction Summary 2024-09-17T08:04:47.309 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:04:47.309 INFO:teuthology.orchestra.run.smithi152.stdout:Install 1 Package 2024-09-17T08:04:47.309 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:04:47.309 INFO:teuthology.orchestra.run.smithi152.stdout:Total download size: 226 k 2024-09-17T08:04:47.309 INFO:teuthology.orchestra.run.smithi152.stdout:Installed size: 217 k 2024-09-17T08:04:47.309 INFO:teuthology.orchestra.run.smithi152.stdout:Downloading Packages: 2024-09-17T08:04:47.496 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-17T08:04:47.496 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-17T08:04:47.526 INFO:teuthology.orchestra.run.smithi152.stdout:cephadm-18.2.4-855.g19e2a2be.el9.noarch.rpm 1.0 MB/s | 226 kB 00:00 2024-09-17T08:04:47.527 INFO:teuthology.orchestra.run.smithi152.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:04:47.527 INFO:teuthology.orchestra.run.smithi152.stdout:Total 1.0 MB/s | 226 kB 00:00 2024-09-17T08:04:47.527 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction check 2024-09-17T08:04:47.532 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction check succeeded. 2024-09-17T08:04:47.532 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction test 2024-09-17T08:04:47.535 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction test succeeded. 2024-09-17T08:04:47.536 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction 2024-09-17T08:04:47.607 INFO:teuthology.orchestra.run.smithi152.stdout: Preparing : 1/1 2024-09-17T08:04:47.839 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-grafana-dashboards-2:18.2.4-855.g19e2a2be.el9.n 4/5 2024-09-17T08:04:47.878 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-mgr-dashboard-2:18.2.4-855.g19e2a2be.el9.noarch 5/5 2024-09-17T08:04:47.980 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: cephadm-2:18.2.4-855.g19e2a2be.el9.noarch 1/1 2024-09-17T08:04:48.071 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : cephadm-2:18.2.4-855.g19e2a2be.el9.noarch 1/1 2024-09-17T08:04:48.425 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: cephadm-2:18.2.4-855.g19e2a2be.el9.noarch 1/1 2024-09-17T08:04:48.668 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : cephadm-2:18.2.4-855.g19e2a2be.el9.noarch 1/1 2024-09-17T08:04:48.668 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:04:48.668 INFO:teuthology.orchestra.run.smithi152.stdout:Installed: 2024-09-17T08:04:48.668 INFO:teuthology.orchestra.run.smithi152.stdout: cephadm-2:18.2.4-855.g19e2a2be.el9.noarch 2024-09-17T08:04:48.669 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:04:48.669 INFO:teuthology.orchestra.run.smithi152.stdout:Complete! 2024-09-17T08:04:48.705 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-17T08:04:48.757 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/33 2024-09-17T08:04:48.789 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/33 2024-09-17T08:04:48.822 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 3/33 2024-09-17T08:04:48.898 DEBUG:teuthology.orchestra.run.smithi152:> sudo yum -y install ceph-immutable-object-cache 2024-09-17T08:04:48.914 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 4/33 2024-09-17T08:04:48.993 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 5/33 2024-09-17T08:04:49.033 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-webob-1.8.8-2.el9.noarch 6/33 2024-09-17T08:04:49.068 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 7/33 2024-09-17T08:04:49.084 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-mgr-dashboard-2:18.2.4-855.g19e2a2be.el9.noarch 5/5 2024-09-17T08:04:49.084 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-grafana-dashboards-2:18.2.4-855.g19e2a2be.el9.n 1/5 2024-09-17T08:04:49.084 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-mgr-dashboard-2:18.2.4-855.g19e2a2be.el9.noarch 2/5 2024-09-17T08:04:49.084 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-prometheus-alerts-2:18.2.4-855.g19e2a2be.el9.no 3/5 2024-09-17T08:04:49.084 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 4/5 2024-09-17T08:04:49.098 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 8/33 2024-09-17T08:04:49.132 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 9/33 2024-09-17T08:04:49.165 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 10/33 2024-09-17T08:04:49.206 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 11/33 2024-09-17T08:04:49.258 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 12/33 2024-09-17T08:04:49.292 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 13/33 2024-09-17T08:04:49.322 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 14/33 2024-09-17T08:04:49.365 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 5/5 2024-09-17T08:04:49.365 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:04:49.365 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-09-17T08:04:49.365 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-grafana-dashboards-2:18.2.4-855.g19e2a2be.el9.noarch 2024-09-17T08:04:49.365 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-mgr-dashboard-2:18.2.4-855.g19e2a2be.el9.noarch 2024-09-17T08:04:49.365 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-prometheus-alerts-2:18.2.4-855.g19e2a2be.el9.noarch 2024-09-17T08:04:49.366 INFO:teuthology.orchestra.run.smithi044.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-09-17T08:04:49.366 INFO:teuthology.orchestra.run.smithi044.stdout: python3-routes-2.5.1-5.el9.noarch 2024-09-17T08:04:49.366 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:04:49.366 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-09-17T08:04:49.395 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 15/33 2024-09-17T08:04:49.494 INFO:teuthology.orchestra.run.smithi152.stdout:Last metadata expiration check: 0:00:52 ago on Tue 17 Sep 2024 08:03:57 AM UTC. 2024-09-17T08:04:49.543 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 16/33 2024-09-17T08:04:49.570 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install ceph-mgr-diskprediction-local 2024-09-17T08:04:49.621 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 17/33 2024-09-17T08:04:49.628 INFO:teuthology.orchestra.run.smithi152.stdout:Dependencies resolved. 2024-09-17T08:04:49.628 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:04:49.628 INFO:teuthology.orchestra.run.smithi152.stdout: Package Arch Version Repo Size 2024-09-17T08:04:49.629 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:04:49.629 INFO:teuthology.orchestra.run.smithi152.stdout:Installing: 2024-09-17T08:04:49.629 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-immutable-object-cache x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 143 k 2024-09-17T08:04:49.629 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:04:49.629 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction Summary 2024-09-17T08:04:49.629 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:04:49.629 INFO:teuthology.orchestra.run.smithi152.stdout:Install 1 Package 2024-09-17T08:04:49.629 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:04:49.629 INFO:teuthology.orchestra.run.smithi152.stdout:Total download size: 143 k 2024-09-17T08:04:49.629 INFO:teuthology.orchestra.run.smithi152.stdout:Installed size: 395 k 2024-09-17T08:04:49.630 INFO:teuthology.orchestra.run.smithi152.stdout:Downloading Packages: 2024-09-17T08:04:49.674 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-urllib3-1.26.5-6.el9.noarch 18/33 2024-09-17T08:04:49.713 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 19/33 2024-09-17T08:04:49.762 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-ply-3.11-14.el9.noarch 20/33 2024-09-17T08:04:49.817 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 21/33 2024-09-17T08:04:49.848 INFO:teuthology.orchestra.run.smithi152.stdout:ceph-immutable-object-cache-18.2.4-855.g19e2a2b 653 kB/s | 143 kB 00:00 2024-09-17T08:04:49.849 INFO:teuthology.orchestra.run.smithi152.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:04:49.849 INFO:teuthology.orchestra.run.smithi152.stdout:Total 648 kB/s | 143 kB 00:00 2024-09-17T08:04:49.849 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction check 2024-09-17T08:04:49.857 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction check succeeded. 2024-09-17T08:04:49.857 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction test 2024-09-17T08:04:49.914 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction test succeeded. 2024-09-17T08:04:49.914 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction 2024-09-17T08:04:50.005 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 22/33 2024-09-17T08:04:50.058 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 23/33 2024-09-17T08:04:50.071 INFO:teuthology.orchestra.run.smithi152.stdout: Preparing : 1/1 2024-09-17T08:04:50.128 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 24/33 2024-09-17T08:04:50.158 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : ceph-immutable-object-cache-2:18.2.4-855.g19e2a2be.e 1/1 2024-09-17T08:04:50.173 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:01:01 ago on Tue 17 Sep 2024 08:03:49 AM UTC. 2024-09-17T08:04:50.183 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: ceph-immutable-object-cache-2:18.2.4-855.g19e2a2be.e 1/1 2024-09-17T08:04:50.183 INFO:teuthology.orchestra.run.smithi152.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T08:04:50.183 INFO:teuthology.orchestra.run.smithi152.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-09-17T08:04:50.183 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:04:50.225 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 25/33 2024-09-17T08:04:50.274 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 26/33 2024-09-17T08:04:50.311 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-09-17T08:04:50.312 INFO:teuthology.orchestra.run.smithi044.stdout:====================================================================================== 2024-09-17T08:04:50.313 INFO:teuthology.orchestra.run.smithi044.stdout: Package Arch Version Repository Size 2024-09-17T08:04:50.313 INFO:teuthology.orchestra.run.smithi044.stdout:====================================================================================== 2024-09-17T08:04:50.313 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-09-17T08:04:50.313 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-mgr-diskprediction-local noarch 2:18.2.4-855.g19e2a2be.el9 ceph-noarch 7.4 M 2024-09-17T08:04:50.313 INFO:teuthology.orchestra.run.smithi044.stdout:Installing dependencies: 2024-09-17T08:04:50.313 INFO:teuthology.orchestra.run.smithi044.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-09-17T08:04:50.313 INFO:teuthology.orchestra.run.smithi044.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-09-17T08:04:50.313 INFO:teuthology.orchestra.run.smithi044.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-09-17T08:04:50.313 INFO:teuthology.orchestra.run.smithi044.stdout: libgfortran x86_64 11.5.0-2.el9 baseos 801 k 2024-09-17T08:04:50.313 INFO:teuthology.orchestra.run.smithi044.stdout: libquadmath x86_64 11.5.0-2.el9 baseos 191 k 2024-09-17T08:04:50.313 INFO:teuthology.orchestra.run.smithi044.stdout: openblas x86_64 0.3.26-2.el9 appstream 38 k 2024-09-17T08:04:50.313 INFO:teuthology.orchestra.run.smithi044.stdout: openblas-openmp x86_64 0.3.26-2.el9 appstream 4.9 M 2024-09-17T08:04:50.314 INFO:teuthology.orchestra.run.smithi044.stdout: python3-devel x86_64 3.9.19-8.el9 appstream 245 k 2024-09-17T08:04:50.314 INFO:teuthology.orchestra.run.smithi044.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-09-17T08:04:50.314 INFO:teuthology.orchestra.run.smithi044.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-09-17T08:04:50.314 INFO:teuthology.orchestra.run.smithi044.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-09-17T08:04:50.314 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:04:50.314 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-09-17T08:04:50.314 INFO:teuthology.orchestra.run.smithi044.stdout:====================================================================================== 2024-09-17T08:04:50.314 INFO:teuthology.orchestra.run.smithi044.stdout:Install 12 Packages 2024-09-17T08:04:50.314 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:04:50.315 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 38 M 2024-09-17T08:04:50.315 INFO:teuthology.orchestra.run.smithi044.stdout:Installed size: 212 M 2024-09-17T08:04:50.315 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-09-17T08:04:50.390 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 27/33 2024-09-17T08:04:50.548 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-mgr-modules-core-2:18.2.4-855.g19e2a2be.el9.n 28/33 2024-09-17T08:04:50.576 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-mgr-2:18.2.4-855.g19e2a2be.el9.x86_64 29/33 2024-09-17T08:04:50.601 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-mgr-2:18.2.4-855.g19e2a2be.el9.x86_64 29/33 2024-09-17T08:04:50.601 INFO:teuthology.orchestra.run.smithi145.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T08:04:50.601 INFO:teuthology.orchestra.run.smithi145.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-09-17T08:04:50.601 INFO:teuthology.orchestra.run.smithi145.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-17T08:04:50.601 INFO:teuthology.orchestra.run.smithi145.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-17T08:04:50.601 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:04:50.690 INFO:teuthology.orchestra.run.smithi044.stdout:(1/12): libquadmath-11.5.0-2.el9.x86_64.rpm 923 kB/s | 191 kB 00:00 2024-09-17T08:04:50.749 INFO:teuthology.orchestra.run.smithi044.stdout:(2/12): flexiblas-3.0.4-8.el9.x86_64.rpm 562 kB/s | 33 kB 00:00 2024-09-17T08:04:50.782 INFO:teuthology.orchestra.run.smithi044.stdout:(3/12): libgfortran-11.5.0-2.el9.x86_64.rpm 2.6 MB/s | 801 kB 00:00 2024-09-17T08:04:50.849 INFO:teuthology.orchestra.run.smithi044.stdout:(4/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 273 kB/s | 18 kB 00:00 2024-09-17T08:04:50.958 INFO:teuthology.orchestra.run.smithi044.stdout:(5/12): ceph-mgr-diskprediction-local-18.2.4-85 16 MB/s | 7.4 MB 00:00 2024-09-17T08:04:50.983 INFO:teuthology.orchestra.run.smithi044.stdout:(6/12): openblas-0.3.26-2.el9.x86_64.rpm 288 kB/s | 38 kB 00:00 2024-09-17T08:04:51.084 INFO:teuthology.orchestra.run.smithi044.stdout:(7/12): python3-devel-3.9.19-8.el9.x86_64.rpm 2.4 MB/s | 245 kB 00:00 2024-09-17T08:04:51.088 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : ceph-immutable-object-cache-2:18.2.4-855.g19e2a2be.e 1/1 2024-09-17T08:04:51.088 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:04:51.088 INFO:teuthology.orchestra.run.smithi152.stdout:Installed: 2024-09-17T08:04:51.088 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-immutable-object-cache-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:51.088 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:04:51.088 INFO:teuthology.orchestra.run.smithi152.stdout:Complete! 2024-09-17T08:04:51.325 DEBUG:teuthology.orchestra.run.smithi152:> sudo yum -y install ceph-mgr 2024-09-17T08:04:51.492 INFO:teuthology.orchestra.run.smithi044.stdout:(8/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 4.0 MB/s | 3.0 MB 00:00 2024-09-17T08:04:51.576 INFO:teuthology.orchestra.run.smithi044.stdout:(9/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 2.9 MB/s | 250 kB 00:00 2024-09-17T08:04:51.927 INFO:teuthology.orchestra.run.smithi152.stdout:Last metadata expiration check: 0:00:54 ago on Tue 17 Sep 2024 08:03:57 AM UTC. 2024-09-17T08:04:52.022 INFO:teuthology.orchestra.run.smithi152.stdout:Package ceph-mgr-2:18.2.4-855.g19e2a2be.el9.x86_64 is already installed. 2024-09-17T08:04:52.067 INFO:teuthology.orchestra.run.smithi152.stdout:Dependencies resolved. 2024-09-17T08:04:52.068 INFO:teuthology.orchestra.run.smithi152.stdout:Nothing to do. 2024-09-17T08:04:52.068 INFO:teuthology.orchestra.run.smithi152.stdout:Complete! 2024-09-17T08:04:52.086 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-osd-2:18.2.4-855.g19e2a2be.el9.x86_64 30/33 2024-09-17T08:04:52.115 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-osd-2:18.2.4-855.g19e2a2be.el9.x86_64 30/33 2024-09-17T08:04:52.115 INFO:teuthology.orchestra.run.smithi145.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T08:04:52.115 INFO:teuthology.orchestra.run.smithi145.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-09-17T08:04:52.116 INFO:teuthology.orchestra.run.smithi145.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-17T08:04:52.116 INFO:teuthology.orchestra.run.smithi145.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-17T08:04:52.116 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:04:52.143 DEBUG:teuthology.orchestra.run.smithi152:> sudo yum -y install ceph-mgr-dashboard 2024-09-17T08:04:52.201 INFO:teuthology.orchestra.run.smithi044.stdout:(10/12): openblas-openmp-0.3.26-2.el9.x86_64.rp 4.0 MB/s | 4.9 MB 00:01 2024-09-17T08:04:52.334 INFO:teuthology.orchestra.run.smithi044.stdout:(11/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 4.1 MB/s | 5.1 MB 00:01 2024-09-17T08:04:52.562 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-mon-2:18.2.4-855.g19e2a2be.el9.x86_64 31/33 2024-09-17T08:04:52.586 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-mon-2:18.2.4-855.g19e2a2be.el9.x86_64 31/33 2024-09-17T08:04:52.586 INFO:teuthology.orchestra.run.smithi145.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T08:04:52.586 INFO:teuthology.orchestra.run.smithi145.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-09-17T08:04:52.586 INFO:teuthology.orchestra.run.smithi145.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-17T08:04:52.586 INFO:teuthology.orchestra.run.smithi145.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-17T08:04:52.586 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:04:52.651 INFO:teuthology.orchestra.run.smithi044.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 15 MB/s | 16 MB 00:01 2024-09-17T08:04:52.652 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:04:52.652 INFO:teuthology.orchestra.run.smithi044.stdout:Total 16 MB/s | 38 MB 00:02 2024-09-17T08:04:52.720 INFO:teuthology.orchestra.run.smithi152.stdout:Last metadata expiration check: 0:00:55 ago on Tue 17 Sep 2024 08:03:57 AM UTC. 2024-09-17T08:04:52.788 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-mds-2:18.2.4-855.g19e2a2be.el9.x86_64 32/33 2024-09-17T08:04:52.812 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-mds-2:18.2.4-855.g19e2a2be.el9.x86_64 32/33 2024-09-17T08:04:52.812 INFO:teuthology.orchestra.run.smithi145.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T08:04:52.812 INFO:teuthology.orchestra.run.smithi145.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-09-17T08:04:52.812 INFO:teuthology.orchestra.run.smithi145.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-17T08:04:52.812 INFO:teuthology.orchestra.run.smithi145.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-17T08:04:52.812 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:04:52.851 INFO:teuthology.orchestra.run.smithi152.stdout:Dependencies resolved. 2024-09-17T08:04:52.852 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:04:52.852 INFO:teuthology.orchestra.run.smithi152.stdout: Package Arch Version Repository Size 2024-09-17T08:04:52.852 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:04:52.852 INFO:teuthology.orchestra.run.smithi152.stdout:Installing: 2024-09-17T08:04:52.852 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-mgr-dashboard noarch 2:18.2.4-855.g19e2a2be.el9 ceph-noarch 3.5 M 2024-09-17T08:04:52.852 INFO:teuthology.orchestra.run.smithi152.stdout:Installing dependencies: 2024-09-17T08:04:52.852 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-grafana-dashboards noarch 2:18.2.4-855.g19e2a2be.el9 ceph-noarch 24 k 2024-09-17T08:04:52.852 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-prometheus-alerts noarch 2:18.2.4-855.g19e2a2be.el9 ceph-noarch 16 k 2024-09-17T08:04:52.852 INFO:teuthology.orchestra.run.smithi152.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-09-17T08:04:52.852 INFO:teuthology.orchestra.run.smithi152.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-09-17T08:04:52.852 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:04:52.852 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction Summary 2024-09-17T08:04:52.852 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:04:52.853 INFO:teuthology.orchestra.run.smithi152.stdout:Install 5 Packages 2024-09-17T08:04:52.853 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:04:52.853 INFO:teuthology.orchestra.run.smithi152.stdout:Total download size: 3.8 M 2024-09-17T08:04:52.853 INFO:teuthology.orchestra.run.smithi152.stdout:Installed size: 87 M 2024-09-17T08:04:52.853 INFO:teuthology.orchestra.run.smithi152.stdout:Downloading Packages: 2024-09-17T08:04:52.875 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-2:18.2.4-855.g19e2a2be.el9.x86_64 33/33 2024-09-17T08:04:53.020 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-09-17T08:04:53.047 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-09-17T08:04:53.047 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-09-17T08:04:53.060 INFO:teuthology.orchestra.run.smithi152.stdout:(1/5): ceph-grafana-dashboards-18.2.4-855.g19e2 166 kB/s | 24 kB 00:00 2024-09-17T08:04:53.085 INFO:teuthology.orchestra.run.smithi152.stdout:(2/5): ceph-prometheus-alerts-18.2.4-855.g19e2a 96 kB/s | 16 kB 00:00 2024-09-17T08:04:53.127 INFO:teuthology.orchestra.run.smithi152.stdout:(3/5): python3-repoze-lru-0.7-16.el9.noarch.rpm 460 kB/s | 31 kB 00:00 2024-09-17T08:04:53.152 INFO:teuthology.orchestra.run.smithi152.stdout:(4/5): python3-routes-2.5.1-5.el9.noarch.rpm 2.8 MB/s | 188 kB 00:00 2024-09-17T08:04:53.319 INFO:teuthology.orchestra.run.smithi152.stdout:(5/5): ceph-mgr-dashboard-18.2.4-855.g19e2a2be. 8.7 MB/s | 3.5 MB 00:00 2024-09-17T08:04:53.323 INFO:teuthology.orchestra.run.smithi152.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:04:53.323 INFO:teuthology.orchestra.run.smithi152.stdout:Total 8.1 MB/s | 3.8 MB 00:00 2024-09-17T08:04:53.323 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction check 2024-09-17T08:04:53.330 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction check succeeded. 2024-09-17T08:04:53.330 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction test 2024-09-17T08:04:53.417 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction test succeeded. 2024-09-17T08:04:53.417 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction 2024-09-17T08:04:53.579 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-09-17T08:04:53.580 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-09-17T08:04:53.674 INFO:teuthology.orchestra.run.smithi152.stdout: Preparing : 1/1 2024-09-17T08:04:53.775 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 1/5 2024-09-17T08:04:53.824 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 2/5 2024-09-17T08:04:53.852 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : ceph-prometheus-alerts-2:18.2.4-855.g19e2a2be.el9.no 3/5 2024-09-17T08:04:54.373 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-09-17T08:04:54.455 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-09-17T08:04:54.503 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : libquadmath-11.5.0-2.el9.x86_64 2/12 2024-09-17T08:04:54.604 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : libgfortran-11.5.0-2.el9.x86_64 3/12 2024-09-17T08:04:54.616 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-2:18.2.4-855.g19e2a2be.el9.x86_64 33/33 2024-09-17T08:04:54.616 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-2:18.2.4-855.g19e2a2be.el9.x86_64 1/33 2024-09-17T08:04:54.616 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-mds-2:18.2.4-855.g19e2a2be.el9.x86_64 2/33 2024-09-17T08:04:54.616 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-mgr-2:18.2.4-855.g19e2a2be.el9.x86_64 3/33 2024-09-17T08:04:54.616 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-mon-2:18.2.4-855.g19e2a2be.el9.x86_64 4/33 2024-09-17T08:04:54.616 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-osd-2:18.2.4-855.g19e2a2be.el9.x86_64 5/33 2024-09-17T08:04:54.617 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-mgr-modules-core-2:18.2.4-855.g19e2a2be.el9.n 6/33 2024-09-17T08:04:54.617 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/33 2024-09-17T08:04:54.617 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/33 2024-09-17T08:04:54.617 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/33 2024-09-17T08:04:54.617 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/33 2024-09-17T08:04:54.617 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/33 2024-09-17T08:04:54.617 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-urllib3-1.26.5-6.el9.noarch 12/33 2024-09-17T08:04:54.617 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 13/33 2024-09-17T08:04:54.617 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 14/33 2024-09-17T08:04:54.617 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 15/33 2024-09-17T08:04:54.617 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 16/33 2024-09-17T08:04:54.617 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 17/33 2024-09-17T08:04:54.617 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 18/33 2024-09-17T08:04:54.617 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 19/33 2024-09-17T08:04:54.618 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 20/33 2024-09-17T08:04:54.618 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 21/33 2024-09-17T08:04:54.618 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 22/33 2024-09-17T08:04:54.618 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 23/33 2024-09-17T08:04:54.618 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 24/33 2024-09-17T08:04:54.618 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 25/33 2024-09-17T08:04:54.618 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 26/33 2024-09-17T08:04:54.618 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 27/33 2024-09-17T08:04:54.618 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 28/33 2024-09-17T08:04:54.618 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 29/33 2024-09-17T08:04:54.618 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 30/33 2024-09-17T08:04:54.618 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-webob-1.8.8-2.el9.noarch 31/33 2024-09-17T08:04:54.618 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 32/33 2024-09-17T08:04:54.652 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-devel-3.9.19-8.el9.x86_64 4/12 2024-09-17T08:04:54.842 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : openblas-0.3.26-2.el9.x86_64 5/12 2024-09-17T08:04:54.874 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : openblas-openmp-0.3.26-2.el9.x86_64 6/12 2024-09-17T08:04:54.917 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : ceph-grafana-dashboards-2:18.2.4-855.g19e2a2be.el9.n 4/5 2024-09-17T08:04:54.954 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-09-17T08:04:54.956 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : ceph-mgr-dashboard-2:18.2.4-855.g19e2a2be.el9.noarch 5/5 2024-09-17T08:04:55.457 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 33/33 2024-09-17T08:04:55.457 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:04:55.457 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-17T08:04:55.458 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:55.458 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-mds-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:55.458 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-mgr-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:55.458 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-mgr-modules-core-2:18.2.4-855.g19e2a2be.el9.noarch 2024-09-17T08:04:55.458 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-mon-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:55.458 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-osd-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:04:55.458 INFO:teuthology.orchestra.run.smithi145.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-09-17T08:04:55.458 INFO:teuthology.orchestra.run.smithi145.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-09-17T08:04:55.458 INFO:teuthology.orchestra.run.smithi145.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-09-17T08:04:55.458 INFO:teuthology.orchestra.run.smithi145.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-09-17T08:04:55.458 INFO:teuthology.orchestra.run.smithi145.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-09-17T08:04:55.458 INFO:teuthology.orchestra.run.smithi145.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-09-17T08:04:55.459 INFO:teuthology.orchestra.run.smithi145.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-09-17T08:04:55.459 INFO:teuthology.orchestra.run.smithi145.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-09-17T08:04:55.459 INFO:teuthology.orchestra.run.smithi145.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-09-17T08:04:55.459 INFO:teuthology.orchestra.run.smithi145.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-09-17T08:04:55.459 INFO:teuthology.orchestra.run.smithi145.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-09-17T08:04:55.459 INFO:teuthology.orchestra.run.smithi145.stdout: python3-mako-1.1.4-6.el9.noarch 2024-09-17T08:04:55.459 INFO:teuthology.orchestra.run.smithi145.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-09-17T08:04:55.459 INFO:teuthology.orchestra.run.smithi145.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-09-17T08:04:55.459 INFO:teuthology.orchestra.run.smithi145.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-09-17T08:04:55.459 INFO:teuthology.orchestra.run.smithi145.stdout: python3-ply-3.11-14.el9.noarch 2024-09-17T08:04:55.459 INFO:teuthology.orchestra.run.smithi145.stdout: python3-portend-3.1.0-2.el9.noarch 2024-09-17T08:04:55.459 INFO:teuthology.orchestra.run.smithi145.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-09-17T08:04:55.459 INFO:teuthology.orchestra.run.smithi145.stdout: python3-pycparser-2.20-6.el9.noarch 2024-09-17T08:04:55.459 INFO:teuthology.orchestra.run.smithi145.stdout: python3-pytz-2021.1-5.el9.noarch 2024-09-17T08:04:55.460 INFO:teuthology.orchestra.run.smithi145.stdout: python3-requests-2.25.1-8.el9.noarch 2024-09-17T08:04:55.460 INFO:teuthology.orchestra.run.smithi145.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-09-17T08:04:55.460 INFO:teuthology.orchestra.run.smithi145.stdout: python3-toml-0.10.2-6.el9.noarch 2024-09-17T08:04:55.460 INFO:teuthology.orchestra.run.smithi145.stdout: python3-urllib3-1.26.5-6.el9.noarch 2024-09-17T08:04:55.460 INFO:teuthology.orchestra.run.smithi145.stdout: python3-webob-1.8.8-2.el9.noarch 2024-09-17T08:04:55.460 INFO:teuthology.orchestra.run.smithi145.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-09-17T08:04:55.460 INFO:teuthology.orchestra.run.smithi145.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-09-17T08:04:55.460 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:04:55.460 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-17T08:04:55.644 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-09-17T08:04:55.759 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-09-17T08:04:55.816 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install ceph-base 2024-09-17T08:04:56.084 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: ceph-mgr-dashboard-2:18.2.4-855.g19e2a2be.el9.noarch 5/5 2024-09-17T08:04:56.084 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : ceph-grafana-dashboards-2:18.2.4-855.g19e2a2be.el9.n 1/5 2024-09-17T08:04:56.084 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : ceph-mgr-dashboard-2:18.2.4-855.g19e2a2be.el9.noarch 2/5 2024-09-17T08:04:56.084 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : ceph-prometheus-alerts-2:18.2.4-855.g19e2a2be.el9.no 3/5 2024-09-17T08:04:56.084 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 4/5 2024-09-17T08:04:56.350 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 5/5 2024-09-17T08:04:56.350 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:04:56.350 INFO:teuthology.orchestra.run.smithi152.stdout:Installed: 2024-09-17T08:04:56.350 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-grafana-dashboards-2:18.2.4-855.g19e2a2be.el9.noarch 2024-09-17T08:04:56.350 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-mgr-dashboard-2:18.2.4-855.g19e2a2be.el9.noarch 2024-09-17T08:04:56.350 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-prometheus-alerts-2:18.2.4-855.g19e2a2be.el9.noarch 2024-09-17T08:04:56.351 INFO:teuthology.orchestra.run.smithi152.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-09-17T08:04:56.351 INFO:teuthology.orchestra.run.smithi152.stdout: python3-routes-2.5.1-5.el9.noarch 2024-09-17T08:04:56.351 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:04:56.351 INFO:teuthology.orchestra.run.smithi152.stdout:Complete! 2024-09-17T08:04:56.399 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:00:47 ago on Tue 17 Sep 2024 08:04:09 AM UTC. 2024-09-17T08:04:56.489 INFO:teuthology.orchestra.run.smithi145.stdout:Package ceph-base-2:18.2.4-855.g19e2a2be.el9.x86_64 is already installed. 2024-09-17T08:04:56.530 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-17T08:04:56.531 INFO:teuthology.orchestra.run.smithi145.stdout:Nothing to do. 2024-09-17T08:04:56.531 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-17T08:04:56.569 DEBUG:teuthology.orchestra.run.smithi152:> sudo yum -y install ceph-mgr-diskprediction-local 2024-09-17T08:04:56.599 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install cephadm 2024-09-17T08:04:57.105 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-09-17T08:04:57.144 INFO:teuthology.orchestra.run.smithi152.stdout:Last metadata expiration check: 0:01:00 ago on Tue 17 Sep 2024 08:03:57 AM UTC. 2024-09-17T08:04:57.181 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:00:48 ago on Tue 17 Sep 2024 08:04:09 AM UTC. 2024-09-17T08:04:57.275 INFO:teuthology.orchestra.run.smithi152.stdout:Dependencies resolved. 2024-09-17T08:04:57.276 INFO:teuthology.orchestra.run.smithi152.stdout:====================================================================================== 2024-09-17T08:04:57.276 INFO:teuthology.orchestra.run.smithi152.stdout: Package Arch Version Repository Size 2024-09-17T08:04:57.276 INFO:teuthology.orchestra.run.smithi152.stdout:====================================================================================== 2024-09-17T08:04:57.276 INFO:teuthology.orchestra.run.smithi152.stdout:Installing: 2024-09-17T08:04:57.276 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-mgr-diskprediction-local noarch 2:18.2.4-855.g19e2a2be.el9 ceph-noarch 7.4 M 2024-09-17T08:04:57.276 INFO:teuthology.orchestra.run.smithi152.stdout:Installing dependencies: 2024-09-17T08:04:57.276 INFO:teuthology.orchestra.run.smithi152.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-09-17T08:04:57.276 INFO:teuthology.orchestra.run.smithi152.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-09-17T08:04:57.277 INFO:teuthology.orchestra.run.smithi152.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-09-17T08:04:57.277 INFO:teuthology.orchestra.run.smithi152.stdout: libgfortran x86_64 11.5.0-2.el9 baseos 801 k 2024-09-17T08:04:57.277 INFO:teuthology.orchestra.run.smithi152.stdout: libquadmath x86_64 11.5.0-2.el9 baseos 191 k 2024-09-17T08:04:57.277 INFO:teuthology.orchestra.run.smithi152.stdout: openblas x86_64 0.3.26-2.el9 appstream 38 k 2024-09-17T08:04:57.277 INFO:teuthology.orchestra.run.smithi152.stdout: openblas-openmp x86_64 0.3.26-2.el9 appstream 4.9 M 2024-09-17T08:04:57.277 INFO:teuthology.orchestra.run.smithi152.stdout: python3-devel x86_64 3.9.19-8.el9 appstream 245 k 2024-09-17T08:04:57.277 INFO:teuthology.orchestra.run.smithi152.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-09-17T08:04:57.277 INFO:teuthology.orchestra.run.smithi152.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-09-17T08:04:57.277 INFO:teuthology.orchestra.run.smithi152.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-09-17T08:04:57.277 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:04:57.277 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction Summary 2024-09-17T08:04:57.277 INFO:teuthology.orchestra.run.smithi152.stdout:====================================================================================== 2024-09-17T08:04:57.278 INFO:teuthology.orchestra.run.smithi152.stdout:Install 12 Packages 2024-09-17T08:04:57.278 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:04:57.278 INFO:teuthology.orchestra.run.smithi152.stdout:Total download size: 38 M 2024-09-17T08:04:57.278 INFO:teuthology.orchestra.run.smithi152.stdout:Installed size: 212 M 2024-09-17T08:04:57.278 INFO:teuthology.orchestra.run.smithi152.stdout:Downloading Packages: 2024-09-17T08:04:57.312 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-17T08:04:57.313 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:04:57.313 INFO:teuthology.orchestra.run.smithi145.stdout: Package Arch Version Repository Size 2024-09-17T08:04:57.313 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:04:57.313 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-17T08:04:57.313 INFO:teuthology.orchestra.run.smithi145.stdout: cephadm noarch 2:18.2.4-855.g19e2a2be.el9 ceph-noarch 226 k 2024-09-17T08:04:57.313 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:04:57.313 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-17T08:04:57.313 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:04:57.313 INFO:teuthology.orchestra.run.smithi145.stdout:Install 1 Package 2024-09-17T08:04:57.314 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:04:57.314 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 226 k 2024-09-17T08:04:57.314 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 217 k 2024-09-17T08:04:57.314 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-17T08:04:57.546 INFO:teuthology.orchestra.run.smithi145.stdout:cephadm-18.2.4-855.g19e2a2be.el9.noarch.rpm 976 kB/s | 226 kB 00:00 2024-09-17T08:04:57.547 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:04:57.547 INFO:teuthology.orchestra.run.smithi145.stdout:Total 969 kB/s | 226 kB 00:00 2024-09-17T08:04:57.547 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-17T08:04:57.552 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-17T08:04:57.552 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-17T08:04:57.555 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-17T08:04:57.555 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-17T08:04:57.628 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-17T08:04:57.893 INFO:teuthology.orchestra.run.smithi152.stdout:(1/12): ceph-mgr-diskprediction-local-18.2.4-85 16 MB/s | 7.4 MB 00:00 2024-09-17T08:04:58.009 INFO:teuthology.orchestra.run.smithi152.stdout:(2/12): flexiblas-3.0.4-8.el9.x86_64.rpm 282 kB/s | 33 kB 00:00 2024-09-17T08:04:58.049 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: cephadm-2:18.2.4-855.g19e2a2be.el9.noarch 1/1 2024-09-17T08:04:58.142 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : cephadm-2:18.2.4-855.g19e2a2be.el9.noarch 1/1 2024-09-17T08:04:58.201 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-09-17T08:04:58.240 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-mgr-diskprediction-local-2:18.2.4-855.g19e2a2 12/12 2024-09-17T08:04:58.251 INFO:teuthology.orchestra.run.smithi152.stdout:(3/12): libquadmath-11.5.0-2.el9.x86_64.rpm 231 kB/s | 191 kB 00:00 2024-09-17T08:04:58.376 INFO:teuthology.orchestra.run.smithi152.stdout:(4/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 146 kB/s | 18 kB 00:00 2024-09-17T08:04:58.468 INFO:teuthology.orchestra.run.smithi152.stdout:(5/12): libgfortran-11.5.0-2.el9.x86_64.rpm 768 kB/s | 801 kB 00:01 2024-09-17T08:04:58.493 INFO:teuthology.orchestra.run.smithi152.stdout:(6/12): openblas-0.3.26-2.el9.x86_64.rpm 329 kB/s | 38 kB 00:00 2024-09-17T08:04:58.519 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: cephadm-2:18.2.4-855.g19e2a2be.el9.noarch 1/1 2024-09-17T08:04:58.728 INFO:teuthology.orchestra.run.smithi152.stdout:(7/12): python3-devel-3.9.19-8.el9.x86_64.rpm 1.0 MB/s | 245 kB 00:00 2024-09-17T08:04:58.766 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : cephadm-2:18.2.4-855.g19e2a2be.el9.noarch 1/1 2024-09-17T08:04:58.766 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:04:58.766 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-17T08:04:58.766 INFO:teuthology.orchestra.run.smithi145.stdout: cephadm-2:18.2.4-855.g19e2a2be.el9.noarch 2024-09-17T08:04:58.767 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:04:58.767 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-17T08:04:58.944 INFO:teuthology.orchestra.run.smithi152.stdout:(8/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 3.2 MB/s | 3.0 MB 00:00 2024-09-17T08:04:58.984 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install ceph-immutable-object-cache 2024-09-17T08:04:59.094 INFO:teuthology.orchestra.run.smithi152.stdout:(9/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 1.6 MB/s | 250 kB 00:00 2024-09-17T08:04:59.573 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:00:50 ago on Tue 17 Sep 2024 08:04:09 AM UTC. 2024-09-17T08:04:59.710 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-17T08:04:59.711 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:04:59.711 INFO:teuthology.orchestra.run.smithi145.stdout: Package Arch Version Repo Size 2024-09-17T08:04:59.711 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:04:59.711 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-17T08:04:59.711 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-immutable-object-cache x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 143 k 2024-09-17T08:04:59.711 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:04:59.711 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-17T08:04:59.711 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:04:59.712 INFO:teuthology.orchestra.run.smithi145.stdout:Install 1 Package 2024-09-17T08:04:59.712 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:04:59.712 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 143 k 2024-09-17T08:04:59.712 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 395 k 2024-09-17T08:04:59.712 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-17T08:04:59.919 INFO:teuthology.orchestra.run.smithi145.stdout:ceph-immutable-object-cache-18.2.4-855.g19e2a2b 690 kB/s | 143 kB 00:00 2024-09-17T08:04:59.919 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:04:59.919 INFO:teuthology.orchestra.run.smithi145.stdout:Total 686 kB/s | 143 kB 00:00 2024-09-17T08:04:59.920 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-17T08:04:59.927 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-17T08:04:59.927 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-17T08:04:59.984 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-17T08:04:59.984 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-17T08:05:00.111 INFO:teuthology.orchestra.run.smithi152.stdout:(10/12): openblas-openmp-0.3.26-2.el9.x86_64.rp 3.0 MB/s | 4.9 MB 00:01 2024-09-17T08:05:00.141 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-17T08:05:00.211 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-immutable-object-cache-2:18.2.4-855.g19e2a2be.e 1/1 2024-09-17T08:05:00.237 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-immutable-object-cache-2:18.2.4-855.g19e2a2be.e 1/1 2024-09-17T08:05:00.238 INFO:teuthology.orchestra.run.smithi145.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T08:05:00.238 INFO:teuthology.orchestra.run.smithi145.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-09-17T08:05:00.238 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:00.611 INFO:teuthology.orchestra.run.smithi152.stdout:(11/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 2.7 MB/s | 5.1 MB 00:01 2024-09-17T08:05:00.978 INFO:teuthology.orchestra.run.smithi152.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 8.6 MB/s | 16 MB 00:01 2024-09-17T08:05:00.979 INFO:teuthology.orchestra.run.smithi152.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:05:00.979 INFO:teuthology.orchestra.run.smithi152.stdout:Total 10 MB/s | 38 MB 00:03 2024-09-17T08:05:01.038 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:18.2.4-855.g19e2a2 12/12 2024-09-17T08:05:01.038 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-mgr-diskprediction-local-2:18.2.4-855.g19e2a2 1/12 2024-09-17T08:05:01.038 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : libgfortran-11.5.0-2.el9.x86_64 2/12 2024-09-17T08:05:01.038 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : libquadmath-11.5.0-2.el9.x86_64 3/12 2024-09-17T08:05:01.038 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-09-17T08:05:01.039 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-09-17T08:05:01.039 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-09-17T08:05:01.039 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : openblas-0.3.26-2.el9.x86_64 7/12 2024-09-17T08:05:01.039 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : openblas-openmp-0.3.26-2.el9.x86_64 8/12 2024-09-17T08:05:01.039 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-devel-3.9.19-8.el9.x86_64 9/12 2024-09-17T08:05:01.039 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-09-17T08:05:01.039 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-09-17T08:05:01.186 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-immutable-object-cache-2:18.2.4-855.g19e2a2be.e 1/1 2024-09-17T08:05:01.186 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:01.186 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-17T08:05:01.186 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-immutable-object-cache-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:05:01.186 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:01.186 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-17T08:05:01.334 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction check 2024-09-17T08:05:01.360 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction check succeeded. 2024-09-17T08:05:01.361 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction test 2024-09-17T08:05:01.438 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install ceph-mgr 2024-09-17T08:05:01.442 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-09-17T08:05:01.442 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:01.442 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-09-17T08:05:01.442 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-mgr-diskprediction-local-2:18.2.4-855.g19e2a2be.el9.noarch 2024-09-17T08:05:01.442 INFO:teuthology.orchestra.run.smithi044.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-09-17T08:05:01.443 INFO:teuthology.orchestra.run.smithi044.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-09-17T08:05:01.443 INFO:teuthology.orchestra.run.smithi044.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-09-17T08:05:01.443 INFO:teuthology.orchestra.run.smithi044.stdout: libgfortran-11.5.0-2.el9.x86_64 2024-09-17T08:05:01.443 INFO:teuthology.orchestra.run.smithi044.stdout: libquadmath-11.5.0-2.el9.x86_64 2024-09-17T08:05:01.443 INFO:teuthology.orchestra.run.smithi044.stdout: openblas-0.3.26-2.el9.x86_64 2024-09-17T08:05:01.443 INFO:teuthology.orchestra.run.smithi044.stdout: openblas-openmp-0.3.26-2.el9.x86_64 2024-09-17T08:05:01.443 INFO:teuthology.orchestra.run.smithi044.stdout: python3-devel-3.9.19-8.el9.x86_64 2024-09-17T08:05:01.443 INFO:teuthology.orchestra.run.smithi044.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-09-17T08:05:01.443 INFO:teuthology.orchestra.run.smithi044.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-09-17T08:05:01.443 INFO:teuthology.orchestra.run.smithi044.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-09-17T08:05:01.443 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:01.444 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-09-17T08:05:01.819 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install ceph-mgr-rook 2024-09-17T08:05:01.896 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction test succeeded. 2024-09-17T08:05:01.896 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction 2024-09-17T08:05:02.046 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:00:53 ago on Tue 17 Sep 2024 08:04:09 AM UTC. 2024-09-17T08:05:02.136 INFO:teuthology.orchestra.run.smithi145.stdout:Package ceph-mgr-2:18.2.4-855.g19e2a2be.el9.x86_64 is already installed. 2024-09-17T08:05:02.177 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-17T08:05:02.178 INFO:teuthology.orchestra.run.smithi145.stdout:Nothing to do. 2024-09-17T08:05:02.178 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-17T08:05:02.260 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install ceph-mgr-dashboard 2024-09-17T08:05:02.433 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:01:13 ago on Tue 17 Sep 2024 08:03:49 AM UTC. 2024-09-17T08:05:02.573 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-09-17T08:05:02.574 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:05:02.575 INFO:teuthology.orchestra.run.smithi044.stdout: Package Arch Version Repository Size 2024-09-17T08:05:02.575 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:05:02.575 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-09-17T08:05:02.575 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-mgr-rook noarch 2:18.2.4-855.g19e2a2be.el9 ceph-noarch 49 k 2024-09-17T08:05:02.575 INFO:teuthology.orchestra.run.smithi044.stdout:Installing dependencies: 2024-09-17T08:05:02.575 INFO:teuthology.orchestra.run.smithi044.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-09-17T08:05:02.575 INFO:teuthology.orchestra.run.smithi044.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2024-09-17T08:05:02.575 INFO:teuthology.orchestra.run.smithi044.stdout: python3-google-auth noarch 1:2.34.0-1.el9 epel 220 k 2024-09-17T08:05:02.575 INFO:teuthology.orchestra.run.smithi044.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-09-17T08:05:02.575 INFO:teuthology.orchestra.run.smithi044.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-09-17T08:05:02.575 INFO:teuthology.orchestra.run.smithi044.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-09-17T08:05:02.575 INFO:teuthology.orchestra.run.smithi044.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-09-17T08:05:02.575 INFO:teuthology.orchestra.run.smithi044.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-09-17T08:05:02.576 INFO:teuthology.orchestra.run.smithi044.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-09-17T08:05:02.576 INFO:teuthology.orchestra.run.smithi044.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-09-17T08:05:02.576 INFO:teuthology.orchestra.run.smithi044.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-09-17T08:05:02.576 INFO:teuthology.orchestra.run.smithi044.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-09-17T08:05:02.576 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:02.576 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-09-17T08:05:02.576 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:05:02.576 INFO:teuthology.orchestra.run.smithi044.stdout:Install 13 Packages 2024-09-17T08:05:02.576 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:02.577 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 2.2 M 2024-09-17T08:05:02.577 INFO:teuthology.orchestra.run.smithi044.stdout:Installed size: 26 M 2024-09-17T08:05:02.577 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-09-17T08:05:02.665 INFO:teuthology.orchestra.run.smithi152.stdout: Preparing : 1/1 2024-09-17T08:05:02.733 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-09-17T08:05:02.777 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : libquadmath-11.5.0-2.el9.x86_64 2/12 2024-09-17T08:05:02.839 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:00:53 ago on Tue 17 Sep 2024 08:04:09 AM UTC. 2024-09-17T08:05:02.877 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : libgfortran-11.5.0-2.el9.x86_64 3/12 2024-09-17T08:05:02.919 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-devel-3.9.19-8.el9.x86_64 4/12 2024-09-17T08:05:02.970 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-17T08:05:02.971 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:05:02.971 INFO:teuthology.orchestra.run.smithi145.stdout: Package Arch Version Repository Size 2024-09-17T08:05:02.971 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:05:02.971 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-17T08:05:02.971 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-mgr-dashboard noarch 2:18.2.4-855.g19e2a2be.el9 ceph-noarch 3.5 M 2024-09-17T08:05:02.971 INFO:teuthology.orchestra.run.smithi145.stdout:Installing dependencies: 2024-09-17T08:05:02.971 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-grafana-dashboards noarch 2:18.2.4-855.g19e2a2be.el9 ceph-noarch 24 k 2024-09-17T08:05:02.971 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-prometheus-alerts noarch 2:18.2.4-855.g19e2a2be.el9 ceph-noarch 16 k 2024-09-17T08:05:02.971 INFO:teuthology.orchestra.run.smithi145.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-09-17T08:05:02.971 INFO:teuthology.orchestra.run.smithi145.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-09-17T08:05:02.972 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:02.972 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-17T08:05:02.972 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:05:02.972 INFO:teuthology.orchestra.run.smithi145.stdout:Install 5 Packages 2024-09-17T08:05:02.972 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:02.972 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 3.8 M 2024-09-17T08:05:02.972 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 87 M 2024-09-17T08:05:02.973 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-17T08:05:03.104 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : openblas-0.3.26-2.el9.x86_64 5/12 2024-09-17T08:05:03.107 INFO:teuthology.orchestra.run.smithi044.stdout:(1/13): python3-jsonpatch-1.21-16.el9.noarch.rp 287 kB/s | 26 kB 00:00 2024-09-17T08:05:03.132 INFO:teuthology.orchestra.run.smithi044.stdout:(2/13): python3-jsonpointer-2.0-4.el9.noarch.rp 167 kB/s | 19 kB 00:00 2024-09-17T08:05:03.134 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : openblas-openmp-0.3.26-2.el9.x86_64 6/12 2024-09-17T08:05:03.155 INFO:teuthology.orchestra.run.smithi145.stdout:(1/5): ceph-grafana-dashboards-18.2.4-855.g19e2 161 kB/s | 24 kB 00:00 2024-09-17T08:05:03.172 INFO:teuthology.orchestra.run.smithi145.stdout:(2/5): ceph-prometheus-alerts-18.2.4-855.g19e2a 98 kB/s | 16 kB 00:00 2024-09-17T08:05:03.191 INFO:teuthology.orchestra.run.smithi044.stdout:(3/13): ceph-mgr-rook-18.2.4-855.g19e2a2be.el9. 285 kB/s | 49 kB 00:00 2024-09-17T08:05:03.214 INFO:teuthology.orchestra.run.smithi145.stdout:(3/5): python3-repoze-lru-0.7-16.el9.noarch.rpm 528 kB/s | 31 kB 00:00 2024-09-17T08:05:03.229 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-09-17T08:05:03.241 INFO:teuthology.orchestra.run.smithi044.stdout:(4/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.4 MB/s | 159 kB 00:00 2024-09-17T08:05:03.256 INFO:teuthology.orchestra.run.smithi145.stdout:(4/5): python3-routes-2.5.1-5.el9.noarch.rpm 2.2 MB/s | 188 kB 00:00 2024-09-17T08:05:03.266 INFO:teuthology.orchestra.run.smithi044.stdout:(5/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 1.4 MB/s | 222 kB 00:00 2024-09-17T08:05:03.300 INFO:teuthology.orchestra.run.smithi044.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 915 kB/s | 54 kB 00:00 2024-09-17T08:05:03.334 INFO:teuthology.orchestra.run.smithi044.stdout:(7/13): python3-cachetools-4.2.4-1.el9.noarch.r 480 kB/s | 32 kB 00:00 2024-09-17T08:05:03.359 INFO:teuthology.orchestra.run.smithi044.stdout:(8/13): python3-certifi-2023.05.07-4.el9.noarch 249 kB/s | 14 kB 00:00 2024-09-17T08:05:03.373 INFO:teuthology.orchestra.run.smithi145.stdout:(5/5): ceph-mgr-dashboard-18.2.4-855.g19e2a2be. 9.6 MB/s | 3.5 MB 00:00 2024-09-17T08:05:03.376 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:05:03.377 INFO:teuthology.orchestra.run.smithi145.stdout:Total 9.4 MB/s | 3.8 MB 00:00 2024-09-17T08:05:03.377 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-17T08:05:03.384 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-17T08:05:03.384 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-17T08:05:03.392 INFO:teuthology.orchestra.run.smithi044.stdout:(9/13): python3-google-auth-2.34.0-1.el9.noarch 3.8 MB/s | 220 kB 00:00 2024-09-17T08:05:03.418 INFO:teuthology.orchestra.run.smithi044.stdout:(10/13): python3-rsa-4.9-2.el9.noarch.rpm 2.3 MB/s | 59 kB 00:00 2024-09-17T08:05:03.443 INFO:teuthology.orchestra.run.smithi044.stdout:(11/13): python3-pyasn1-modules-0.4.8-6.el9.noa 1.1 MB/s | 279 kB 00:00 2024-09-17T08:05:03.466 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-17T08:05:03.466 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-17T08:05:03.477 INFO:teuthology.orchestra.run.smithi044.stdout:(12/13): python3-websocket-client-1.2.3-2.el9.n 1.5 MB/s | 90 kB 00:00 2024-09-17T08:05:03.511 INFO:teuthology.orchestra.run.smithi044.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 6.7 MB/s | 1.0 MB 00:00 2024-09-17T08:05:03.513 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:05:03.513 INFO:teuthology.orchestra.run.smithi044.stdout:Total 2.4 MB/s | 2.2 MB 00:00 2024-09-17T08:05:03.578 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-09-17T08:05:03.594 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-09-17T08:05:03.594 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-09-17T08:05:03.691 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-09-17T08:05:03.691 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-09-17T08:05:03.717 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-17T08:05:03.804 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 1/5 2024-09-17T08:05:03.836 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 2/5 2024-09-17T08:05:03.865 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-prometheus-alerts-2:18.2.4-855.g19e2a2be.el9.no 3/5 2024-09-17T08:05:03.893 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-09-17T08:05:04.023 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-09-17T08:05:04.331 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-09-17T08:05:04.499 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-09-17T08:05:04.564 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-09-17T08:05:04.627 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-09-17T08:05:04.663 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-09-17T08:05:04.706 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 5/13 2024-09-17T08:05:04.821 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-09-17T08:05:04.906 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-grafana-dashboards-2:18.2.4-855.g19e2a2be.el9.n 4/5 2024-09-17T08:05:04.938 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-google-auth-1:2.34.0-1.el9.noarch 7/13 2024-09-17T08:05:04.943 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-mgr-dashboard-2:18.2.4-855.g19e2a2be.el9.noarch 5/5 2024-09-17T08:05:04.991 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-09-17T08:05:05.312 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-09-17T08:05:05.751 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-09-17T08:05:05.812 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-09-17T08:05:05.846 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-09-17T08:05:05.895 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-09-17T08:05:05.923 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-mgr-rook-2:18.2.4-855.g19e2a2be.el9.noarch 13/13 2024-09-17T08:05:06.126 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-mgr-dashboard-2:18.2.4-855.g19e2a2be.el9.noarch 5/5 2024-09-17T08:05:06.126 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-grafana-dashboards-2:18.2.4-855.g19e2a2be.el9.n 1/5 2024-09-17T08:05:06.126 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-mgr-dashboard-2:18.2.4-855.g19e2a2be.el9.noarch 2/5 2024-09-17T08:05:06.126 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-prometheus-alerts-2:18.2.4-855.g19e2a2be.el9.no 3/5 2024-09-17T08:05:06.126 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 4/5 2024-09-17T08:05:06.373 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-09-17T08:05:06.389 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 5/5 2024-09-17T08:05:06.389 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:06.389 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-17T08:05:06.389 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-grafana-dashboards-2:18.2.4-855.g19e2a2be.el9.noarch 2024-09-17T08:05:06.389 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-mgr-dashboard-2:18.2.4-855.g19e2a2be.el9.noarch 2024-09-17T08:05:06.389 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-prometheus-alerts-2:18.2.4-855.g19e2a2be.el9.noarch 2024-09-17T08:05:06.389 INFO:teuthology.orchestra.run.smithi145.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-09-17T08:05:06.389 INFO:teuthology.orchestra.run.smithi145.stdout: python3-routes-2.5.1-5.el9.noarch 2024-09-17T08:05:06.389 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:06.389 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-17T08:05:06.408 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : ceph-mgr-diskprediction-local-2:18.2.4-855.g19e2a2 12/12 2024-09-17T08:05:06.623 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install ceph-mgr-diskprediction-local 2024-09-17T08:05:06.750 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-mgr-rook-2:18.2.4-855.g19e2a2be.el9.noarch 13/13 2024-09-17T08:05:06.750 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-mgr-rook-2:18.2.4-855.g19e2a2be.el9.noarch 1/13 2024-09-17T08:05:06.750 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-09-17T08:05:06.750 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-09-17T08:05:06.750 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-09-17T08:05:06.750 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-09-17T08:05:06.750 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-09-17T08:05:06.751 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-09-17T08:05:06.751 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-09-17T08:05:06.751 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 9/13 2024-09-17T08:05:06.751 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-google-auth-1:2.34.0-1.el9.noarch 10/13 2024-09-17T08:05:06.751 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-09-17T08:05:06.751 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-09-17T08:05:07.098 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-09-17T08:05:07.098 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:07.098 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-09-17T08:05:07.098 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-mgr-rook-2:18.2.4-855.g19e2a2be.el9.noarch 2024-09-17T08:05:07.098 INFO:teuthology.orchestra.run.smithi044.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-09-17T08:05:07.098 INFO:teuthology.orchestra.run.smithi044.stdout: python3-certifi-2023.05.07-4.el9.noarch 2024-09-17T08:05:07.098 INFO:teuthology.orchestra.run.smithi044.stdout: python3-google-auth-1:2.34.0-1.el9.noarch 2024-09-17T08:05:07.098 INFO:teuthology.orchestra.run.smithi044.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-09-17T08:05:07.098 INFO:teuthology.orchestra.run.smithi044.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-09-17T08:05:07.099 INFO:teuthology.orchestra.run.smithi044.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-09-17T08:05:07.099 INFO:teuthology.orchestra.run.smithi044.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-09-17T08:05:07.099 INFO:teuthology.orchestra.run.smithi044.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-09-17T08:05:07.099 INFO:teuthology.orchestra.run.smithi044.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-09-17T08:05:07.099 INFO:teuthology.orchestra.run.smithi044.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-09-17T08:05:07.099 INFO:teuthology.orchestra.run.smithi044.stdout: python3-rsa-4.9-2.el9.noarch 2024-09-17T08:05:07.099 INFO:teuthology.orchestra.run.smithi044.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-09-17T08:05:07.099 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:07.099 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-09-17T08:05:07.203 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:00:58 ago on Tue 17 Sep 2024 08:04:09 AM UTC. 2024-09-17T08:05:07.335 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-17T08:05:07.336 INFO:teuthology.orchestra.run.smithi145.stdout:====================================================================================== 2024-09-17T08:05:07.336 INFO:teuthology.orchestra.run.smithi145.stdout: Package Arch Version Repository Size 2024-09-17T08:05:07.336 INFO:teuthology.orchestra.run.smithi145.stdout:====================================================================================== 2024-09-17T08:05:07.336 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-17T08:05:07.337 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-mgr-diskprediction-local noarch 2:18.2.4-855.g19e2a2be.el9 ceph-noarch 7.4 M 2024-09-17T08:05:07.337 INFO:teuthology.orchestra.run.smithi145.stdout:Installing dependencies: 2024-09-17T08:05:07.337 INFO:teuthology.orchestra.run.smithi145.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-09-17T08:05:07.337 INFO:teuthology.orchestra.run.smithi145.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-09-17T08:05:07.337 INFO:teuthology.orchestra.run.smithi145.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-09-17T08:05:07.337 INFO:teuthology.orchestra.run.smithi145.stdout: libgfortran x86_64 11.5.0-2.el9 baseos 801 k 2024-09-17T08:05:07.337 INFO:teuthology.orchestra.run.smithi145.stdout: libquadmath x86_64 11.5.0-2.el9 baseos 191 k 2024-09-17T08:05:07.337 INFO:teuthology.orchestra.run.smithi145.stdout: openblas x86_64 0.3.26-2.el9 appstream 38 k 2024-09-17T08:05:07.337 INFO:teuthology.orchestra.run.smithi145.stdout: openblas-openmp x86_64 0.3.26-2.el9 appstream 4.9 M 2024-09-17T08:05:07.337 INFO:teuthology.orchestra.run.smithi145.stdout: python3-devel x86_64 3.9.19-8.el9 appstream 245 k 2024-09-17T08:05:07.337 INFO:teuthology.orchestra.run.smithi145.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-09-17T08:05:07.337 INFO:teuthology.orchestra.run.smithi145.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-09-17T08:05:07.338 INFO:teuthology.orchestra.run.smithi145.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-09-17T08:05:07.338 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:07.338 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-17T08:05:07.338 INFO:teuthology.orchestra.run.smithi145.stdout:====================================================================================== 2024-09-17T08:05:07.338 INFO:teuthology.orchestra.run.smithi145.stdout:Install 12 Packages 2024-09-17T08:05:07.338 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:07.338 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 38 M 2024-09-17T08:05:07.339 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 212 M 2024-09-17T08:05:07.339 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-17T08:05:07.343 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install ceph-mgr-cephadm 2024-09-17T08:05:07.796 INFO:teuthology.orchestra.run.smithi145.stdout:(1/12): libquadmath-11.5.0-2.el9.x86_64.rpm 1.0 MB/s | 191 kB 00:00 2024-09-17T08:05:07.913 INFO:teuthology.orchestra.run.smithi145.stdout:(2/12): flexiblas-3.0.4-8.el9.x86_64.rpm 280 kB/s | 33 kB 00:00 2024-09-17T08:05:07.946 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:01:18 ago on Tue 17 Sep 2024 08:03:49 AM UTC. 2024-09-17T08:05:07.947 INFO:teuthology.orchestra.run.smithi145.stdout:(3/12): libgfortran-11.5.0-2.el9.x86_64.rpm 2.4 MB/s | 801 kB 00:00 2024-09-17T08:05:08.072 INFO:teuthology.orchestra.run.smithi145.stdout:(4/12): ceph-mgr-diskprediction-local-18.2.4-85 16 MB/s | 7.4 MB 00:00 2024-09-17T08:05:08.084 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-09-17T08:05:08.085 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:05:08.085 INFO:teuthology.orchestra.run.smithi044.stdout: Package Arch Version Repository Size 2024-09-17T08:05:08.085 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:05:08.085 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-09-17T08:05:08.085 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-mgr-cephadm noarch 2:18.2.4-855.g19e2a2be.el9 ceph-noarch 139 k 2024-09-17T08:05:08.086 INFO:teuthology.orchestra.run.smithi044.stdout:Installing dependencies: 2024-09-17T08:05:08.086 INFO:teuthology.orchestra.run.smithi044.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-09-17T08:05:08.086 INFO:teuthology.orchestra.run.smithi044.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-09-17T08:05:08.086 INFO:teuthology.orchestra.run.smithi044.stdout: python3-jinja2 noarch 2.11.3-6.el9 appstream 248 k 2024-09-17T08:05:08.086 INFO:teuthology.orchestra.run.smithi044.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-09-17T08:05:08.086 INFO:teuthology.orchestra.run.smithi044.stdout: python3-typing-extensions noarch 4.12.2-2.el9 epel 74 k 2024-09-17T08:05:08.086 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:08.086 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-09-17T08:05:08.086 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:05:08.086 INFO:teuthology.orchestra.run.smithi044.stdout:Install 6 Packages 2024-09-17T08:05:08.086 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:08.087 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 7.0 M 2024-09-17T08:05:08.087 INFO:teuthology.orchestra.run.smithi044.stdout:Installed size: 33 M 2024-09-17T08:05:08.087 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-09-17T08:05:08.098 INFO:teuthology.orchestra.run.smithi145.stdout:(5/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 121 kB/s | 18 kB 00:00 2024-09-17T08:05:08.181 INFO:teuthology.orchestra.run.smithi145.stdout:(6/12): openblas-0.3.26-2.el9.x86_64.rpm 354 kB/s | 38 kB 00:00 2024-09-17T08:05:08.332 INFO:teuthology.orchestra.run.smithi145.stdout:(7/12): python3-devel-3.9.19-8.el9.x86_64.rpm 1.6 MB/s | 245 kB 00:00 2024-09-17T08:05:08.496 INFO:teuthology.orchestra.run.smithi044.stdout:(1/6): python3-jinja2-2.11.3-6.el9.noarch.rpm 1.4 MB/s | 248 kB 00:00 2024-09-17T08:05:08.521 INFO:teuthology.orchestra.run.smithi044.stdout:(2/6): ceph-mgr-cephadm-18.2.4-855.g19e2a2be.el 690 kB/s | 139 kB 00:00 2024-09-17T08:05:08.580 INFO:teuthology.orchestra.run.smithi044.stdout:(3/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 6.4 MB/s | 548 kB 00:00 2024-09-17T08:05:08.597 INFO:teuthology.orchestra.run.smithi044.stdout:(4/6): python3-natsort-7.1.1-5.el9.noarch.rpm 766 kB/s | 58 kB 00:00 2024-09-17T08:05:08.622 INFO:teuthology.orchestra.run.smithi044.stdout:(5/6): python3-typing-extensions-4.12.2-2.el9.n 1.7 MB/s | 74 kB 00:00 2024-09-17T08:05:08.996 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:18.2.4-855.g19e2a2 12/12 2024-09-17T08:05:08.997 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : ceph-mgr-diskprediction-local-2:18.2.4-855.g19e2a2 1/12 2024-09-17T08:05:08.997 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : libgfortran-11.5.0-2.el9.x86_64 2/12 2024-09-17T08:05:08.997 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : libquadmath-11.5.0-2.el9.x86_64 3/12 2024-09-17T08:05:08.997 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-09-17T08:05:08.997 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-09-17T08:05:08.997 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-09-17T08:05:08.997 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : openblas-0.3.26-2.el9.x86_64 7/12 2024-09-17T08:05:08.997 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : openblas-openmp-0.3.26-2.el9.x86_64 8/12 2024-09-17T08:05:08.997 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-devel-3.9.19-8.el9.x86_64 9/12 2024-09-17T08:05:08.997 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-09-17T08:05:08.997 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-09-17T08:05:08.998 INFO:teuthology.orchestra.run.smithi145.stdout:(8/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 2.8 MB/s | 3.0 MB 00:01 2024-09-17T08:05:09.141 INFO:teuthology.orchestra.run.smithi145.stdout:(9/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 1.7 MB/s | 250 kB 00:00 2024-09-17T08:05:09.455 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-09-17T08:05:09.455 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:09.455 INFO:teuthology.orchestra.run.smithi152.stdout:Installed: 2024-09-17T08:05:09.455 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-mgr-diskprediction-local-2:18.2.4-855.g19e2a2be.el9.noarch 2024-09-17T08:05:09.455 INFO:teuthology.orchestra.run.smithi152.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-09-17T08:05:09.455 INFO:teuthology.orchestra.run.smithi152.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-09-17T08:05:09.455 INFO:teuthology.orchestra.run.smithi152.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-09-17T08:05:09.456 INFO:teuthology.orchestra.run.smithi152.stdout: libgfortran-11.5.0-2.el9.x86_64 2024-09-17T08:05:09.456 INFO:teuthology.orchestra.run.smithi152.stdout: libquadmath-11.5.0-2.el9.x86_64 2024-09-17T08:05:09.456 INFO:teuthology.orchestra.run.smithi152.stdout: openblas-0.3.26-2.el9.x86_64 2024-09-17T08:05:09.456 INFO:teuthology.orchestra.run.smithi152.stdout: openblas-openmp-0.3.26-2.el9.x86_64 2024-09-17T08:05:09.456 INFO:teuthology.orchestra.run.smithi152.stdout: python3-devel-3.9.19-8.el9.x86_64 2024-09-17T08:05:09.456 INFO:teuthology.orchestra.run.smithi152.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-09-17T08:05:09.456 INFO:teuthology.orchestra.run.smithi152.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-09-17T08:05:09.456 INFO:teuthology.orchestra.run.smithi152.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-09-17T08:05:09.456 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:09.456 INFO:teuthology.orchestra.run.smithi152.stdout:Complete! 2024-09-17T08:05:09.664 INFO:teuthology.orchestra.run.smithi044.stdout:(6/6): python3-babel-2.9.1-2.el9.noarch.rpm 4.4 MB/s | 6.0 MB 00:01 2024-09-17T08:05:09.667 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:05:09.667 INFO:teuthology.orchestra.run.smithi044.stdout:Total 4.4 MB/s | 7.0 MB 00:01 2024-09-17T08:05:09.741 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-09-17T08:05:09.754 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-09-17T08:05:09.754 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-09-17T08:05:09.861 DEBUG:teuthology.orchestra.run.smithi152:> sudo yum -y install ceph-mgr-rook 2024-09-17T08:05:09.862 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-09-17T08:05:09.862 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-09-17T08:05:09.866 INFO:teuthology.orchestra.run.smithi145.stdout:(10/12): openblas-openmp-0.3.26-2.el9.x86_64.rp 2.8 MB/s | 4.9 MB 00:01 2024-09-17T08:05:10.337 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-09-17T08:05:10.341 INFO:teuthology.orchestra.run.smithi145.stdout:(11/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 2.5 MB/s | 5.1 MB 00:02 2024-09-17T08:05:10.463 INFO:teuthology.orchestra.run.smithi152.stdout:Last metadata expiration check: 0:01:13 ago on Tue 17 Sep 2024 08:03:57 AM UTC. 2024-09-17T08:05:10.513 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-typing-extensions-4.12.2-2.el9.noarch 1/6 2024-09-17T08:05:10.575 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-09-17T08:05:10.603 INFO:teuthology.orchestra.run.smithi152.stdout:Dependencies resolved. 2024-09-17T08:05:10.604 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:05:10.605 INFO:teuthology.orchestra.run.smithi152.stdout: Package Arch Version Repository Size 2024-09-17T08:05:10.605 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:05:10.605 INFO:teuthology.orchestra.run.smithi152.stdout:Installing: 2024-09-17T08:05:10.605 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-mgr-rook noarch 2:18.2.4-855.g19e2a2be.el9 ceph-noarch 49 k 2024-09-17T08:05:10.605 INFO:teuthology.orchestra.run.smithi152.stdout:Installing dependencies: 2024-09-17T08:05:10.605 INFO:teuthology.orchestra.run.smithi152.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-09-17T08:05:10.605 INFO:teuthology.orchestra.run.smithi152.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2024-09-17T08:05:10.605 INFO:teuthology.orchestra.run.smithi152.stdout: python3-google-auth noarch 1:2.34.0-1.el9 epel 220 k 2024-09-17T08:05:10.605 INFO:teuthology.orchestra.run.smithi152.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-09-17T08:05:10.605 INFO:teuthology.orchestra.run.smithi152.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-09-17T08:05:10.605 INFO:teuthology.orchestra.run.smithi152.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-09-17T08:05:10.605 INFO:teuthology.orchestra.run.smithi152.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-09-17T08:05:10.605 INFO:teuthology.orchestra.run.smithi152.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-09-17T08:05:10.606 INFO:teuthology.orchestra.run.smithi152.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-09-17T08:05:10.606 INFO:teuthology.orchestra.run.smithi152.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-09-17T08:05:10.606 INFO:teuthology.orchestra.run.smithi152.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-09-17T08:05:10.606 INFO:teuthology.orchestra.run.smithi152.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-09-17T08:05:10.606 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:10.606 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction Summary 2024-09-17T08:05:10.606 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:05:10.606 INFO:teuthology.orchestra.run.smithi152.stdout:Install 13 Packages 2024-09-17T08:05:10.606 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:10.607 INFO:teuthology.orchestra.run.smithi152.stdout:Total download size: 2.2 M 2024-09-17T08:05:10.607 INFO:teuthology.orchestra.run.smithi152.stdout:Installed size: 26 M 2024-09-17T08:05:10.607 INFO:teuthology.orchestra.run.smithi152.stdout:Downloading Packages: 2024-09-17T08:05:11.142 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-09-17T08:05:11.231 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-09-17T08:05:11.301 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-jinja2-2.11.3-6.el9.noarch 5/6 2024-09-17T08:05:11.337 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-mgr-cephadm-2:18.2.4-855.g19e2a2be.el9.noarch 6/6 2024-09-17T08:05:11.448 INFO:teuthology.orchestra.run.smithi152.stdout:(1/13): ceph-mgr-rook-18.2.4-855.g19e2a2be.el9. 286 kB/s | 49 kB 00:00 2024-09-17T08:05:11.565 INFO:teuthology.orchestra.run.smithi152.stdout:(2/13): python3-jsonpointer-2.0-4.el9.noarch.rp 66 kB/s | 19 kB 00:00 2024-09-17T08:05:11.590 INFO:teuthology.orchestra.run.smithi152.stdout:(3/13): python3-jsonpatch-1.21-16.el9.noarch.rp 81 kB/s | 26 kB 00:00 2024-09-17T08:05:12.032 INFO:teuthology.orchestra.run.smithi152.stdout:(4/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 340 kB/s | 159 kB 00:00 2024-09-17T08:05:12.066 INFO:teuthology.orchestra.run.smithi152.stdout:(5/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 360 kB/s | 222 kB 00:00 2024-09-17T08:05:12.091 INFO:teuthology.orchestra.run.smithi152.stdout:(6/13): python3-pyasn1-modules-0.4.8-6.el9.noar 557 kB/s | 279 kB 00:00 2024-09-17T08:05:12.136 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-mgr-cephadm-2:18.2.4-855.g19e2a2be.el9.noarch 6/6 2024-09-17T08:05:12.137 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-mgr-cephadm-2:18.2.4-855.g19e2a2be.el9.noarch 1/6 2024-09-17T08:05:12.137 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-09-17T08:05:12.137 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-jinja2-2.11.3-6.el9.noarch 3/6 2024-09-17T08:05:12.137 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-09-17T08:05:12.137 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-09-17T08:05:12.141 INFO:teuthology.orchestra.run.smithi152.stdout:(7/13): python3-cachetools-4.2.4-1.el9.noarch.r 428 kB/s | 32 kB 00:00 2024-09-17T08:05:12.167 INFO:teuthology.orchestra.run.smithi152.stdout:(8/13): python3-certifi-2023.05.07-4.el9.noarch 187 kB/s | 14 kB 00:00 2024-09-17T08:05:12.192 INFO:teuthology.orchestra.run.smithi152.stdout:(9/13): python3-requests-oauthlib-1.3.0-12.el9. 336 kB/s | 54 kB 00:00 2024-09-17T08:05:12.234 INFO:teuthology.orchestra.run.smithi152.stdout:(10/13): python3-google-auth-2.34.0-1.el9.noarc 2.3 MB/s | 220 kB 00:00 2024-09-17T08:05:12.259 INFO:teuthology.orchestra.run.smithi152.stdout:(11/13): python3-rsa-4.9-2.el9.noarch.rpm 887 kB/s | 59 kB 00:00 2024-09-17T08:05:12.293 INFO:teuthology.orchestra.run.smithi152.stdout:(12/13): python3-websocket-client-1.2.3-2.el9.n 1.5 MB/s | 90 kB 00:00 2024-09-17T08:05:12.326 INFO:teuthology.orchestra.run.smithi152.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 6.4 MB/s | 1.0 MB 00:00 2024-09-17T08:05:12.330 INFO:teuthology.orchestra.run.smithi152.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:05:12.330 INFO:teuthology.orchestra.run.smithi152.stdout:Total 1.3 MB/s | 2.2 MB 00:01 2024-09-17T08:05:12.395 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction check 2024-09-17T08:05:12.410 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction check succeeded. 2024-09-17T08:05:12.410 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction test 2024-09-17T08:05:12.420 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-typing-extensions-4.12.2-2.el9.noarch 6/6 2024-09-17T08:05:12.421 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:12.421 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-09-17T08:05:12.421 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-mgr-cephadm-2:18.2.4-855.g19e2a2be.el9.noarch 2024-09-17T08:05:12.421 INFO:teuthology.orchestra.run.smithi044.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-09-17T08:05:12.421 INFO:teuthology.orchestra.run.smithi044.stdout: python3-babel-2.9.1-2.el9.noarch 2024-09-17T08:05:12.421 INFO:teuthology.orchestra.run.smithi044.stdout: python3-jinja2-2.11.3-6.el9.noarch 2024-09-17T08:05:12.421 INFO:teuthology.orchestra.run.smithi044.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-09-17T08:05:12.421 INFO:teuthology.orchestra.run.smithi044.stdout: python3-typing-extensions-4.12.2-2.el9.noarch 2024-09-17T08:05:12.421 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:12.421 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-09-17T08:05:12.498 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction test succeeded. 2024-09-17T08:05:12.499 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction 2024-09-17T08:05:12.628 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install ceph-fuse 2024-09-17T08:05:13.004 INFO:teuthology.orchestra.run.smithi152.stdout: Preparing : 1/1 2024-09-17T08:05:13.164 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-09-17T08:05:13.219 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-09-17T08:05:13.246 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:01:24 ago on Tue 17 Sep 2024 08:03:49 AM UTC. 2024-09-17T08:05:13.291 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-09-17T08:05:13.328 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-09-17T08:05:13.370 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 5/13 2024-09-17T08:05:13.386 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-09-17T08:05:13.386 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:05:13.387 INFO:teuthology.orchestra.run.smithi044.stdout: Package Arch Version Repository Size 2024-09-17T08:05:13.387 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:05:13.387 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-09-17T08:05:13.387 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-fuse x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 852 k 2024-09-17T08:05:13.387 INFO:teuthology.orchestra.run.smithi044.stdout:Installing dependencies: 2024-09-17T08:05:13.387 INFO:teuthology.orchestra.run.smithi044.stdout: fuse x86_64 2.9.9-16.el9 baseos 80 k 2024-09-17T08:05:13.387 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:13.387 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-09-17T08:05:13.387 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:05:13.387 INFO:teuthology.orchestra.run.smithi044.stdout:Install 2 Packages 2024-09-17T08:05:13.387 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:13.388 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 932 k 2024-09-17T08:05:13.388 INFO:teuthology.orchestra.run.smithi044.stdout:Installed size: 2.7 M 2024-09-17T08:05:13.388 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-09-17T08:05:13.471 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-09-17T08:05:13.582 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-google-auth-1:2.34.0-1.el9.noarch 7/13 2024-09-17T08:05:13.638 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-09-17T08:05:13.641 INFO:teuthology.orchestra.run.smithi044.stdout:(1/2): fuse-2.9.9-16.el9.x86_64.rpm 531 kB/s | 80 kB 00:00 2024-09-17T08:05:13.766 INFO:teuthology.orchestra.run.smithi044.stdout:(2/2): ceph-fuse-18.2.4-855.g19e2a2be.el9.x86_6 3.0 MB/s | 852 kB 00:00 2024-09-17T08:05:13.766 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:05:13.767 INFO:teuthology.orchestra.run.smithi044.stdout:Total 2.4 MB/s | 932 kB 00:00 2024-09-17T08:05:13.779 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-09-17T08:05:13.801 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-09-17T08:05:13.801 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-09-17T08:05:13.887 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-09-17T08:05:13.887 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-09-17T08:05:14.077 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-09-17T08:05:14.227 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : fuse-2.9.9-16.el9.x86_64 1/2 2024-09-17T08:05:14.302 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-fuse-2:18.2.4-855.g19e2a2be.el9.x86_64 2/2 2024-09-17T08:05:14.352 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-09-17T08:05:14.402 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-09-17T08:05:14.443 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-09-17T08:05:14.491 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-09-17T08:05:14.513 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : ceph-mgr-rook-2:18.2.4-855.g19e2a2be.el9.noarch 13/13 2024-09-17T08:05:15.017 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-fuse-2:18.2.4-855.g19e2a2be.el9.x86_64 2/2 2024-09-17T08:05:15.017 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-fuse-2:18.2.4-855.g19e2a2be.el9.x86_64 1/2 2024-09-17T08:05:15.308 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: ceph-mgr-rook-2:18.2.4-855.g19e2a2be.el9.noarch 13/13 2024-09-17T08:05:15.308 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : ceph-mgr-rook-2:18.2.4-855.g19e2a2be.el9.noarch 1/13 2024-09-17T08:05:15.308 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-09-17T08:05:15.308 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-09-17T08:05:15.308 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-09-17T08:05:15.308 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-09-17T08:05:15.308 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-09-17T08:05:15.308 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-09-17T08:05:15.308 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-09-17T08:05:15.308 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 9/13 2024-09-17T08:05:15.308 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-google-auth-1:2.34.0-1.el9.noarch 10/13 2024-09-17T08:05:15.309 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-09-17T08:05:15.309 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-09-17T08:05:15.396 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : fuse-2.9.9-16.el9.x86_64 2/2 2024-09-17T08:05:15.396 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:15.396 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-09-17T08:05:15.396 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-fuse-2:18.2.4-855.g19e2a2be.el9.x86_64 fuse-2.9.9-16.el9.x86_64 2024-09-17T08:05:15.396 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:15.396 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-09-17T08:05:15.621 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install ceph-volume 2024-09-17T08:05:15.647 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-09-17T08:05:15.648 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:15.648 INFO:teuthology.orchestra.run.smithi152.stdout:Installed: 2024-09-17T08:05:15.648 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-mgr-rook-2:18.2.4-855.g19e2a2be.el9.noarch 2024-09-17T08:05:15.648 INFO:teuthology.orchestra.run.smithi152.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-09-17T08:05:15.648 INFO:teuthology.orchestra.run.smithi152.stdout: python3-certifi-2023.05.07-4.el9.noarch 2024-09-17T08:05:15.648 INFO:teuthology.orchestra.run.smithi152.stdout: python3-google-auth-1:2.34.0-1.el9.noarch 2024-09-17T08:05:15.648 INFO:teuthology.orchestra.run.smithi152.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-09-17T08:05:15.648 INFO:teuthology.orchestra.run.smithi152.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-09-17T08:05:15.648 INFO:teuthology.orchestra.run.smithi152.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-09-17T08:05:15.648 INFO:teuthology.orchestra.run.smithi152.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-09-17T08:05:15.648 INFO:teuthology.orchestra.run.smithi152.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-09-17T08:05:15.648 INFO:teuthology.orchestra.run.smithi152.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-09-17T08:05:15.648 INFO:teuthology.orchestra.run.smithi152.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-09-17T08:05:15.649 INFO:teuthology.orchestra.run.smithi152.stdout: python3-rsa-4.9-2.el9.noarch 2024-09-17T08:05:15.649 INFO:teuthology.orchestra.run.smithi152.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-09-17T08:05:15.649 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:15.649 INFO:teuthology.orchestra.run.smithi152.stdout:Complete! 2024-09-17T08:05:15.933 DEBUG:teuthology.orchestra.run.smithi152:> sudo yum -y install ceph-mgr-cephadm 2024-09-17T08:05:16.230 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:01:27 ago on Tue 17 Sep 2024 08:03:49 AM UTC. 2024-09-17T08:05:16.373 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-09-17T08:05:16.373 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:05:16.373 INFO:teuthology.orchestra.run.smithi044.stdout: Package Arch Version Repository Size 2024-09-17T08:05:16.373 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:05:16.373 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-09-17T08:05:16.374 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-volume noarch 2:18.2.4-855.g19e2a2be.el9 ceph-noarch 264 k 2024-09-17T08:05:16.374 INFO:teuthology.orchestra.run.smithi044.stdout:Installing dependencies: 2024-09-17T08:05:16.374 INFO:teuthology.orchestra.run.smithi044.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-09-17T08:05:16.374 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:16.374 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-09-17T08:05:16.374 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:05:16.374 INFO:teuthology.orchestra.run.smithi044.stdout:Install 2 Packages 2024-09-17T08:05:16.374 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:16.375 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 342 k 2024-09-17T08:05:16.375 INFO:teuthology.orchestra.run.smithi044.stdout:Installed size: 1.5 M 2024-09-17T08:05:16.375 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-09-17T08:05:16.382 INFO:teuthology.orchestra.run.smithi145.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 2.2 MB/s | 16 MB 00:07 2024-09-17T08:05:16.383 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:05:16.383 INFO:teuthology.orchestra.run.smithi145.stdout:Total 4.2 MB/s | 38 MB 00:09 2024-09-17T08:05:16.488 INFO:teuthology.orchestra.run.smithi044.stdout:(1/2): python3-packaging-20.9-5.el9.noarch.rpm 841 kB/s | 77 kB 00:00 2024-09-17T08:05:16.512 INFO:teuthology.orchestra.run.smithi152.stdout:Last metadata expiration check: 0:01:19 ago on Tue 17 Sep 2024 08:03:57 AM UTC. 2024-09-17T08:05:16.638 INFO:teuthology.orchestra.run.smithi044.stdout:(2/2): ceph-volume-18.2.4-855.g19e2a2be.el9.noa 1.1 MB/s | 264 kB 00:00 2024-09-17T08:05:16.638 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:05:16.639 INFO:teuthology.orchestra.run.smithi044.stdout:Total 1.3 MB/s | 342 kB 00:00 2024-09-17T08:05:16.645 INFO:teuthology.orchestra.run.smithi152.stdout:Dependencies resolved. 2024-09-17T08:05:16.646 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:05:16.646 INFO:teuthology.orchestra.run.smithi152.stdout: Package Arch Version Repository Size 2024-09-17T08:05:16.646 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:05:16.646 INFO:teuthology.orchestra.run.smithi152.stdout:Installing: 2024-09-17T08:05:16.646 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-mgr-cephadm noarch 2:18.2.4-855.g19e2a2be.el9 ceph-noarch 139 k 2024-09-17T08:05:16.646 INFO:teuthology.orchestra.run.smithi152.stdout:Installing dependencies: 2024-09-17T08:05:16.647 INFO:teuthology.orchestra.run.smithi152.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-09-17T08:05:16.647 INFO:teuthology.orchestra.run.smithi152.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-09-17T08:05:16.647 INFO:teuthology.orchestra.run.smithi152.stdout: python3-jinja2 noarch 2.11.3-6.el9 appstream 248 k 2024-09-17T08:05:16.647 INFO:teuthology.orchestra.run.smithi152.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-09-17T08:05:16.647 INFO:teuthology.orchestra.run.smithi152.stdout: python3-typing-extensions noarch 4.12.2-2.el9 epel 74 k 2024-09-17T08:05:16.647 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:16.647 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction Summary 2024-09-17T08:05:16.647 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:05:16.647 INFO:teuthology.orchestra.run.smithi152.stdout:Install 6 Packages 2024-09-17T08:05:16.647 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:16.648 INFO:teuthology.orchestra.run.smithi152.stdout:Total download size: 7.0 M 2024-09-17T08:05:16.648 INFO:teuthology.orchestra.run.smithi152.stdout:Installed size: 33 M 2024-09-17T08:05:16.648 INFO:teuthology.orchestra.run.smithi152.stdout:Downloading Packages: 2024-09-17T08:05:16.651 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-09-17T08:05:16.661 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-09-17T08:05:16.661 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-09-17T08:05:16.700 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-09-17T08:05:16.700 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-09-17T08:05:16.740 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-17T08:05:16.766 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-17T08:05:16.766 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-17T08:05:16.853 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-09-17T08:05:17.030 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-packaging-20.9-5.el9.noarch 1/2 2024-09-17T08:05:17.066 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-volume-2:18.2.4-855.g19e2a2be.el9.noarch 2/2 2024-09-17T08:05:17.083 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-volume-2:18.2.4-855.g19e2a2be.el9.noarch 2/2 2024-09-17T08:05:17.083 INFO:teuthology.orchestra.run.smithi044.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T08:05:17.083 INFO:teuthology.orchestra.run.smithi044.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-09-17T08:05:17.083 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:17.287 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-17T08:05:17.288 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-17T08:05:17.486 INFO:teuthology.orchestra.run.smithi152.stdout:(1/6): ceph-mgr-cephadm-18.2.4-855.g19e2a2be.el 648 kB/s | 139 kB 00:00 2024-09-17T08:05:17.553 INFO:teuthology.orchestra.run.smithi152.stdout:(2/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 10 MB/s | 548 kB 00:00 2024-09-17T08:05:17.586 INFO:teuthology.orchestra.run.smithi152.stdout:(3/6): python3-natsort-7.1.1-5.el9.noarch.rpm 1.7 MB/s | 58 kB 00:00 2024-09-17T08:05:17.620 INFO:teuthology.orchestra.run.smithi152.stdout:(4/6): python3-typing-extensions-4.12.2-2.el9.n 2.2 MB/s | 74 kB 00:00 2024-09-17T08:05:17.826 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-volume-2:18.2.4-855.g19e2a2be.el9.noarch 1/2 2024-09-17T08:05:18.053 INFO:teuthology.orchestra.run.smithi152.stdout:(5/6): python3-jinja2-2.11.3-6.el9.noarch.rpm 317 kB/s | 248 kB 00:00 2024-09-17T08:05:18.065 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-17T08:05:18.145 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 2/2 2024-09-17T08:05:18.145 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:18.145 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-09-17T08:05:18.145 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-volume-2:18.2.4-855.g19e2a2be.el9.noarch 2024-09-17T08:05:18.145 INFO:teuthology.orchestra.run.smithi044.stdout: python3-packaging-20.9-5.el9.noarch 2024-09-17T08:05:18.145 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:18.145 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-09-17T08:05:18.145 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-09-17T08:05:18.188 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : libquadmath-11.5.0-2.el9.x86_64 2/12 2024-09-17T08:05:18.288 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : libgfortran-11.5.0-2.el9.x86_64 3/12 2024-09-17T08:05:18.322 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-devel-3.9.19-8.el9.x86_64 4/12 2024-09-17T08:05:18.437 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install librados-devel 2024-09-17T08:05:18.509 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : openblas-0.3.26-2.el9.x86_64 5/12 2024-09-17T08:05:18.546 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : openblas-openmp-0.3.26-2.el9.x86_64 6/12 2024-09-17T08:05:18.620 INFO:teuthology.orchestra.run.smithi152.stdout:(6/6): python3-babel-2.9.1-2.el9.noarch.rpm 4.4 MB/s | 6.0 MB 00:01 2024-09-17T08:05:18.623 INFO:teuthology.orchestra.run.smithi152.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:05:18.624 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-09-17T08:05:18.624 INFO:teuthology.orchestra.run.smithi152.stdout:Total 3.5 MB/s | 7.0 MB 00:01 2024-09-17T08:05:18.697 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction check 2024-09-17T08:05:18.709 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction check succeeded. 2024-09-17T08:05:18.709 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction test 2024-09-17T08:05:18.809 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction test succeeded. 2024-09-17T08:05:18.810 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction 2024-09-17T08:05:19.044 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:01:30 ago on Tue 17 Sep 2024 08:03:49 AM UTC. 2024-09-17T08:05:19.114 INFO:teuthology.orchestra.run.smithi152.stdout: Preparing : 1/1 2024-09-17T08:05:19.181 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-09-17T08:05:19.182 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:05:19.182 INFO:teuthology.orchestra.run.smithi044.stdout: Package Arch Version Repo Size 2024-09-17T08:05:19.182 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:05:19.182 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-09-17T08:05:19.182 INFO:teuthology.orchestra.run.smithi044.stdout: librados-devel x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 126 k 2024-09-17T08:05:19.182 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:19.182 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-09-17T08:05:19.183 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:05:19.183 INFO:teuthology.orchestra.run.smithi044.stdout:Install 1 Package 2024-09-17T08:05:19.183 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:19.183 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 126 k 2024-09-17T08:05:19.183 INFO:teuthology.orchestra.run.smithi044.stdout:Installed size: 456 k 2024-09-17T08:05:19.183 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-09-17T08:05:19.267 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-09-17T08:05:19.295 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-typing-extensions-4.12.2-2.el9.noarch 1/6 2024-09-17T08:05:19.347 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-09-17T08:05:19.384 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-09-17T08:05:19.386 INFO:teuthology.orchestra.run.smithi044.stdout:librados-devel-18.2.4-855.g19e2a2be.el9.x86_64. 623 kB/s | 126 kB 00:00 2024-09-17T08:05:19.386 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:05:19.387 INFO:teuthology.orchestra.run.smithi044.stdout:Total 618 kB/s | 126 kB 00:00 2024-09-17T08:05:19.387 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-09-17T08:05:19.393 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-09-17T08:05:19.393 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-09-17T08:05:19.460 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-09-17T08:05:19.460 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-09-17T08:05:19.617 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-09-17T08:05:19.736 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : librados-devel-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:19.880 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-09-17T08:05:19.966 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-09-17T08:05:20.037 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-jinja2-2.11.3-6.el9.noarch 5/6 2024-09-17T08:05:20.067 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : ceph-mgr-cephadm-2:18.2.4-855.g19e2a2be.el9.noarch 6/6 2024-09-17T08:05:20.172 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: librados-devel-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:20.453 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : librados-devel-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:20.453 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:20.453 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-09-17T08:05:20.453 INFO:teuthology.orchestra.run.smithi044.stdout: librados-devel-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:05:20.453 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:20.453 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-09-17T08:05:20.645 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-09-17T08:05:20.722 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install libcephfs2 2024-09-17T08:05:20.908 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: ceph-mgr-cephadm-2:18.2.4-855.g19e2a2be.el9.noarch 6/6 2024-09-17T08:05:20.909 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : ceph-mgr-cephadm-2:18.2.4-855.g19e2a2be.el9.noarch 1/6 2024-09-17T08:05:20.909 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-09-17T08:05:20.909 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-jinja2-2.11.3-6.el9.noarch 3/6 2024-09-17T08:05:20.909 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-09-17T08:05:20.909 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-09-17T08:05:21.172 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-typing-extensions-4.12.2-2.el9.noarch 6/6 2024-09-17T08:05:21.172 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:21.172 INFO:teuthology.orchestra.run.smithi152.stdout:Installed: 2024-09-17T08:05:21.172 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-mgr-cephadm-2:18.2.4-855.g19e2a2be.el9.noarch 2024-09-17T08:05:21.172 INFO:teuthology.orchestra.run.smithi152.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-09-17T08:05:21.172 INFO:teuthology.orchestra.run.smithi152.stdout: python3-babel-2.9.1-2.el9.noarch 2024-09-17T08:05:21.172 INFO:teuthology.orchestra.run.smithi152.stdout: python3-jinja2-2.11.3-6.el9.noarch 2024-09-17T08:05:21.172 INFO:teuthology.orchestra.run.smithi152.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-09-17T08:05:21.172 INFO:teuthology.orchestra.run.smithi152.stdout: python3-typing-extensions-4.12.2-2.el9.noarch 2024-09-17T08:05:21.172 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:21.173 INFO:teuthology.orchestra.run.smithi152.stdout:Complete! 2024-09-17T08:05:21.333 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:01:32 ago on Tue 17 Sep 2024 08:03:49 AM UTC. 2024-09-17T08:05:21.430 INFO:teuthology.orchestra.run.smithi044.stdout:Package libcephfs2-2:18.2.4-855.g19e2a2be.el9.x86_64 is already installed. 2024-09-17T08:05:21.437 DEBUG:teuthology.orchestra.run.smithi152:> sudo yum -y install ceph-fuse 2024-09-17T08:05:21.477 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-09-17T08:05:21.478 INFO:teuthology.orchestra.run.smithi044.stdout:Nothing to do. 2024-09-17T08:05:21.478 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-09-17T08:05:21.542 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install libcephfs-devel 2024-09-17T08:05:21.674 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-09-17T08:05:21.704 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-mgr-diskprediction-local-2:18.2.4-855.g19e2a2 12/12 2024-09-17T08:05:22.025 INFO:teuthology.orchestra.run.smithi152.stdout:Last metadata expiration check: 0:01:25 ago on Tue 17 Sep 2024 08:03:57 AM UTC. 2024-09-17T08:05:22.145 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:01:33 ago on Tue 17 Sep 2024 08:03:49 AM UTC. 2024-09-17T08:05:22.157 INFO:teuthology.orchestra.run.smithi152.stdout:Dependencies resolved. 2024-09-17T08:05:22.158 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:05:22.158 INFO:teuthology.orchestra.run.smithi152.stdout: Package Arch Version Repository Size 2024-09-17T08:05:22.158 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:05:22.158 INFO:teuthology.orchestra.run.smithi152.stdout:Installing: 2024-09-17T08:05:22.158 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-fuse x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 852 k 2024-09-17T08:05:22.158 INFO:teuthology.orchestra.run.smithi152.stdout:Installing dependencies: 2024-09-17T08:05:22.158 INFO:teuthology.orchestra.run.smithi152.stdout: fuse x86_64 2.9.9-16.el9 baseos 80 k 2024-09-17T08:05:22.158 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:22.158 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction Summary 2024-09-17T08:05:22.158 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:05:22.158 INFO:teuthology.orchestra.run.smithi152.stdout:Install 2 Packages 2024-09-17T08:05:22.158 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:22.159 INFO:teuthology.orchestra.run.smithi152.stdout:Total download size: 932 k 2024-09-17T08:05:22.159 INFO:teuthology.orchestra.run.smithi152.stdout:Installed size: 2.7 M 2024-09-17T08:05:22.159 INFO:teuthology.orchestra.run.smithi152.stdout:Downloading Packages: 2024-09-17T08:05:22.284 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-09-17T08:05:22.285 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:05:22.285 INFO:teuthology.orchestra.run.smithi044.stdout: Package Arch Version Repo Size 2024-09-17T08:05:22.285 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:05:22.285 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-09-17T08:05:22.285 INFO:teuthology.orchestra.run.smithi044.stdout: libcephfs-devel x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 31 k 2024-09-17T08:05:22.285 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:22.285 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-09-17T08:05:22.285 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:05:22.285 INFO:teuthology.orchestra.run.smithi044.stdout:Install 1 Package 2024-09-17T08:05:22.285 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:22.286 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 31 k 2024-09-17T08:05:22.286 INFO:teuthology.orchestra.run.smithi044.stdout:Installed size: 139 k 2024-09-17T08:05:22.286 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-09-17T08:05:22.440 INFO:teuthology.orchestra.run.smithi044.stdout:libcephfs-devel-18.2.4-855.g19e2a2be.el9.x86_64 201 kB/s | 31 kB 00:00 2024-09-17T08:05:22.441 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:05:22.441 INFO:teuthology.orchestra.run.smithi044.stdout:Total 199 kB/s | 31 kB 00:00 2024-09-17T08:05:22.441 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-09-17T08:05:22.445 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-09-17T08:05:22.445 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-09-17T08:05:22.454 INFO:teuthology.orchestra.run.smithi152.stdout:(1/2): fuse-2.9.9-16.el9.x86_64.rpm 502 kB/s | 80 kB 00:00 2024-09-17T08:05:22.464 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-09-17T08:05:22.464 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-09-17T08:05:22.554 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-09-17T08:05:22.588 INFO:teuthology.orchestra.run.smithi152.stdout:(2/2): ceph-fuse-18.2.4-855.g19e2a2be.el9.x86_6 2.8 MB/s | 852 kB 00:00 2024-09-17T08:05:22.588 INFO:teuthology.orchestra.run.smithi152.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:05:22.589 INFO:teuthology.orchestra.run.smithi152.stdout:Total 2.1 MB/s | 932 kB 00:00 2024-09-17T08:05:22.600 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction check 2024-09-17T08:05:22.622 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction check succeeded. 2024-09-17T08:05:22.623 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction test 2024-09-17T08:05:22.683 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : libcephfs-devel-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:22.703 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction test succeeded. 2024-09-17T08:05:22.704 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction 2024-09-17T08:05:22.891 INFO:teuthology.orchestra.run.smithi152.stdout: Preparing : 1/1 2024-09-17T08:05:23.028 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : fuse-2.9.9-16.el9.x86_64 1/2 2024-09-17T08:05:23.073 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: libcephfs-devel-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:23.113 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : ceph-fuse-2:18.2.4-855.g19e2a2be.el9.x86_64 2/2 2024-09-17T08:05:23.319 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : libcephfs-devel-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:23.320 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:23.320 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-09-17T08:05:23.320 INFO:teuthology.orchestra.run.smithi044.stdout: libcephfs-devel-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:05:23.320 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:23.320 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-09-17T08:05:23.492 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install librados2 2024-09-17T08:05:23.773 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: ceph-fuse-2:18.2.4-855.g19e2a2be.el9.x86_64 2/2 2024-09-17T08:05:23.773 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : ceph-fuse-2:18.2.4-855.g19e2a2be.el9.x86_64 1/2 2024-09-17T08:05:24.084 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : fuse-2.9.9-16.el9.x86_64 2/2 2024-09-17T08:05:24.084 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:24.084 INFO:teuthology.orchestra.run.smithi152.stdout:Installed: 2024-09-17T08:05:24.084 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-fuse-2:18.2.4-855.g19e2a2be.el9.x86_64 fuse-2.9.9-16.el9.x86_64 2024-09-17T08:05:24.084 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:24.085 INFO:teuthology.orchestra.run.smithi152.stdout:Complete! 2024-09-17T08:05:24.098 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:01:35 ago on Tue 17 Sep 2024 08:03:49 AM UTC. 2024-09-17T08:05:24.191 INFO:teuthology.orchestra.run.smithi044.stdout:Package librados2-2:18.2.4-855.g19e2a2be.el9.x86_64 is already installed. 2024-09-17T08:05:24.236 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-09-17T08:05:24.238 INFO:teuthology.orchestra.run.smithi044.stdout:Nothing to do. 2024-09-17T08:05:24.238 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-09-17T08:05:24.260 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:18.2.4-855.g19e2a2 12/12 2024-09-17T08:05:24.261 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-mgr-diskprediction-local-2:18.2.4-855.g19e2a2 1/12 2024-09-17T08:05:24.261 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : libgfortran-11.5.0-2.el9.x86_64 2/12 2024-09-17T08:05:24.261 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : libquadmath-11.5.0-2.el9.x86_64 3/12 2024-09-17T08:05:24.261 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-09-17T08:05:24.261 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-09-17T08:05:24.261 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-09-17T08:05:24.261 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : openblas-0.3.26-2.el9.x86_64 7/12 2024-09-17T08:05:24.261 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : openblas-openmp-0.3.26-2.el9.x86_64 8/12 2024-09-17T08:05:24.261 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-devel-3.9.19-8.el9.x86_64 9/12 2024-09-17T08:05:24.261 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-09-17T08:05:24.261 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-09-17T08:05:24.298 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install librbd1 2024-09-17T08:05:24.335 DEBUG:teuthology.orchestra.run.smithi152:> sudo yum -y install ceph-volume 2024-09-17T08:05:24.672 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-09-17T08:05:24.673 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:24.673 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-17T08:05:24.673 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-mgr-diskprediction-local-2:18.2.4-855.g19e2a2be.el9.noarch 2024-09-17T08:05:24.673 INFO:teuthology.orchestra.run.smithi145.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-09-17T08:05:24.673 INFO:teuthology.orchestra.run.smithi145.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-09-17T08:05:24.673 INFO:teuthology.orchestra.run.smithi145.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-09-17T08:05:24.673 INFO:teuthology.orchestra.run.smithi145.stdout: libgfortran-11.5.0-2.el9.x86_64 2024-09-17T08:05:24.673 INFO:teuthology.orchestra.run.smithi145.stdout: libquadmath-11.5.0-2.el9.x86_64 2024-09-17T08:05:24.673 INFO:teuthology.orchestra.run.smithi145.stdout: openblas-0.3.26-2.el9.x86_64 2024-09-17T08:05:24.673 INFO:teuthology.orchestra.run.smithi145.stdout: openblas-openmp-0.3.26-2.el9.x86_64 2024-09-17T08:05:24.673 INFO:teuthology.orchestra.run.smithi145.stdout: python3-devel-3.9.19-8.el9.x86_64 2024-09-17T08:05:24.673 INFO:teuthology.orchestra.run.smithi145.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-09-17T08:05:24.673 INFO:teuthology.orchestra.run.smithi145.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-09-17T08:05:24.674 INFO:teuthology.orchestra.run.smithi145.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-09-17T08:05:24.674 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:24.674 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-17T08:05:24.905 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:01:35 ago on Tue 17 Sep 2024 08:03:49 AM UTC. 2024-09-17T08:05:24.931 INFO:teuthology.orchestra.run.smithi152.stdout:Last metadata expiration check: 0:01:27 ago on Tue 17 Sep 2024 08:03:57 AM UTC. 2024-09-17T08:05:24.997 INFO:teuthology.orchestra.run.smithi044.stdout:Package librbd1-2:18.2.4-855.g19e2a2be.el9.x86_64 is already installed. 2024-09-17T08:05:25.042 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-09-17T08:05:25.043 INFO:teuthology.orchestra.run.smithi044.stdout:Nothing to do. 2024-09-17T08:05:25.043 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-09-17T08:05:25.057 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install ceph-mgr-rook 2024-09-17T08:05:25.070 INFO:teuthology.orchestra.run.smithi152.stdout:Dependencies resolved. 2024-09-17T08:05:25.070 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:05:25.070 INFO:teuthology.orchestra.run.smithi152.stdout: Package Arch Version Repository Size 2024-09-17T08:05:25.070 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:05:25.070 INFO:teuthology.orchestra.run.smithi152.stdout:Installing: 2024-09-17T08:05:25.070 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-volume noarch 2:18.2.4-855.g19e2a2be.el9 ceph-noarch 264 k 2024-09-17T08:05:25.071 INFO:teuthology.orchestra.run.smithi152.stdout:Installing dependencies: 2024-09-17T08:05:25.071 INFO:teuthology.orchestra.run.smithi152.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-09-17T08:05:25.071 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:25.071 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction Summary 2024-09-17T08:05:25.071 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:05:25.071 INFO:teuthology.orchestra.run.smithi152.stdout:Install 2 Packages 2024-09-17T08:05:25.071 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:25.071 INFO:teuthology.orchestra.run.smithi152.stdout:Total download size: 342 k 2024-09-17T08:05:25.072 INFO:teuthology.orchestra.run.smithi152.stdout:Installed size: 1.5 M 2024-09-17T08:05:25.072 INFO:teuthology.orchestra.run.smithi152.stdout:Downloading Packages: 2024-09-17T08:05:25.109 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install python3-rados 2024-09-17T08:05:25.351 INFO:teuthology.orchestra.run.smithi152.stdout:(1/2): python3-packaging-20.9-5.el9.noarch.rpm 510 kB/s | 77 kB 00:00 2024-09-17T08:05:25.417 INFO:teuthology.orchestra.run.smithi152.stdout:(2/2): ceph-volume-18.2.4-855.g19e2a2be.el9.noa 1.2 MB/s | 264 kB 00:00 2024-09-17T08:05:25.418 INFO:teuthology.orchestra.run.smithi152.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:05:25.418 INFO:teuthology.orchestra.run.smithi152.stdout:Total 984 kB/s | 342 kB 00:00 2024-09-17T08:05:25.430 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction check 2024-09-17T08:05:25.440 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction check succeeded. 2024-09-17T08:05:25.440 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction test 2024-09-17T08:05:25.476 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction test succeeded. 2024-09-17T08:05:25.476 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction 2024-09-17T08:05:25.618 INFO:teuthology.orchestra.run.smithi152.stdout: Preparing : 1/1 2024-09-17T08:05:25.642 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:01:16 ago on Tue 17 Sep 2024 08:04:09 AM UTC. 2024-09-17T08:05:25.718 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:01:36 ago on Tue 17 Sep 2024 08:03:49 AM UTC. 2024-09-17T08:05:25.777 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-17T08:05:25.778 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:05:25.778 INFO:teuthology.orchestra.run.smithi145.stdout: Package Arch Version Repository Size 2024-09-17T08:05:25.778 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:05:25.778 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-17T08:05:25.779 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-mgr-rook noarch 2:18.2.4-855.g19e2a2be.el9 ceph-noarch 49 k 2024-09-17T08:05:25.779 INFO:teuthology.orchestra.run.smithi145.stdout:Installing dependencies: 2024-09-17T08:05:25.779 INFO:teuthology.orchestra.run.smithi145.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-09-17T08:05:25.779 INFO:teuthology.orchestra.run.smithi145.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2024-09-17T08:05:25.779 INFO:teuthology.orchestra.run.smithi145.stdout: python3-google-auth noarch 1:2.34.0-1.el9 epel 220 k 2024-09-17T08:05:25.779 INFO:teuthology.orchestra.run.smithi145.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-09-17T08:05:25.779 INFO:teuthology.orchestra.run.smithi145.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-09-17T08:05:25.779 INFO:teuthology.orchestra.run.smithi145.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-09-17T08:05:25.779 INFO:teuthology.orchestra.run.smithi145.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-09-17T08:05:25.779 INFO:teuthology.orchestra.run.smithi145.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-09-17T08:05:25.779 INFO:teuthology.orchestra.run.smithi145.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-09-17T08:05:25.780 INFO:teuthology.orchestra.run.smithi145.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-09-17T08:05:25.780 INFO:teuthology.orchestra.run.smithi145.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-09-17T08:05:25.780 INFO:teuthology.orchestra.run.smithi145.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-09-17T08:05:25.780 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:25.780 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-17T08:05:25.780 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:05:25.780 INFO:teuthology.orchestra.run.smithi145.stdout:Install 13 Packages 2024-09-17T08:05:25.780 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:25.781 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 2.2 M 2024-09-17T08:05:25.781 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 26 M 2024-09-17T08:05:25.781 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-17T08:05:25.803 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : python3-packaging-20.9-5.el9.noarch 1/2 2024-09-17T08:05:25.812 INFO:teuthology.orchestra.run.smithi044.stdout:Package python3-rados-2:18.2.4-855.g19e2a2be.el9.x86_64 is already installed. 2024-09-17T08:05:25.853 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : ceph-volume-2:18.2.4-855.g19e2a2be.el9.noarch 2/2 2024-09-17T08:05:25.858 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-09-17T08:05:25.860 INFO:teuthology.orchestra.run.smithi044.stdout:Nothing to do. 2024-09-17T08:05:25.860 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-09-17T08:05:25.869 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: ceph-volume-2:18.2.4-855.g19e2a2be.el9.noarch 2/2 2024-09-17T08:05:25.869 INFO:teuthology.orchestra.run.smithi152.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T08:05:25.869 INFO:teuthology.orchestra.run.smithi152.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-09-17T08:05:25.869 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:25.923 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install python3-rgw 2024-09-17T08:05:26.329 INFO:teuthology.orchestra.run.smithi145.stdout:(1/13): python3-jsonpatch-1.21-16.el9.noarch.rp 190 kB/s | 26 kB 00:00 2024-09-17T08:05:26.354 INFO:teuthology.orchestra.run.smithi145.stdout:(2/13): python3-jsonpointer-2.0-4.el9.noarch.rp 120 kB/s | 19 kB 00:00 2024-09-17T08:05:26.379 INFO:teuthology.orchestra.run.smithi145.stdout:(3/13): ceph-mgr-rook-18.2.4-855.g19e2a2be.el9. 266 kB/s | 49 kB 00:00 2024-09-17T08:05:26.505 INFO:teuthology.orchestra.run.smithi145.stdout:(4/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.0 MB/s | 159 kB 00:00 2024-09-17T08:05:26.525 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:01:37 ago on Tue 17 Sep 2024 08:03:49 AM UTC. 2024-09-17T08:05:26.530 INFO:teuthology.orchestra.run.smithi145.stdout:(5/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 1.1 MB/s | 222 kB 00:00 2024-09-17T08:05:26.547 INFO:teuthology.orchestra.run.smithi145.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 1.2 MB/s | 54 kB 00:00 2024-09-17T08:05:26.586 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : ceph-volume-2:18.2.4-855.g19e2a2be.el9.noarch 1/2 2024-09-17T08:05:26.589 INFO:teuthology.orchestra.run.smithi145.stdout:(7/13): python3-pyasn1-modules-0.4.8-6.el9.noar 1.3 MB/s | 279 kB 00:00 2024-09-17T08:05:26.606 INFO:teuthology.orchestra.run.smithi145.stdout:(8/13): python3-cachetools-4.2.4-1.el9.noarch.r 425 kB/s | 32 kB 00:00 2024-09-17T08:05:26.620 INFO:teuthology.orchestra.run.smithi044.stdout:Package python3-rgw-2:18.2.4-855.g19e2a2be.el9.x86_64 is already installed. 2024-09-17T08:05:26.631 INFO:teuthology.orchestra.run.smithi145.stdout:(9/13): python3-certifi-2023.05.07-4.el9.noarch 183 kB/s | 14 kB 00:00 2024-09-17T08:05:26.656 INFO:teuthology.orchestra.run.smithi145.stdout:(10/13): python3-rsa-4.9-2.el9.noarch.rpm 2.5 MB/s | 59 kB 00:00 2024-09-17T08:05:26.666 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-09-17T08:05:26.668 INFO:teuthology.orchestra.run.smithi044.stdout:Nothing to do. 2024-09-17T08:05:26.668 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-09-17T08:05:26.690 INFO:teuthology.orchestra.run.smithi145.stdout:(11/13): python3-websocket-client-1.2.3-2.el9.n 2.6 MB/s | 90 kB 00:00 2024-09-17T08:05:26.715 INFO:teuthology.orchestra.run.smithi145.stdout:(12/13): python3-google-auth-2.34.0-1.el9.noarc 1.7 MB/s | 220 kB 00:00 2024-09-17T08:05:26.728 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install python3-cephfs 2024-09-17T08:05:26.757 INFO:teuthology.orchestra.run.smithi145.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 7.1 MB/s | 1.0 MB 00:00 2024-09-17T08:05:26.760 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:05:26.760 INFO:teuthology.orchestra.run.smithi145.stdout:Total 2.3 MB/s | 2.2 MB 00:00 2024-09-17T08:05:26.822 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-17T08:05:26.837 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-17T08:05:26.837 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-17T08:05:26.922 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 2/2 2024-09-17T08:05:26.922 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:26.922 INFO:teuthology.orchestra.run.smithi152.stdout:Installed: 2024-09-17T08:05:26.922 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-volume-2:18.2.4-855.g19e2a2be.el9.noarch 2024-09-17T08:05:26.922 INFO:teuthology.orchestra.run.smithi152.stdout: python3-packaging-20.9-5.el9.noarch 2024-09-17T08:05:26.922 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:26.923 INFO:teuthology.orchestra.run.smithi152.stdout:Complete! 2024-09-17T08:05:26.926 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-17T08:05:26.927 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-17T08:05:27.232 DEBUG:teuthology.orchestra.run.smithi152:> sudo yum -y install librados-devel 2024-09-17T08:05:27.333 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:01:38 ago on Tue 17 Sep 2024 08:03:49 AM UTC. 2024-09-17T08:05:27.426 INFO:teuthology.orchestra.run.smithi044.stdout:Package python3-cephfs-2:18.2.4-855.g19e2a2be.el9.x86_64 is already installed. 2024-09-17T08:05:27.439 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-17T08:05:27.472 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-09-17T08:05:27.473 INFO:teuthology.orchestra.run.smithi044.stdout:Nothing to do. 2024-09-17T08:05:27.473 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-09-17T08:05:27.536 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install python3-rbd 2024-09-17T08:05:27.630 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-09-17T08:05:27.692 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-09-17T08:05:27.748 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-09-17T08:05:27.825 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-09-17T08:05:27.826 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 5/13 2024-09-17T08:05:27.826 INFO:teuthology.orchestra.run.smithi152.stdout:Last metadata expiration check: 0:01:30 ago on Tue 17 Sep 2024 08:03:57 AM UTC. 2024-09-17T08:05:27.929 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-09-17T08:05:27.959 INFO:teuthology.orchestra.run.smithi152.stdout:Dependencies resolved. 2024-09-17T08:05:27.959 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:05:27.959 INFO:teuthology.orchestra.run.smithi152.stdout: Package Arch Version Repo Size 2024-09-17T08:05:27.959 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:05:27.959 INFO:teuthology.orchestra.run.smithi152.stdout:Installing: 2024-09-17T08:05:27.959 INFO:teuthology.orchestra.run.smithi152.stdout: librados-devel x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 126 k 2024-09-17T08:05:27.959 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:27.959 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction Summary 2024-09-17T08:05:27.960 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:05:27.960 INFO:teuthology.orchestra.run.smithi152.stdout:Install 1 Package 2024-09-17T08:05:27.960 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:27.960 INFO:teuthology.orchestra.run.smithi152.stdout:Total download size: 126 k 2024-09-17T08:05:27.960 INFO:teuthology.orchestra.run.smithi152.stdout:Installed size: 456 k 2024-09-17T08:05:27.960 INFO:teuthology.orchestra.run.smithi152.stdout:Downloading Packages: 2024-09-17T08:05:28.038 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-google-auth-1:2.34.0-1.el9.noarch 7/13 2024-09-17T08:05:28.086 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-09-17T08:05:28.134 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:01:39 ago on Tue 17 Sep 2024 08:03:49 AM UTC. 2024-09-17T08:05:28.173 INFO:teuthology.orchestra.run.smithi152.stdout:librados-devel-18.2.4-855.g19e2a2be.el9.x86_64. 595 kB/s | 126 kB 00:00 2024-09-17T08:05:28.173 INFO:teuthology.orchestra.run.smithi152.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:05:28.174 INFO:teuthology.orchestra.run.smithi152.stdout:Total 591 kB/s | 126 kB 00:00 2024-09-17T08:05:28.174 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction check 2024-09-17T08:05:28.179 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction check succeeded. 2024-09-17T08:05:28.179 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction test 2024-09-17T08:05:28.226 INFO:teuthology.orchestra.run.smithi044.stdout:Package python3-rbd-2:18.2.4-855.g19e2a2be.el9.x86_64 is already installed. 2024-09-17T08:05:28.242 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction test succeeded. 2024-09-17T08:05:28.243 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction 2024-09-17T08:05:28.271 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-09-17T08:05:28.272 INFO:teuthology.orchestra.run.smithi044.stdout:Nothing to do. 2024-09-17T08:05:28.272 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-09-17T08:05:28.337 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install rbd-fuse 2024-09-17T08:05:28.398 INFO:teuthology.orchestra.run.smithi152.stdout: Preparing : 1/1 2024-09-17T08:05:28.505 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : librados-devel-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:28.807 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-09-17T08:05:28.858 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-09-17T08:05:28.900 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-09-17T08:05:28.940 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:01:39 ago on Tue 17 Sep 2024 08:03:49 AM UTC. 2024-09-17T08:05:28.947 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-09-17T08:05:28.969 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-mgr-rook-2:18.2.4-855.g19e2a2be.el9.noarch 13/13 2024-09-17T08:05:28.977 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: librados-devel-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:29.076 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-09-17T08:05:29.077 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:05:29.077 INFO:teuthology.orchestra.run.smithi044.stdout: Package Architecture Version Repository Size 2024-09-17T08:05:29.077 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:05:29.077 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-09-17T08:05:29.078 INFO:teuthology.orchestra.run.smithi044.stdout: rbd-fuse x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 87 k 2024-09-17T08:05:29.078 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:29.078 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-09-17T08:05:29.078 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:05:29.078 INFO:teuthology.orchestra.run.smithi044.stdout:Install 1 Package 2024-09-17T08:05:29.078 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:29.078 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 87 k 2024-09-17T08:05:29.078 INFO:teuthology.orchestra.run.smithi044.stdout:Installed size: 227 k 2024-09-17T08:05:29.078 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-09-17T08:05:29.254 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : librados-devel-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:29.255 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:29.255 INFO:teuthology.orchestra.run.smithi152.stdout:Installed: 2024-09-17T08:05:29.255 INFO:teuthology.orchestra.run.smithi152.stdout: librados-devel-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:05:29.255 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:29.255 INFO:teuthology.orchestra.run.smithi152.stdout:Complete! 2024-09-17T08:05:29.269 INFO:teuthology.orchestra.run.smithi044.stdout:rbd-fuse-18.2.4-855.g19e2a2be.el9.x86_64.rpm 454 kB/s | 87 kB 00:00 2024-09-17T08:05:29.269 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:05:29.270 INFO:teuthology.orchestra.run.smithi044.stdout:Total 451 kB/s | 87 kB 00:00 2024-09-17T08:05:29.270 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-09-17T08:05:29.277 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-09-17T08:05:29.277 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-09-17T08:05:29.343 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-09-17T08:05:29.344 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-09-17T08:05:29.499 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-09-17T08:05:29.516 DEBUG:teuthology.orchestra.run.smithi152:> sudo yum -y install libcephfs2 2024-09-17T08:05:29.595 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : rbd-fuse-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:29.697 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-mgr-rook-2:18.2.4-855.g19e2a2be.el9.noarch 13/13 2024-09-17T08:05:29.697 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-mgr-rook-2:18.2.4-855.g19e2a2be.el9.noarch 1/13 2024-09-17T08:05:29.698 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-09-17T08:05:29.698 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-09-17T08:05:29.698 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-09-17T08:05:29.698 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-09-17T08:05:29.698 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-09-17T08:05:29.698 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-09-17T08:05:29.698 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-09-17T08:05:29.698 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 9/13 2024-09-17T08:05:29.698 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-google-auth-1:2.34.0-1.el9.noarch 10/13 2024-09-17T08:05:29.698 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-09-17T08:05:29.698 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-09-17T08:05:29.965 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: rbd-fuse-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:30.027 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-09-17T08:05:30.028 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:30.028 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-17T08:05:30.028 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-mgr-rook-2:18.2.4-855.g19e2a2be.el9.noarch 2024-09-17T08:05:30.028 INFO:teuthology.orchestra.run.smithi145.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-09-17T08:05:30.028 INFO:teuthology.orchestra.run.smithi145.stdout: python3-certifi-2023.05.07-4.el9.noarch 2024-09-17T08:05:30.028 INFO:teuthology.orchestra.run.smithi145.stdout: python3-google-auth-1:2.34.0-1.el9.noarch 2024-09-17T08:05:30.028 INFO:teuthology.orchestra.run.smithi145.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-09-17T08:05:30.028 INFO:teuthology.orchestra.run.smithi145.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-09-17T08:05:30.028 INFO:teuthology.orchestra.run.smithi145.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-09-17T08:05:30.028 INFO:teuthology.orchestra.run.smithi145.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-09-17T08:05:30.028 INFO:teuthology.orchestra.run.smithi145.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-09-17T08:05:30.029 INFO:teuthology.orchestra.run.smithi145.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-09-17T08:05:30.029 INFO:teuthology.orchestra.run.smithi145.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-09-17T08:05:30.029 INFO:teuthology.orchestra.run.smithi145.stdout: python3-rsa-4.9-2.el9.noarch 2024-09-17T08:05:30.029 INFO:teuthology.orchestra.run.smithi145.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-09-17T08:05:30.029 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:30.029 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-17T08:05:30.110 INFO:teuthology.orchestra.run.smithi152.stdout:Last metadata expiration check: 0:01:33 ago on Tue 17 Sep 2024 08:03:57 AM UTC. 2024-09-17T08:05:30.202 INFO:teuthology.orchestra.run.smithi152.stdout:Package libcephfs2-2:18.2.4-855.g19e2a2be.el9.x86_64 is already installed. 2024-09-17T08:05:30.209 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : rbd-fuse-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:30.210 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:30.210 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-09-17T08:05:30.210 INFO:teuthology.orchestra.run.smithi044.stdout: rbd-fuse-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:05:30.210 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:30.210 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-09-17T08:05:30.248 INFO:teuthology.orchestra.run.smithi152.stdout:Dependencies resolved. 2024-09-17T08:05:30.250 INFO:teuthology.orchestra.run.smithi152.stdout:Nothing to do. 2024-09-17T08:05:30.250 INFO:teuthology.orchestra.run.smithi152.stdout:Complete! 2024-09-17T08:05:30.319 DEBUG:teuthology.orchestra.run.smithi152:> sudo yum -y install libcephfs-devel 2024-09-17T08:05:30.330 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install ceph-mgr-cephadm 2024-09-17T08:05:30.447 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install rbd-mirror 2024-09-17T08:05:30.896 INFO:teuthology.orchestra.run.smithi152.stdout:Last metadata expiration check: 0:01:33 ago on Tue 17 Sep 2024 08:03:57 AM UTC. 2024-09-17T08:05:30.909 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:01:21 ago on Tue 17 Sep 2024 08:04:09 AM UTC. 2024-09-17T08:05:31.029 INFO:teuthology.orchestra.run.smithi152.stdout:Dependencies resolved. 2024-09-17T08:05:31.030 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:05:31.030 INFO:teuthology.orchestra.run.smithi152.stdout: Package Arch Version Repo Size 2024-09-17T08:05:31.030 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:05:31.030 INFO:teuthology.orchestra.run.smithi152.stdout:Installing: 2024-09-17T08:05:31.030 INFO:teuthology.orchestra.run.smithi152.stdout: libcephfs-devel x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 31 k 2024-09-17T08:05:31.030 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:31.030 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction Summary 2024-09-17T08:05:31.030 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:05:31.030 INFO:teuthology.orchestra.run.smithi152.stdout:Install 1 Package 2024-09-17T08:05:31.030 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:31.031 INFO:teuthology.orchestra.run.smithi152.stdout:Total download size: 31 k 2024-09-17T08:05:31.031 INFO:teuthology.orchestra.run.smithi152.stdout:Installed size: 139 k 2024-09-17T08:05:31.031 INFO:teuthology.orchestra.run.smithi152.stdout:Downloading Packages: 2024-09-17T08:05:31.041 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-17T08:05:31.042 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:05:31.042 INFO:teuthology.orchestra.run.smithi145.stdout: Package Arch Version Repository Size 2024-09-17T08:05:31.042 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:05:31.043 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-17T08:05:31.043 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-mgr-cephadm noarch 2:18.2.4-855.g19e2a2be.el9 ceph-noarch 139 k 2024-09-17T08:05:31.043 INFO:teuthology.orchestra.run.smithi145.stdout:Installing dependencies: 2024-09-17T08:05:31.043 INFO:teuthology.orchestra.run.smithi145.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-09-17T08:05:31.043 INFO:teuthology.orchestra.run.smithi145.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-09-17T08:05:31.043 INFO:teuthology.orchestra.run.smithi145.stdout: python3-jinja2 noarch 2.11.3-6.el9 appstream 248 k 2024-09-17T08:05:31.043 INFO:teuthology.orchestra.run.smithi145.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-09-17T08:05:31.043 INFO:teuthology.orchestra.run.smithi145.stdout: python3-typing-extensions noarch 4.12.2-2.el9 epel 74 k 2024-09-17T08:05:31.043 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:31.043 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-17T08:05:31.043 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:05:31.043 INFO:teuthology.orchestra.run.smithi145.stdout:Install 6 Packages 2024-09-17T08:05:31.044 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:31.044 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 7.0 M 2024-09-17T08:05:31.044 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 33 M 2024-09-17T08:05:31.044 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-17T08:05:31.059 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:01:42 ago on Tue 17 Sep 2024 08:03:49 AM UTC. 2024-09-17T08:05:31.185 INFO:teuthology.orchestra.run.smithi152.stdout:libcephfs-devel-18.2.4-855.g19e2a2be.el9.x86_64 202 kB/s | 31 kB 00:00 2024-09-17T08:05:31.185 INFO:teuthology.orchestra.run.smithi152.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:05:31.185 INFO:teuthology.orchestra.run.smithi152.stdout:Total 200 kB/s | 31 kB 00:00 2024-09-17T08:05:31.186 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction check 2024-09-17T08:05:31.189 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction check succeeded. 2024-09-17T08:05:31.189 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction test 2024-09-17T08:05:31.201 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-09-17T08:05:31.202 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:05:31.202 INFO:teuthology.orchestra.run.smithi044.stdout: Package Arch Version Repo Size 2024-09-17T08:05:31.202 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:05:31.202 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-09-17T08:05:31.202 INFO:teuthology.orchestra.run.smithi044.stdout: rbd-mirror x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 3.0 M 2024-09-17T08:05:31.202 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:31.202 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-09-17T08:05:31.202 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:05:31.202 INFO:teuthology.orchestra.run.smithi044.stdout:Install 1 Package 2024-09-17T08:05:31.203 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:31.203 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 3.0 M 2024-09-17T08:05:31.203 INFO:teuthology.orchestra.run.smithi044.stdout:Installed size: 12 M 2024-09-17T08:05:31.203 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-09-17T08:05:31.204 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction test succeeded. 2024-09-17T08:05:31.205 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction 2024-09-17T08:05:31.296 INFO:teuthology.orchestra.run.smithi152.stdout: Preparing : 1/1 2024-09-17T08:05:31.406 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : libcephfs-devel-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:31.547 INFO:teuthology.orchestra.run.smithi044.stdout:rbd-mirror-18.2.4-855.g19e2a2be.el9.x86_64.rpm 8.7 MB/s | 3.0 MB 00:00 2024-09-17T08:05:31.548 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:05:31.548 INFO:teuthology.orchestra.run.smithi044.stdout:Total 8.7 MB/s | 3.0 MB 00:00 2024-09-17T08:05:31.549 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-09-17T08:05:31.558 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-09-17T08:05:31.558 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-09-17T08:05:31.642 INFO:teuthology.orchestra.run.smithi145.stdout:(1/6): ceph-mgr-cephadm-18.2.4-855.g19e2a2be.el 746 kB/s | 139 kB 00:00 2024-09-17T08:05:31.644 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-09-17T08:05:31.644 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-09-17T08:05:31.692 INFO:teuthology.orchestra.run.smithi145.stdout:(2/6): python3-jinja2-2.11.3-6.el9.noarch.rpm 1.0 MB/s | 248 kB 00:00 2024-09-17T08:05:31.734 INFO:teuthology.orchestra.run.smithi145.stdout:(3/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 5.8 MB/s | 548 kB 00:00 2024-09-17T08:05:31.759 INFO:teuthology.orchestra.run.smithi145.stdout:(4/6): python3-typing-extensions-4.12.2-2.el9.n 3.2 MB/s | 74 kB 00:00 2024-09-17T08:05:31.771 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: libcephfs-devel-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:31.784 INFO:teuthology.orchestra.run.smithi145.stdout:(5/6): python3-natsort-7.1.1-5.el9.noarch.rpm 627 kB/s | 58 kB 00:00 2024-09-17T08:05:31.995 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : libcephfs-devel-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:31.995 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:31.996 INFO:teuthology.orchestra.run.smithi152.stdout:Installed: 2024-09-17T08:05:31.996 INFO:teuthology.orchestra.run.smithi152.stdout: libcephfs-devel-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:05:31.996 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:31.996 INFO:teuthology.orchestra.run.smithi152.stdout:Complete! 2024-09-17T08:05:32.084 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-09-17T08:05:32.157 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : rbd-mirror-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:32.184 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: rbd-mirror-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:32.184 INFO:teuthology.orchestra.run.smithi044.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T08:05:32.184 INFO:teuthology.orchestra.run.smithi044.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-09-17T08:05:32.184 INFO:teuthology.orchestra.run.smithi044.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-17T08:05:32.184 INFO:teuthology.orchestra.run.smithi044.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-17T08:05:32.184 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:32.185 DEBUG:teuthology.orchestra.run.smithi152:> sudo yum -y install librados2 2024-09-17T08:05:32.764 INFO:teuthology.orchestra.run.smithi152.stdout:Last metadata expiration check: 0:01:35 ago on Tue 17 Sep 2024 08:03:57 AM UTC. 2024-09-17T08:05:32.853 INFO:teuthology.orchestra.run.smithi152.stdout:Package librados2-2:18.2.4-855.g19e2a2be.el9.x86_64 is already installed. 2024-09-17T08:05:32.895 INFO:teuthology.orchestra.run.smithi152.stdout:Dependencies resolved. 2024-09-17T08:05:32.896 INFO:teuthology.orchestra.run.smithi152.stdout:Nothing to do. 2024-09-17T08:05:32.896 INFO:teuthology.orchestra.run.smithi152.stdout:Complete! 2024-09-17T08:05:32.968 DEBUG:teuthology.orchestra.run.smithi152:> sudo yum -y install librbd1 2024-09-17T08:05:33.433 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : rbd-mirror-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:33.433 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:33.433 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-09-17T08:05:33.433 INFO:teuthology.orchestra.run.smithi044.stdout: rbd-mirror-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:05:33.433 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:33.433 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-09-17T08:05:33.548 INFO:teuthology.orchestra.run.smithi152.stdout:Last metadata expiration check: 0:01:36 ago on Tue 17 Sep 2024 08:03:57 AM UTC. 2024-09-17T08:05:33.576 INFO:teuthology.orchestra.run.smithi145.stdout:(6/6): python3-babel-2.9.1-2.el9.noarch.rpm 2.8 MB/s | 6.0 MB 00:02 2024-09-17T08:05:33.578 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:05:33.578 INFO:teuthology.orchestra.run.smithi145.stdout:Total 2.8 MB/s | 7.0 MB 00:02 2024-09-17T08:05:33.637 INFO:teuthology.orchestra.run.smithi152.stdout:Package librbd1-2:18.2.4-855.g19e2a2be.el9.x86_64 is already installed. 2024-09-17T08:05:33.649 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-17T08:05:33.661 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install rbd-nbd 2024-09-17T08:05:33.662 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-17T08:05:33.662 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-17T08:05:33.680 INFO:teuthology.orchestra.run.smithi152.stdout:Dependencies resolved. 2024-09-17T08:05:33.681 INFO:teuthology.orchestra.run.smithi152.stdout:Nothing to do. 2024-09-17T08:05:33.681 INFO:teuthology.orchestra.run.smithi152.stdout:Complete! 2024-09-17T08:05:33.761 DEBUG:teuthology.orchestra.run.smithi152:> sudo yum -y install python3-rados 2024-09-17T08:05:33.762 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-17T08:05:33.762 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-17T08:05:34.066 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-17T08:05:34.222 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-typing-extensions-4.12.2-2.el9.noarch 1/6 2024-09-17T08:05:34.267 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:01:45 ago on Tue 17 Sep 2024 08:03:49 AM UTC. 2024-09-17T08:05:34.277 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-09-17T08:05:34.340 INFO:teuthology.orchestra.run.smithi152.stdout:Last metadata expiration check: 0:01:37 ago on Tue 17 Sep 2024 08:03:57 AM UTC. 2024-09-17T08:05:34.407 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-09-17T08:05:34.408 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:05:34.408 INFO:teuthology.orchestra.run.smithi044.stdout: Package Architecture Version Repository Size 2024-09-17T08:05:34.408 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:05:34.408 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-09-17T08:05:34.408 INFO:teuthology.orchestra.run.smithi044.stdout: rbd-nbd x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 172 k 2024-09-17T08:05:34.409 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:34.409 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-09-17T08:05:34.409 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-09-17T08:05:34.409 INFO:teuthology.orchestra.run.smithi044.stdout:Install 1 Package 2024-09-17T08:05:34.409 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:34.409 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 172 k 2024-09-17T08:05:34.409 INFO:teuthology.orchestra.run.smithi044.stdout:Installed size: 494 k 2024-09-17T08:05:34.409 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-09-17T08:05:34.429 INFO:teuthology.orchestra.run.smithi152.stdout:Package python3-rados-2:18.2.4-855.g19e2a2be.el9.x86_64 is already installed. 2024-09-17T08:05:34.472 INFO:teuthology.orchestra.run.smithi152.stdout:Dependencies resolved. 2024-09-17T08:05:34.473 INFO:teuthology.orchestra.run.smithi152.stdout:Nothing to do. 2024-09-17T08:05:34.473 INFO:teuthology.orchestra.run.smithi152.stdout:Complete! 2024-09-17T08:05:34.543 DEBUG:teuthology.orchestra.run.smithi152:> sudo yum -y install python3-rgw 2024-09-17T08:05:34.619 INFO:teuthology.orchestra.run.smithi044.stdout:rbd-nbd-18.2.4-855.g19e2a2be.el9.x86_64.rpm 819 kB/s | 172 kB 00:00 2024-09-17T08:05:34.619 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:05:34.620 INFO:teuthology.orchestra.run.smithi044.stdout:Total 812 kB/s | 172 kB 00:00 2024-09-17T08:05:34.620 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-09-17T08:05:34.628 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-09-17T08:05:34.628 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-09-17T08:05:34.696 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-09-17T08:05:34.696 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-09-17T08:05:34.784 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-09-17T08:05:34.871 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-09-17T08:05:34.888 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-09-17T08:05:34.933 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-jinja2-2.11.3-6.el9.noarch 5/6 2024-09-17T08:05:34.956 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-mgr-cephadm-2:18.2.4-855.g19e2a2be.el9.noarch 6/6 2024-09-17T08:05:34.995 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : rbd-nbd-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:35.120 INFO:teuthology.orchestra.run.smithi152.stdout:Last metadata expiration check: 0:01:38 ago on Tue 17 Sep 2024 08:03:57 AM UTC. 2024-09-17T08:05:35.209 INFO:teuthology.orchestra.run.smithi152.stdout:Package python3-rgw-2:18.2.4-855.g19e2a2be.el9.x86_64 is already installed. 2024-09-17T08:05:35.251 INFO:teuthology.orchestra.run.smithi152.stdout:Dependencies resolved. 2024-09-17T08:05:35.252 INFO:teuthology.orchestra.run.smithi152.stdout:Nothing to do. 2024-09-17T08:05:35.252 INFO:teuthology.orchestra.run.smithi152.stdout:Complete! 2024-09-17T08:05:35.326 DEBUG:teuthology.orchestra.run.smithi152:> sudo yum -y install python3-cephfs 2024-09-17T08:05:35.438 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: rbd-nbd-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:35.694 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : rbd-nbd-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:35.694 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:35.694 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-09-17T08:05:35.694 INFO:teuthology.orchestra.run.smithi044.stdout: rbd-nbd-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:05:35.694 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:05:35.694 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-09-17T08:05:35.775 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-mgr-cephadm-2:18.2.4-855.g19e2a2be.el9.noarch 6/6 2024-09-17T08:05:35.775 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-mgr-cephadm-2:18.2.4-855.g19e2a2be.el9.noarch 1/6 2024-09-17T08:05:35.775 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-09-17T08:05:35.775 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-jinja2-2.11.3-6.el9.noarch 3/6 2024-09-17T08:05:35.775 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-09-17T08:05:35.775 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-09-17T08:05:35.905 INFO:teuthology.orchestra.run.smithi152.stdout:Last metadata expiration check: 0:01:38 ago on Tue 17 Sep 2024 08:03:57 AM UTC. 2024-09-17T08:05:35.926 DEBUG:teuthology.parallel:result is None 2024-09-17T08:05:35.996 INFO:teuthology.orchestra.run.smithi152.stdout:Package python3-cephfs-2:18.2.4-855.g19e2a2be.el9.x86_64 is already installed. 2024-09-17T08:05:36.039 INFO:teuthology.orchestra.run.smithi152.stdout:Dependencies resolved. 2024-09-17T08:05:36.040 INFO:teuthology.orchestra.run.smithi152.stdout:Nothing to do. 2024-09-17T08:05:36.041 INFO:teuthology.orchestra.run.smithi152.stdout:Complete! 2024-09-17T08:05:36.042 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-typing-extensions-4.12.2-2.el9.noarch 6/6 2024-09-17T08:05:36.042 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:36.042 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-17T08:05:36.042 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-mgr-cephadm-2:18.2.4-855.g19e2a2be.el9.noarch 2024-09-17T08:05:36.042 INFO:teuthology.orchestra.run.smithi145.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-09-17T08:05:36.042 INFO:teuthology.orchestra.run.smithi145.stdout: python3-babel-2.9.1-2.el9.noarch 2024-09-17T08:05:36.043 INFO:teuthology.orchestra.run.smithi145.stdout: python3-jinja2-2.11.3-6.el9.noarch 2024-09-17T08:05:36.043 INFO:teuthology.orchestra.run.smithi145.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-09-17T08:05:36.043 INFO:teuthology.orchestra.run.smithi145.stdout: python3-typing-extensions-4.12.2-2.el9.noarch 2024-09-17T08:05:36.043 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:36.043 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-17T08:05:36.109 DEBUG:teuthology.orchestra.run.smithi152:> sudo yum -y install python3-rbd 2024-09-17T08:05:36.328 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install ceph-fuse 2024-09-17T08:05:36.686 INFO:teuthology.orchestra.run.smithi152.stdout:Last metadata expiration check: 0:01:39 ago on Tue 17 Sep 2024 08:03:57 AM UTC. 2024-09-17T08:05:36.775 INFO:teuthology.orchestra.run.smithi152.stdout:Package python3-rbd-2:18.2.4-855.g19e2a2be.el9.x86_64 is already installed. 2024-09-17T08:05:36.818 INFO:teuthology.orchestra.run.smithi152.stdout:Dependencies resolved. 2024-09-17T08:05:36.819 INFO:teuthology.orchestra.run.smithi152.stdout:Nothing to do. 2024-09-17T08:05:36.820 INFO:teuthology.orchestra.run.smithi152.stdout:Complete! 2024-09-17T08:05:36.904 DEBUG:teuthology.orchestra.run.smithi152:> sudo yum -y install rbd-fuse 2024-09-17T08:05:36.915 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:01:27 ago on Tue 17 Sep 2024 08:04:09 AM UTC. 2024-09-17T08:05:37.048 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-17T08:05:37.048 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:05:37.048 INFO:teuthology.orchestra.run.smithi145.stdout: Package Arch Version Repository Size 2024-09-17T08:05:37.048 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:05:37.049 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-17T08:05:37.049 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-fuse x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 852 k 2024-09-17T08:05:37.049 INFO:teuthology.orchestra.run.smithi145.stdout:Installing dependencies: 2024-09-17T08:05:37.049 INFO:teuthology.orchestra.run.smithi145.stdout: fuse x86_64 2.9.9-16.el9 baseos 80 k 2024-09-17T08:05:37.049 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:37.049 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-17T08:05:37.049 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:05:37.049 INFO:teuthology.orchestra.run.smithi145.stdout:Install 2 Packages 2024-09-17T08:05:37.050 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:37.050 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 932 k 2024-09-17T08:05:37.050 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 2.7 M 2024-09-17T08:05:37.050 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-17T08:05:37.197 INFO:teuthology.orchestra.run.smithi145.stdout:(1/2): fuse-2.9.9-16.el9.x86_64.rpm 648 kB/s | 80 kB 00:00 2024-09-17T08:05:37.344 INFO:teuthology.orchestra.run.smithi145.stdout:(2/2): ceph-fuse-18.2.4-855.g19e2a2be.el9.x86_6 3.0 MB/s | 852 kB 00:00 2024-09-17T08:05:37.345 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:05:37.345 INFO:teuthology.orchestra.run.smithi145.stdout:Total 3.1 MB/s | 932 kB 00:00 2024-09-17T08:05:37.356 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-17T08:05:37.377 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-17T08:05:37.377 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-17T08:05:37.457 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-17T08:05:37.457 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-17T08:05:37.483 INFO:teuthology.orchestra.run.smithi152.stdout:Last metadata expiration check: 0:01:40 ago on Tue 17 Sep 2024 08:03:57 AM UTC. 2024-09-17T08:05:37.614 INFO:teuthology.orchestra.run.smithi152.stdout:Dependencies resolved. 2024-09-17T08:05:37.615 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:05:37.615 INFO:teuthology.orchestra.run.smithi152.stdout: Package Architecture Version Repository Size 2024-09-17T08:05:37.615 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:05:37.615 INFO:teuthology.orchestra.run.smithi152.stdout:Installing: 2024-09-17T08:05:37.615 INFO:teuthology.orchestra.run.smithi152.stdout: rbd-fuse x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 87 k 2024-09-17T08:05:37.615 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:37.616 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction Summary 2024-09-17T08:05:37.616 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:05:37.616 INFO:teuthology.orchestra.run.smithi152.stdout:Install 1 Package 2024-09-17T08:05:37.616 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:37.616 INFO:teuthology.orchestra.run.smithi152.stdout:Total download size: 87 k 2024-09-17T08:05:37.616 INFO:teuthology.orchestra.run.smithi152.stdout:Installed size: 227 k 2024-09-17T08:05:37.616 INFO:teuthology.orchestra.run.smithi152.stdout:Downloading Packages: 2024-09-17T08:05:37.651 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-17T08:05:37.804 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : fuse-2.9.9-16.el9.x86_64 1/2 2024-09-17T08:05:37.813 INFO:teuthology.orchestra.run.smithi152.stdout:rbd-fuse-18.2.4-855.g19e2a2be.el9.x86_64.rpm 442 kB/s | 87 kB 00:00 2024-09-17T08:05:37.813 INFO:teuthology.orchestra.run.smithi152.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:05:37.814 INFO:teuthology.orchestra.run.smithi152.stdout:Total 439 kB/s | 87 kB 00:00 2024-09-17T08:05:37.814 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction check 2024-09-17T08:05:37.820 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction check succeeded. 2024-09-17T08:05:37.820 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction test 2024-09-17T08:05:37.868 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-fuse-2:18.2.4-855.g19e2a2be.el9.x86_64 2/2 2024-09-17T08:05:37.883 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction test succeeded. 2024-09-17T08:05:37.883 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction 2024-09-17T08:05:38.050 INFO:teuthology.orchestra.run.smithi152.stdout: Preparing : 1/1 2024-09-17T08:05:38.152 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : rbd-fuse-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:38.533 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: rbd-fuse-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:38.577 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-fuse-2:18.2.4-855.g19e2a2be.el9.x86_64 2/2 2024-09-17T08:05:38.577 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-fuse-2:18.2.4-855.g19e2a2be.el9.x86_64 1/2 2024-09-17T08:05:38.761 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : rbd-fuse-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:38.761 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:38.761 INFO:teuthology.orchestra.run.smithi152.stdout:Installed: 2024-09-17T08:05:38.761 INFO:teuthology.orchestra.run.smithi152.stdout: rbd-fuse-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:05:38.762 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:38.762 INFO:teuthology.orchestra.run.smithi152.stdout:Complete! 2024-09-17T08:05:38.837 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : fuse-2.9.9-16.el9.x86_64 2/2 2024-09-17T08:05:38.837 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:38.837 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-17T08:05:38.837 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-fuse-2:18.2.4-855.g19e2a2be.el9.x86_64 fuse-2.9.9-16.el9.x86_64 2024-09-17T08:05:38.837 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:38.838 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-17T08:05:39.029 DEBUG:teuthology.orchestra.run.smithi152:> sudo yum -y install rbd-mirror 2024-09-17T08:05:39.131 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install ceph-volume 2024-09-17T08:05:39.618 INFO:teuthology.orchestra.run.smithi152.stdout:Last metadata expiration check: 0:01:42 ago on Tue 17 Sep 2024 08:03:57 AM UTC. 2024-09-17T08:05:39.729 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:01:30 ago on Tue 17 Sep 2024 08:04:09 AM UTC. 2024-09-17T08:05:39.757 INFO:teuthology.orchestra.run.smithi152.stdout:Dependencies resolved. 2024-09-17T08:05:39.757 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:05:39.757 INFO:teuthology.orchestra.run.smithi152.stdout: Package Arch Version Repo Size 2024-09-17T08:05:39.758 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:05:39.758 INFO:teuthology.orchestra.run.smithi152.stdout:Installing: 2024-09-17T08:05:39.758 INFO:teuthology.orchestra.run.smithi152.stdout: rbd-mirror x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 3.0 M 2024-09-17T08:05:39.758 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:39.758 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction Summary 2024-09-17T08:05:39.758 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:05:39.758 INFO:teuthology.orchestra.run.smithi152.stdout:Install 1 Package 2024-09-17T08:05:39.758 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:39.759 INFO:teuthology.orchestra.run.smithi152.stdout:Total download size: 3.0 M 2024-09-17T08:05:39.759 INFO:teuthology.orchestra.run.smithi152.stdout:Installed size: 12 M 2024-09-17T08:05:39.759 INFO:teuthology.orchestra.run.smithi152.stdout:Downloading Packages: 2024-09-17T08:05:39.874 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-17T08:05:39.874 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:05:39.874 INFO:teuthology.orchestra.run.smithi145.stdout: Package Arch Version Repository Size 2024-09-17T08:05:39.874 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:05:39.874 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-17T08:05:39.874 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-volume noarch 2:18.2.4-855.g19e2a2be.el9 ceph-noarch 264 k 2024-09-17T08:05:39.874 INFO:teuthology.orchestra.run.smithi145.stdout:Installing dependencies: 2024-09-17T08:05:39.874 INFO:teuthology.orchestra.run.smithi145.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-09-17T08:05:39.875 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:39.875 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-17T08:05:39.875 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:05:39.875 INFO:teuthology.orchestra.run.smithi145.stdout:Install 2 Packages 2024-09-17T08:05:39.875 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:39.875 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 342 k 2024-09-17T08:05:39.875 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 1.5 M 2024-09-17T08:05:39.875 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-17T08:05:40.115 INFO:teuthology.orchestra.run.smithi152.stdout:rbd-mirror-18.2.4-855.g19e2a2be.el9.x86_64.rpm 8.4 MB/s | 3.0 MB 00:00 2024-09-17T08:05:40.115 INFO:teuthology.orchestra.run.smithi152.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:05:40.116 INFO:teuthology.orchestra.run.smithi152.stdout:Total 8.4 MB/s | 3.0 MB 00:00 2024-09-17T08:05:40.116 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction check 2024-09-17T08:05:40.125 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction check succeeded. 2024-09-17T08:05:40.125 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction test 2024-09-17T08:05:40.158 INFO:teuthology.orchestra.run.smithi145.stdout:(1/2): ceph-volume-18.2.4-855.g19e2a2be.el9.noa 1.1 MB/s | 264 kB 00:00 2024-09-17T08:05:40.204 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction test succeeded. 2024-09-17T08:05:40.205 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction 2024-09-17T08:05:40.291 INFO:teuthology.orchestra.run.smithi145.stdout:(2/2): python3-packaging-20.9-5.el9.noarch.rpm 210 kB/s | 77 kB 00:00 2024-09-17T08:05:40.291 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:05:40.292 INFO:teuthology.orchestra.run.smithi145.stdout:Total 818 kB/s | 342 kB 00:00 2024-09-17T08:05:40.303 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-17T08:05:40.313 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-17T08:05:40.313 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-17T08:05:40.350 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-17T08:05:40.351 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-17T08:05:40.497 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-17T08:05:40.641 INFO:teuthology.orchestra.run.smithi152.stdout: Preparing : 1/1 2024-09-17T08:05:40.675 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-packaging-20.9-5.el9.noarch 1/2 2024-09-17T08:05:40.708 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : rbd-mirror-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:40.710 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-volume-2:18.2.4-855.g19e2a2be.el9.noarch 2/2 2024-09-17T08:05:40.726 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-volume-2:18.2.4-855.g19e2a2be.el9.noarch 2/2 2024-09-17T08:05:40.726 INFO:teuthology.orchestra.run.smithi145.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T08:05:40.726 INFO:teuthology.orchestra.run.smithi145.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-09-17T08:05:40.726 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:40.735 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: rbd-mirror-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:40.735 INFO:teuthology.orchestra.run.smithi152.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T08:05:40.735 INFO:teuthology.orchestra.run.smithi152.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-09-17T08:05:40.735 INFO:teuthology.orchestra.run.smithi152.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-17T08:05:40.735 INFO:teuthology.orchestra.run.smithi152.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-17T08:05:40.735 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:41.485 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-volume-2:18.2.4-855.g19e2a2be.el9.noarch 1/2 2024-09-17T08:05:41.784 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 2/2 2024-09-17T08:05:41.784 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:41.784 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-17T08:05:41.784 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-volume-2:18.2.4-855.g19e2a2be.el9.noarch 2024-09-17T08:05:41.784 INFO:teuthology.orchestra.run.smithi145.stdout: python3-packaging-20.9-5.el9.noarch 2024-09-17T08:05:41.785 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:41.785 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-17T08:05:41.877 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : rbd-mirror-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:41.878 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:41.878 INFO:teuthology.orchestra.run.smithi152.stdout:Installed: 2024-09-17T08:05:41.878 INFO:teuthology.orchestra.run.smithi152.stdout: rbd-mirror-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:05:41.878 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:41.878 INFO:teuthology.orchestra.run.smithi152.stdout:Complete! 2024-09-17T08:05:42.147 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install librados-devel 2024-09-17T08:05:42.152 DEBUG:teuthology.orchestra.run.smithi152:> sudo yum -y install rbd-nbd 2024-09-17T08:05:42.746 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:01:33 ago on Tue 17 Sep 2024 08:04:09 AM UTC. 2024-09-17T08:05:42.754 INFO:teuthology.orchestra.run.smithi152.stdout:Last metadata expiration check: 0:01:45 ago on Tue 17 Sep 2024 08:03:57 AM UTC. 2024-09-17T08:05:42.881 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-17T08:05:42.882 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:05:42.882 INFO:teuthology.orchestra.run.smithi145.stdout: Package Arch Version Repo Size 2024-09-17T08:05:42.882 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:05:42.882 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-17T08:05:42.882 INFO:teuthology.orchestra.run.smithi145.stdout: librados-devel x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 126 k 2024-09-17T08:05:42.882 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:42.882 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-17T08:05:42.882 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:05:42.883 INFO:teuthology.orchestra.run.smithi145.stdout:Install 1 Package 2024-09-17T08:05:42.883 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:42.883 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 126 k 2024-09-17T08:05:42.883 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 456 k 2024-09-17T08:05:42.883 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-17T08:05:42.888 INFO:teuthology.orchestra.run.smithi152.stdout:Dependencies resolved. 2024-09-17T08:05:42.889 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:05:42.889 INFO:teuthology.orchestra.run.smithi152.stdout: Package Architecture Version Repository Size 2024-09-17T08:05:42.889 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:05:42.889 INFO:teuthology.orchestra.run.smithi152.stdout:Installing: 2024-09-17T08:05:42.889 INFO:teuthology.orchestra.run.smithi152.stdout: rbd-nbd x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 172 k 2024-09-17T08:05:42.889 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:42.890 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction Summary 2024-09-17T08:05:42.890 INFO:teuthology.orchestra.run.smithi152.stdout:================================================================================ 2024-09-17T08:05:42.890 INFO:teuthology.orchestra.run.smithi152.stdout:Install 1 Package 2024-09-17T08:05:42.890 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:42.890 INFO:teuthology.orchestra.run.smithi152.stdout:Total download size: 172 k 2024-09-17T08:05:42.890 INFO:teuthology.orchestra.run.smithi152.stdout:Installed size: 494 k 2024-09-17T08:05:42.890 INFO:teuthology.orchestra.run.smithi152.stdout:Downloading Packages: 2024-09-17T08:05:43.089 INFO:teuthology.orchestra.run.smithi145.stdout:librados-devel-18.2.4-855.g19e2a2be.el9.x86_64. 615 kB/s | 126 kB 00:00 2024-09-17T08:05:43.090 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:05:43.090 INFO:teuthology.orchestra.run.smithi145.stdout:Total 610 kB/s | 126 kB 00:00 2024-09-17T08:05:43.090 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-17T08:05:43.093 INFO:teuthology.orchestra.run.smithi152.stdout:rbd-nbd-18.2.4-855.g19e2a2be.el9.x86_64.rpm 848 kB/s | 172 kB 00:00 2024-09-17T08:05:43.094 INFO:teuthology.orchestra.run.smithi152.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:05:43.094 INFO:teuthology.orchestra.run.smithi152.stdout:Total 841 kB/s | 172 kB 00:00 2024-09-17T08:05:43.095 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction check 2024-09-17T08:05:43.095 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-17T08:05:43.095 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-17T08:05:43.102 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction check succeeded. 2024-09-17T08:05:43.102 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction test 2024-09-17T08:05:43.158 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-17T08:05:43.159 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-17T08:05:43.168 INFO:teuthology.orchestra.run.smithi152.stdout:Transaction test succeeded. 2024-09-17T08:05:43.168 INFO:teuthology.orchestra.run.smithi152.stdout:Running transaction 2024-09-17T08:05:43.308 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-17T08:05:43.325 INFO:teuthology.orchestra.run.smithi152.stdout: Preparing : 1/1 2024-09-17T08:05:43.427 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : librados-devel-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:43.432 INFO:teuthology.orchestra.run.smithi152.stdout: Installing : rbd-nbd-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:43.877 INFO:teuthology.orchestra.run.smithi152.stdout: Running scriptlet: rbd-nbd-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:43.902 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: librados-devel-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:44.161 INFO:teuthology.orchestra.run.smithi152.stdout: Verifying : rbd-nbd-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:44.162 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:44.162 INFO:teuthology.orchestra.run.smithi152.stdout:Installed: 2024-09-17T08:05:44.162 INFO:teuthology.orchestra.run.smithi152.stdout: rbd-nbd-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:05:44.162 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:05:44.162 INFO:teuthology.orchestra.run.smithi152.stdout:Complete! 2024-09-17T08:05:44.162 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : librados-devel-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:44.162 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:44.162 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-17T08:05:44.163 INFO:teuthology.orchestra.run.smithi145.stdout: librados-devel-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:05:44.163 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:44.163 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-17T08:05:44.399 DEBUG:teuthology.parallel:result is None 2024-09-17T08:05:44.479 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install libcephfs2 2024-09-17T08:05:45.077 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:01:36 ago on Tue 17 Sep 2024 08:04:09 AM UTC. 2024-09-17T08:05:45.171 INFO:teuthology.orchestra.run.smithi145.stdout:Package libcephfs2-2:18.2.4-855.g19e2a2be.el9.x86_64 is already installed. 2024-09-17T08:05:45.218 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-17T08:05:45.219 INFO:teuthology.orchestra.run.smithi145.stdout:Nothing to do. 2024-09-17T08:05:45.219 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-17T08:05:45.294 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install libcephfs-devel 2024-09-17T08:05:45.877 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:01:36 ago on Tue 17 Sep 2024 08:04:09 AM UTC. 2024-09-17T08:05:46.011 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-17T08:05:46.011 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:05:46.011 INFO:teuthology.orchestra.run.smithi145.stdout: Package Arch Version Repo Size 2024-09-17T08:05:46.011 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:05:46.012 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-17T08:05:46.012 INFO:teuthology.orchestra.run.smithi145.stdout: libcephfs-devel x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 31 k 2024-09-17T08:05:46.012 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:46.012 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-17T08:05:46.012 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:05:46.012 INFO:teuthology.orchestra.run.smithi145.stdout:Install 1 Package 2024-09-17T08:05:46.012 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:46.012 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 31 k 2024-09-17T08:05:46.012 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 139 k 2024-09-17T08:05:46.012 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-17T08:05:46.159 INFO:teuthology.orchestra.run.smithi145.stdout:libcephfs-devel-18.2.4-855.g19e2a2be.el9.x86_64 211 kB/s | 31 kB 00:00 2024-09-17T08:05:46.160 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:05:46.160 INFO:teuthology.orchestra.run.smithi145.stdout:Total 209 kB/s | 31 kB 00:00 2024-09-17T08:05:46.160 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-17T08:05:46.164 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-17T08:05:46.164 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-17T08:05:46.189 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-17T08:05:46.190 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-17T08:05:46.273 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-17T08:05:46.381 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : libcephfs-devel-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:46.754 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: libcephfs-devel-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:46.985 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : libcephfs-devel-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:46.985 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:46.986 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-17T08:05:46.986 INFO:teuthology.orchestra.run.smithi145.stdout: libcephfs-devel-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:05:46.986 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:46.986 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-17T08:05:47.205 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install librados2 2024-09-17T08:05:47.781 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:01:38 ago on Tue 17 Sep 2024 08:04:09 AM UTC. 2024-09-17T08:05:47.869 INFO:teuthology.orchestra.run.smithi145.stdout:Package librados2-2:18.2.4-855.g19e2a2be.el9.x86_64 is already installed. 2024-09-17T08:05:47.911 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-17T08:05:47.912 INFO:teuthology.orchestra.run.smithi145.stdout:Nothing to do. 2024-09-17T08:05:47.912 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-17T08:05:47.988 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install librbd1 2024-09-17T08:05:48.567 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:01:39 ago on Tue 17 Sep 2024 08:04:09 AM UTC. 2024-09-17T08:05:48.657 INFO:teuthology.orchestra.run.smithi145.stdout:Package librbd1-2:18.2.4-855.g19e2a2be.el9.x86_64 is already installed. 2024-09-17T08:05:48.700 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-17T08:05:48.701 INFO:teuthology.orchestra.run.smithi145.stdout:Nothing to do. 2024-09-17T08:05:48.701 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-17T08:05:48.776 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install python3-rados 2024-09-17T08:05:49.360 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:01:40 ago on Tue 17 Sep 2024 08:04:09 AM UTC. 2024-09-17T08:05:49.452 INFO:teuthology.orchestra.run.smithi145.stdout:Package python3-rados-2:18.2.4-855.g19e2a2be.el9.x86_64 is already installed. 2024-09-17T08:05:49.496 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-17T08:05:49.497 INFO:teuthology.orchestra.run.smithi145.stdout:Nothing to do. 2024-09-17T08:05:49.497 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-17T08:05:49.570 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install python3-rgw 2024-09-17T08:05:50.153 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:01:41 ago on Tue 17 Sep 2024 08:04:09 AM UTC. 2024-09-17T08:05:50.244 INFO:teuthology.orchestra.run.smithi145.stdout:Package python3-rgw-2:18.2.4-855.g19e2a2be.el9.x86_64 is already installed. 2024-09-17T08:05:50.288 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-17T08:05:50.289 INFO:teuthology.orchestra.run.smithi145.stdout:Nothing to do. 2024-09-17T08:05:50.289 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-17T08:05:50.367 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install python3-cephfs 2024-09-17T08:05:50.948 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:01:41 ago on Tue 17 Sep 2024 08:04:09 AM UTC. 2024-09-17T08:05:51.038 INFO:teuthology.orchestra.run.smithi145.stdout:Package python3-cephfs-2:18.2.4-855.g19e2a2be.el9.x86_64 is already installed. 2024-09-17T08:05:51.081 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-17T08:05:51.082 INFO:teuthology.orchestra.run.smithi145.stdout:Nothing to do. 2024-09-17T08:05:51.082 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-17T08:05:51.159 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install python3-rbd 2024-09-17T08:05:51.739 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:01:42 ago on Tue 17 Sep 2024 08:04:09 AM UTC. 2024-09-17T08:05:51.831 INFO:teuthology.orchestra.run.smithi145.stdout:Package python3-rbd-2:18.2.4-855.g19e2a2be.el9.x86_64 is already installed. 2024-09-17T08:05:51.875 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-17T08:05:51.876 INFO:teuthology.orchestra.run.smithi145.stdout:Nothing to do. 2024-09-17T08:05:51.876 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-17T08:05:51.962 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install rbd-fuse 2024-09-17T08:05:52.565 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:01:43 ago on Tue 17 Sep 2024 08:04:09 AM UTC. 2024-09-17T08:05:52.708 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-17T08:05:52.708 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:05:52.708 INFO:teuthology.orchestra.run.smithi145.stdout: Package Architecture Version Repository Size 2024-09-17T08:05:52.708 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:05:52.708 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-17T08:05:52.708 INFO:teuthology.orchestra.run.smithi145.stdout: rbd-fuse x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 87 k 2024-09-17T08:05:52.708 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:52.708 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-17T08:05:52.709 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:05:52.709 INFO:teuthology.orchestra.run.smithi145.stdout:Install 1 Package 2024-09-17T08:05:52.709 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:52.709 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 87 k 2024-09-17T08:05:52.709 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 227 k 2024-09-17T08:05:52.709 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-17T08:05:52.913 INFO:teuthology.orchestra.run.smithi145.stdout:rbd-fuse-18.2.4-855.g19e2a2be.el9.x86_64.rpm 428 kB/s | 87 kB 00:00 2024-09-17T08:05:52.913 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:05:52.914 INFO:teuthology.orchestra.run.smithi145.stdout:Total 423 kB/s | 87 kB 00:00 2024-09-17T08:05:52.914 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-17T08:05:52.921 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-17T08:05:52.921 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-17T08:05:52.987 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-17T08:05:52.988 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-17T08:05:53.158 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-17T08:05:53.261 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : rbd-fuse-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:53.685 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: rbd-fuse-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:53.933 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : rbd-fuse-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:53.933 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:53.934 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-17T08:05:53.934 INFO:teuthology.orchestra.run.smithi145.stdout: rbd-fuse-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:05:53.934 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:53.934 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-17T08:05:54.196 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install rbd-mirror 2024-09-17T08:05:54.797 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:01:45 ago on Tue 17 Sep 2024 08:04:09 AM UTC. 2024-09-17T08:05:54.939 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-17T08:05:54.939 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:05:54.939 INFO:teuthology.orchestra.run.smithi145.stdout: Package Arch Version Repo Size 2024-09-17T08:05:54.939 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:05:54.939 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-17T08:05:54.939 INFO:teuthology.orchestra.run.smithi145.stdout: rbd-mirror x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 3.0 M 2024-09-17T08:05:54.940 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:54.940 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-17T08:05:54.940 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:05:54.940 INFO:teuthology.orchestra.run.smithi145.stdout:Install 1 Package 2024-09-17T08:05:54.940 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:54.940 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 3.0 M 2024-09-17T08:05:54.941 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 12 M 2024-09-17T08:05:54.941 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-17T08:05:55.283 INFO:teuthology.orchestra.run.smithi145.stdout:rbd-mirror-18.2.4-855.g19e2a2be.el9.x86_64.rpm 8.7 MB/s | 3.0 MB 00:00 2024-09-17T08:05:55.284 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:05:55.284 INFO:teuthology.orchestra.run.smithi145.stdout:Total 8.7 MB/s | 3.0 MB 00:00 2024-09-17T08:05:55.284 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-17T08:05:55.293 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-17T08:05:55.293 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-17T08:05:55.374 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-17T08:05:55.375 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-17T08:05:55.792 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-17T08:05:55.858 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : rbd-mirror-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:55.884 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: rbd-mirror-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:55.884 INFO:teuthology.orchestra.run.smithi145.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T08:05:55.884 INFO:teuthology.orchestra.run.smithi145.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-09-17T08:05:55.884 INFO:teuthology.orchestra.run.smithi145.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-17T08:05:55.884 INFO:teuthology.orchestra.run.smithi145.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-17T08:05:55.884 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:56.998 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : rbd-mirror-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:56.998 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:56.998 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-17T08:05:56.999 INFO:teuthology.orchestra.run.smithi145.stdout: rbd-mirror-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:05:56.999 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:56.999 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-17T08:05:57.294 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install rbd-nbd 2024-09-17T08:05:57.895 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:01:48 ago on Tue 17 Sep 2024 08:04:09 AM UTC. 2024-09-17T08:05:58.027 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-17T08:05:58.028 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:05:58.028 INFO:teuthology.orchestra.run.smithi145.stdout: Package Architecture Version Repository Size 2024-09-17T08:05:58.028 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:05:58.028 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-17T08:05:58.028 INFO:teuthology.orchestra.run.smithi145.stdout: rbd-nbd x86_64 2:18.2.4-855.g19e2a2be.el9 ceph 172 k 2024-09-17T08:05:58.028 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:58.028 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-17T08:05:58.028 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T08:05:58.029 INFO:teuthology.orchestra.run.smithi145.stdout:Install 1 Package 2024-09-17T08:05:58.029 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:58.029 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 172 k 2024-09-17T08:05:58.029 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 494 k 2024-09-17T08:05:58.029 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-17T08:05:58.243 INFO:teuthology.orchestra.run.smithi145.stdout:rbd-nbd-18.2.4-855.g19e2a2be.el9.x86_64.rpm 803 kB/s | 172 kB 00:00 2024-09-17T08:05:58.244 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:05:58.244 INFO:teuthology.orchestra.run.smithi145.stdout:Total 797 kB/s | 172 kB 00:00 2024-09-17T08:05:58.244 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-17T08:05:58.252 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-17T08:05:58.252 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-17T08:05:58.316 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-17T08:05:58.317 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-17T08:05:58.477 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-17T08:05:58.591 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : rbd-nbd-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:58.979 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: rbd-nbd-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:59.246 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : rbd-nbd-2:18.2.4-855.g19e2a2be.el9.x86_64 1/1 2024-09-17T08:05:59.246 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:59.246 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-17T08:05:59.247 INFO:teuthology.orchestra.run.smithi145.stdout: rbd-nbd-2:18.2.4-855.g19e2a2be.el9.x86_64 2024-09-17T08:05:59.247 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T08:05:59.247 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-17T08:05:59.530 DEBUG:teuthology.parallel:result is None 2024-09-17T08:05:59.531 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 2024-09-17T08:05:59.679 DEBUG:teuthology.orchestra.run.smithi044:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-09-17T08:05:59.707 INFO:teuthology.orchestra.run.smithi044.stdout:18.2.4-855.g19e2a2be.el9 2024-09-17T08:05:59.707 INFO:teuthology.packaging:The installed version of ceph is 18.2.4-855.g19e2a2be.el9 2024-09-17T08:05:59.707 INFO:teuthology.task.install:The correct ceph version 18.2.4-855.g19e2a2be is installed. 2024-09-17T08:05:59.709 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 2024-09-17T08:05:59.850 DEBUG:teuthology.orchestra.run.smithi145:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-09-17T08:05:59.872 INFO:teuthology.orchestra.run.smithi145.stdout:18.2.4-855.g19e2a2be.el9 2024-09-17T08:05:59.872 INFO:teuthology.packaging:The installed version of ceph is 18.2.4-855.g19e2a2be.el9 2024-09-17T08:05:59.872 INFO:teuthology.task.install:The correct ceph version 18.2.4-855.g19e2a2be is installed. 2024-09-17T08:05:59.874 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 2024-09-17T08:06:00.015 DEBUG:teuthology.orchestra.run.smithi152:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-09-17T08:06:00.041 INFO:teuthology.orchestra.run.smithi152.stdout:18.2.4-855.g19e2a2be.el9 2024-09-17T08:06:00.041 INFO:teuthology.packaging:The installed version of ceph is 18.2.4-855.g19e2a2be.el9 2024-09-17T08:06:00.041 INFO:teuthology.task.install:The correct ceph version 18.2.4-855.g19e2a2be is installed. 2024-09-17T08:06:00.043 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2024-09-17T08:06:00.043 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-09-17T08:06:00.043 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-17T08:06:00.076 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-17T08:06:00.076 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-17T08:06:00.101 DEBUG:teuthology.orchestra.run.smithi152:> set -ex 2024-09-17T08:06:00.101 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-17T08:06:00.131 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2024-09-17T08:06:00.131 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-09-17T08:06:00.131 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd of=/usr/bin/daemon-helper 2024-09-17T08:06:00.161 DEBUG:teuthology.orchestra.run.smithi044:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-17T08:06:00.231 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-17T08:06:00.231 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd of=/usr/bin/daemon-helper 2024-09-17T08:06:00.258 DEBUG:teuthology.orchestra.run.smithi145:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-17T08:06:00.323 DEBUG:teuthology.orchestra.run.smithi152:> set -ex 2024-09-17T08:06:00.323 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd of=/usr/bin/daemon-helper 2024-09-17T08:06:00.353 DEBUG:teuthology.orchestra.run.smithi152:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-17T08:06:00.421 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2024-09-17T08:06:00.421 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-09-17T08:06:00.421 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-17T08:06:00.452 DEBUG:teuthology.orchestra.run.smithi044:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-17T08:06:00.522 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-17T08:06:00.523 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-17T08:06:00.547 DEBUG:teuthology.orchestra.run.smithi145:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-17T08:06:00.612 DEBUG:teuthology.orchestra.run.smithi152:> set -ex 2024-09-17T08:06:00.612 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-17T08:06:00.641 DEBUG:teuthology.orchestra.run.smithi152:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-17T08:06:00.709 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2024-09-17T08:06:00.709 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-09-17T08:06:00.710 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd of=/usr/bin/stdin-killer 2024-09-17T08:06:00.740 DEBUG:teuthology.orchestra.run.smithi044:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-17T08:06:00.811 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-17T08:06:00.811 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd of=/usr/bin/stdin-killer 2024-09-17T08:06:00.835 DEBUG:teuthology.orchestra.run.smithi145:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-17T08:06:00.899 DEBUG:teuthology.orchestra.run.smithi152:> set -ex 2024-09-17T08:06:00.899 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd of=/usr/bin/stdin-killer 2024-09-17T08:06:00.929 DEBUG:teuthology.orchestra.run.smithi152:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-17T08:06:01.000 INFO:teuthology.run_tasks:Running task cephadm... 2024-09-17T08:06:01.090 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': '19e2a2beb6f41a3ab62650e38614eb29b59dcbb9'} 2024-09-17T08:06:01.091 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 2024-09-17T08:06:01.091 INFO:tasks.cephadm:Cluster fsid is ad90ed3e-74cb-11ef-bceb-c7b262605968 2024-09-17T08:06:01.091 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-09-17T08:06:01.091 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '172.21.15.44', 'mon.b': '172.21.15.145', 'mon.c': '172.21.15.152'} 2024-09-17T08:06:01.092 INFO:tasks.cephadm:First mon is mon.a on smithi044 2024-09-17T08:06:01.092 INFO:tasks.cephadm:First mgr is a 2024-09-17T08:06:01.092 INFO:tasks.cephadm:Normalizing hostnames... 2024-09-17T08:06:01.092 DEBUG:teuthology.orchestra.run.smithi044:> sudo hostname $(hostname -s) 2024-09-17T08:06:01.123 DEBUG:teuthology.orchestra.run.smithi145:> sudo hostname $(hostname -s) 2024-09-17T08:06:01.148 DEBUG:teuthology.orchestra.run.smithi152:> sudo hostname $(hostname -s) 2024-09-17T08:06:01.178 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-09-17T08:06:01.178 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 2024-09-17T08:06:01.320 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': '19e2a2beb6f41a3ab62650e38614eb29b59dcbb9', 'extra': {'build_url': 'https://jenkins.ceph.com/job/ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic/56094/', 'root_build_cause': 'SCMTRIGGER', 'version': '18.2.4-855-g19e2a2be', 'node_name': '172.21.2.7+braggi07', 'job_name': 'ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic', 'package_manager_version': '18.2.4-855.g19e2a2be'}, 'url': 'https://4.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/centos/9/flavors/default/', 'distro_codename': None, 'modified': '2024-09-16 16:29:21.739533', 'distro_version': '9', 'project': 'ceph', 'flavor': 'default', 'ref': 'reef', 'chacra_url': 'https://4.chacra.ceph.com/repos/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/centos/9/flavors/default/', 'archs': ['x86_64', 'source'], 'distro': 'centos'}] 2024-09-17T08:06:01.466 INFO:tasks.util.chacra:got chacra host 4.chacra.ceph.com, ref reef, sha1 19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 from https://shaman.ceph.com/api/search/?project=ceph&distros=centos%2F9%2Fx86_64&flavor=default&sha1=19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 2024-09-17T08:06:01.467 INFO:tasks.cephadm:Discovered cachra url: https://4.chacra.ceph.com/binaries/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/centos/9/x86_64/flavors/default/cephadm 2024-09-17T08:06:01.468 DEBUG:teuthology.orchestra.run.smithi044:> curl --silent -L https://4.chacra.ceph.com/binaries/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-17T08:06:01.788 INFO:teuthology.orchestra.run.smithi044.stdout:-rw-r--r--. 1 ubuntu ubuntu 217222 Sep 17 08:06 /home/ubuntu/cephtest/cephadm 2024-09-17T08:06:01.788 DEBUG:teuthology.orchestra.run.smithi145:> curl --silent -L https://4.chacra.ceph.com/binaries/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-17T08:06:02.140 INFO:teuthology.orchestra.run.smithi145.stdout:-rw-r--r--. 1 ubuntu ubuntu 217222 Sep 17 08:06 /home/ubuntu/cephtest/cephadm 2024-09-17T08:06:02.141 DEBUG:teuthology.orchestra.run.smithi152:> curl --silent -L https://4.chacra.ceph.com/binaries/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-17T08:06:02.468 INFO:teuthology.orchestra.run.smithi152.stdout:-rw-r--r--. 1 ubuntu ubuntu 217222 Sep 17 08:06 /home/ubuntu/cephtest/cephadm 2024-09-17T08:06:02.468 DEBUG:teuthology.orchestra.run.smithi044:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-17T08:06:02.489 DEBUG:teuthology.orchestra.run.smithi145:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-17T08:06:02.509 DEBUG:teuthology.orchestra.run.smithi152:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-17T08:06:02.538 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 on all hosts... 2024-09-17T08:06:02.539 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 pull 2024-09-17T08:06:02.541 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 pull 2024-09-17T08:06:02.552 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 pull 2024-09-17T08:06:04.046 INFO:teuthology.orchestra.run.smithi044.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9... 2024-09-17T08:06:04.183 INFO:teuthology.orchestra.run.smithi152.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9... 2024-09-17T08:06:04.205 INFO:teuthology.orchestra.run.smithi145.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9... 2024-09-17T08:06:32.770 INFO:teuthology.orchestra.run.smithi044.stdout:{ 2024-09-17T08:06:32.770 INFO:teuthology.orchestra.run.smithi044.stdout: "ceph_version": "ceph version 18.2.4-855-g19e2a2be (19e2a2beb6f41a3ab62650e38614eb29b59dcbb9) reef (stable)", 2024-09-17T08:06:32.770 INFO:teuthology.orchestra.run.smithi044.stdout: "image_id": "980a0bfcd684674f25c08d857ad8de3b1c8ae738870529edbf9aa463832c8d89", 2024-09-17T08:06:32.770 INFO:teuthology.orchestra.run.smithi044.stdout: "repo_digests": [ 2024-09-17T08:06:32.770 INFO:teuthology.orchestra.run.smithi044.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9" 2024-09-17T08:06:32.771 INFO:teuthology.orchestra.run.smithi044.stdout: ] 2024-09-17T08:06:32.771 INFO:teuthology.orchestra.run.smithi044.stdout:} 2024-09-17T08:06:33.163 INFO:teuthology.orchestra.run.smithi152.stdout:{ 2024-09-17T08:06:33.163 INFO:teuthology.orchestra.run.smithi152.stdout: "ceph_version": "ceph version 18.2.4-855-g19e2a2be (19e2a2beb6f41a3ab62650e38614eb29b59dcbb9) reef (stable)", 2024-09-17T08:06:33.163 INFO:teuthology.orchestra.run.smithi152.stdout: "image_id": "980a0bfcd684674f25c08d857ad8de3b1c8ae738870529edbf9aa463832c8d89", 2024-09-17T08:06:33.163 INFO:teuthology.orchestra.run.smithi152.stdout: "repo_digests": [ 2024-09-17T08:06:33.163 INFO:teuthology.orchestra.run.smithi152.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9" 2024-09-17T08:06:33.164 INFO:teuthology.orchestra.run.smithi152.stdout: ] 2024-09-17T08:06:33.164 INFO:teuthology.orchestra.run.smithi152.stdout:} 2024-09-17T08:06:44.371 INFO:teuthology.orchestra.run.smithi145.stdout:{ 2024-09-17T08:06:44.371 INFO:teuthology.orchestra.run.smithi145.stdout: "ceph_version": "ceph version 18.2.4-855-g19e2a2be (19e2a2beb6f41a3ab62650e38614eb29b59dcbb9) reef (stable)", 2024-09-17T08:06:44.371 INFO:teuthology.orchestra.run.smithi145.stdout: "image_id": "980a0bfcd684674f25c08d857ad8de3b1c8ae738870529edbf9aa463832c8d89", 2024-09-17T08:06:44.372 INFO:teuthology.orchestra.run.smithi145.stdout: "repo_digests": [ 2024-09-17T08:06:44.372 INFO:teuthology.orchestra.run.smithi145.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9" 2024-09-17T08:06:44.372 INFO:teuthology.orchestra.run.smithi145.stdout: ] 2024-09-17T08:06:44.372 INFO:teuthology.orchestra.run.smithi145.stdout:} 2024-09-17T08:06:44.390 DEBUG:teuthology.orchestra.run.smithi044:> sudo mkdir -p /etc/ceph 2024-09-17T08:06:44.425 DEBUG:teuthology.orchestra.run.smithi145:> sudo mkdir -p /etc/ceph 2024-09-17T08:06:44.452 DEBUG:teuthology.orchestra.run.smithi152:> sudo mkdir -p /etc/ceph 2024-09-17T08:06:44.484 DEBUG:teuthology.orchestra.run.smithi044:> sudo chmod 777 /etc/ceph 2024-09-17T08:06:44.515 DEBUG:teuthology.orchestra.run.smithi145:> sudo chmod 777 /etc/ceph 2024-09-17T08:06:44.540 DEBUG:teuthology.orchestra.run.smithi152:> sudo chmod 777 /etc/ceph 2024-09-17T08:06:44.567 INFO:tasks.cephadm:Writing seed config... 2024-09-17T08:06:44.568 INFO:tasks.cephadm: override: [global] mon election default strategy = 1 2024-09-17T08:06:44.569 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-09-17T08:06:44.569 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-09-17T08:06:44.569 INFO:tasks.cephadm: override: [mgr] mgr/cephadm/use_agent = False 2024-09-17T08:06:44.569 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-09-17T08:06:44.569 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-09-17T08:06:44.569 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-09-17T08:06:44.569 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-09-17T08:06:44.569 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-09-17T08:06:44.570 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-09-17T08:06:44.570 DEBUG:teuthology.orchestra.run.smithi044:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-09-17T08:06:44.589 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 = ad90ed3e-74cb-11ef-bceb-c7b262605968 mon election default strategy = 1 [osd] osd scrub load threshold = 5.0 osd scrub max interval = 600 osd mclock profile = high_recovery_ops osd recover clone overlap = true osd recovery max chunk = 1048576 osd deep scrub update digest min age = 30 osd map max advance = 10 osd memory target autotune = true # debugging osd debug shutdown = true osd debug op order = true osd debug verify stray on activate = true osd debug pg log writeout = true osd debug verify cached snaps = true osd debug verify missing on start = true osd debug misdirected ops = true osd op queue = debug_random osd op queue cut off = debug_random osd shutdown pgref assert = true bdev debug aio = true osd sloppy crc = true debug ms = 1 debug osd = 20 [mgr] mon reweight min pgs per osd = 4 mon reweight min bytes per osd = 10 mgr/telemetry/nag = false debug mgr = 20 debug ms = 1 mgr/cephadm/use_agent = False [mon] mon data avail warn = 5 mon mgr mkfs grace = 240 mon reweight min pgs per osd = 4 mon osd reporter subtree level = osd mon osd prime pg temp = true mon reweight min bytes per osd = 10 # rotate auth tickets quickly to exercise renewal paths auth mon ticket ttl = 660# 11m auth service ticket ttl = 240# 4m # don't complain about global id reclaim mon_warn_on_insecure_global_id_reclaim = false mon_warn_on_insecure_global_id_reclaim_allowed = false debug mon = 20 debug ms = 1 debug paxos = 20 [client.rgw] rgw cache enabled = true rgw enable ops log = true rgw enable usage log = true 2024-09-17T08:06:44.589 DEBUG:teuthology.orchestra.run.smithi044:mon.a> sudo journalctl -f -n 0 -u ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@mon.a.service 2024-09-17T08:06:44.632 DEBUG:teuthology.orchestra.run.smithi044:mgr.a> sudo journalctl -f -n 0 -u ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@mgr.a.service 2024-09-17T08:06:44.675 INFO:tasks.cephadm:Bootstrapping... 2024-09-17T08:06:44.675 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 -v bootstrap --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-id a --mgr-id a --orphan-initial-daemons --skip-monitoring-stack --mon-ip 172.21.15.44 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-09-17T08:06:44.841 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:06:44.841 INFO:teuthology.orchestra.run.smithi044.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9', '-v', 'bootstrap', '--fsid', 'ad90ed3e-74cb-11ef-bceb-c7b262605968', '--config', '/home/ubuntu/cephtest/seed.ceph.conf', '--output-config', '/etc/ceph/ceph.conf', '--output-keyring', '/etc/ceph/ceph.client.admin.keyring', '--output-pub-ssh-key', '/home/ubuntu/cephtest/ceph.pub', '--mon-id', 'a', '--mgr-id', 'a', '--orphan-initial-daemons', '--skip-monitoring-stack', '--mon-ip', '172.21.15.44', '--skip-admin-label'] 2024-09-17T08:06:44.865 INFO:teuthology.orchestra.run.smithi044.stdout:/bin/podman: stdout 5.2.2 2024-09-17T08:06:44.865 INFO:teuthology.orchestra.run.smithi044.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-09-17T08:06:44.865 INFO:teuthology.orchestra.run.smithi044.stdout:Verifying podman|docker is present... 2024-09-17T08:06:44.897 INFO:teuthology.orchestra.run.smithi044.stdout:/bin/podman: stdout 5.2.2 2024-09-17T08:06:44.898 INFO:teuthology.orchestra.run.smithi044.stdout:Verifying lvm2 is present... 2024-09-17T08:06:44.898 INFO:teuthology.orchestra.run.smithi044.stdout:Verifying time synchronization is in place... 2024-09-17T08:06:44.906 INFO:teuthology.orchestra.run.smithi044.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-17T08:06:44.906 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-17T08:06:44.912 INFO:teuthology.orchestra.run.smithi044.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-17T08:06:44.912 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stdout inactive 2024-09-17T08:06:44.919 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stdout enabled 2024-09-17T08:06:44.926 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stdout active 2024-09-17T08:06:44.926 INFO:teuthology.orchestra.run.smithi044.stdout:Unit chronyd.service is enabled and running 2024-09-17T08:06:44.926 INFO:teuthology.orchestra.run.smithi044.stdout:Repeating the final host check... 2024-09-17T08:06:44.948 INFO:teuthology.orchestra.run.smithi044.stdout:/bin/podman: stdout 5.2.2 2024-09-17T08:06:44.949 INFO:teuthology.orchestra.run.smithi044.stdout:podman (/bin/podman) version 5.2.2 is present 2024-09-17T08:06:44.949 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl is present 2024-09-17T08:06:44.949 INFO:teuthology.orchestra.run.smithi044.stdout:lvcreate is present 2024-09-17T08:06:44.955 INFO:teuthology.orchestra.run.smithi044.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-17T08:06:44.956 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-17T08:06:44.962 INFO:teuthology.orchestra.run.smithi044.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-17T08:06:44.962 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stdout inactive 2024-09-17T08:06:44.969 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stdout enabled 2024-09-17T08:06:44.975 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stdout active 2024-09-17T08:06:44.975 INFO:teuthology.orchestra.run.smithi044.stdout:Unit chronyd.service is enabled and running 2024-09-17T08:06:44.976 INFO:teuthology.orchestra.run.smithi044.stdout:Host looks OK 2024-09-17T08:06:44.976 INFO:teuthology.orchestra.run.smithi044.stdout:Cluster fsid: ad90ed3e-74cb-11ef-bceb-c7b262605968 2024-09-17T08:06:44.976 INFO:teuthology.orchestra.run.smithi044.stdout:Acquiring lock 139901941358160 on /run/cephadm/ad90ed3e-74cb-11ef-bceb-c7b262605968.lock 2024-09-17T08:06:44.976 INFO:teuthology.orchestra.run.smithi044.stdout:Lock 139901941358160 acquired on /run/cephadm/ad90ed3e-74cb-11ef-bceb-c7b262605968.lock 2024-09-17T08:06:44.976 INFO:teuthology.orchestra.run.smithi044.stdout:Verifying IP 172.21.15.44 port 3300 ... 2024-09-17T08:06:44.977 INFO:teuthology.orchestra.run.smithi044.stdout:Verifying IP 172.21.15.44 port 6789 ... 2024-09-17T08:06:44.977 INFO:teuthology.orchestra.run.smithi044.stdout:Base mon IP(s) is [172.21.15.44:3300, 172.21.15.44:6789], mon addrv is [v2:172.21.15.44:3300,v1:172.21.15.44:6789] 2024-09-17T08:06:44.980 INFO:teuthology.orchestra.run.smithi044.stdout:/sbin/ip: stdout default via 172.21.15.254 dev ens1f0 proto dhcp src 172.21.15.44 metric 100 2024-09-17T08:06:44.980 INFO:teuthology.orchestra.run.smithi044.stdout:/sbin/ip: stdout 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.44 metric 100 2024-09-17T08:06:44.983 INFO:teuthology.orchestra.run.smithi044.stdout:/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-09-17T08:06:44.983 INFO:teuthology.orchestra.run.smithi044.stdout:/sbin/ip: stdout fe80::/64 dev ens1f0 proto kernel metric 256 pref medium 2024-09-17T08:06:44.983 INFO:teuthology.orchestra.run.smithi044.stdout:/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 1024 expires 1793sec hoplimit 64 pref medium 2024-09-17T08:06:44.985 INFO:teuthology.orchestra.run.smithi044.stdout:/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-09-17T08:06:44.985 INFO:teuthology.orchestra.run.smithi044.stdout:/sbin/ip: stdout inet6 ::1/128 scope host 2024-09-17T08:06:44.985 INFO:teuthology.orchestra.run.smithi044.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-17T08:06:44.985 INFO:teuthology.orchestra.run.smithi044.stdout:/sbin/ip: stdout 3: ens1f0: mtu 1500 state UP qlen 1000 2024-09-17T08:06:44.985 INFO:teuthology.orchestra.run.smithi044.stdout:/sbin/ip: stdout inet6 fe80::ec4:7aff:febd:1572/64 scope link 2024-09-17T08:06:44.986 INFO:teuthology.orchestra.run.smithi044.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-17T08:06:44.986 INFO:teuthology.orchestra.run.smithi044.stdout:Mon IP `172.21.15.44` is in CIDR network `172.21.0.0/20` 2024-09-17T08:06:44.986 INFO:teuthology.orchestra.run.smithi044.stdout:Mon IP `172.21.15.44` is in CIDR network `172.21.0.0/20` 2024-09-17T08:06:44.986 INFO:teuthology.orchestra.run.smithi044.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-09-17T08:06:44.987 INFO:teuthology.orchestra.run.smithi044.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-09-17T08:06:44.987 INFO:teuthology.orchestra.run.smithi044.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9... 2024-09-17T08:06:45.478 INFO:teuthology.orchestra.run.smithi044.stdout:/bin/podman: stdout 980a0bfcd684674f25c08d857ad8de3b1c8ae738870529edbf9aa463832c8d89 2024-09-17T08:06:45.478 INFO:teuthology.orchestra.run.smithi044.stdout:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9... 2024-09-17T08:06:45.478 INFO:teuthology.orchestra.run.smithi044.stdout:/bin/podman: stderr Getting image source signatures 2024-09-17T08:06:45.479 INFO:teuthology.orchestra.run.smithi044.stdout:/bin/podman: stderr Copying blob sha256:d8a707c21dc06a64315160cb2d8e524fa91943a344731b2a930ee3a716bebbdd 2024-09-17T08:06:45.479 INFO:teuthology.orchestra.run.smithi044.stdout:/bin/podman: stderr Copying blob sha256:e8b54c863393b7a8216a71737771b73b16a8e43ec7acf927c7faa175c255e551 2024-09-17T08:06:45.479 INFO:teuthology.orchestra.run.smithi044.stdout:/bin/podman: stderr Copying config sha256:980a0bfcd684674f25c08d857ad8de3b1c8ae738870529edbf9aa463832c8d89 2024-09-17T08:06:45.479 INFO:teuthology.orchestra.run.smithi044.stdout:/bin/podman: stderr Writing manifest to image destination 2024-09-17T08:06:46.319 INFO:teuthology.orchestra.run.smithi044.stdout:ceph: stdout ceph version 18.2.4-855-g19e2a2be (19e2a2beb6f41a3ab62650e38614eb29b59dcbb9) reef (stable) 2024-09-17T08:06:46.319 INFO:teuthology.orchestra.run.smithi044.stdout:Ceph version: ceph version 18.2.4-855-g19e2a2be (19e2a2beb6f41a3ab62650e38614eb29b59dcbb9) reef (stable) 2024-09-17T08:06:46.320 INFO:teuthology.orchestra.run.smithi044.stdout:Extracting ceph user uid/gid from container image... 2024-09-17T08:06:47.241 INFO:teuthology.orchestra.run.smithi044.stdout:stat: stdout 167 167 2024-09-17T08:06:47.241 INFO:teuthology.orchestra.run.smithi044.stdout:Creating initial keys... 2024-09-17T08:06:48.180 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph-authtool: stdout AQCXOOlmXAK3IhAAl72TUJ4E0J1LZYAGmAEP+g== 2024-09-17T08:06:49.453 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph-authtool: stdout AQCYOOlmWr6GHxAANe0KNj+MO1uIxKwPCxkePA== 2024-09-17T08:06:58.761 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph-authtool: stdout AQCcOOlmo+QvHhAAcm0JYU4CVXYtJKLQvImIBg== 2024-09-17T08:06:58.761 INFO:teuthology.orchestra.run.smithi044.stdout:Creating initial monmap... 2024-09-17T08:07:01.266 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-17T08:07:01.266 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = pacific 2024-09-17T08:07:01.266 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to ad90ed3e-74cb-11ef-bceb-c7b262605968 2024-09-17T08:07:01.266 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-17T08:07:01.267 INFO:teuthology.orchestra.run.smithi044.stdout:monmaptool for a [v2:172.21.15.44:3300,v1:172.21.15.44:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-17T08:07:01.267 INFO:teuthology.orchestra.run.smithi044.stdout:setting min_mon_release = pacific 2024-09-17T08:07:01.267 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/monmaptool: set fsid to ad90ed3e-74cb-11ef-bceb-c7b262605968 2024-09-17T08:07:01.267 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-17T08:07:01.267 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:07:01.267 INFO:teuthology.orchestra.run.smithi044.stdout:Creating mon... 2024-09-17T08:07:02.181 INFO:teuthology.orchestra.run.smithi044.stdout:create mon.a on 2024-09-17T08:07:02.409 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stderr Removed "/etc/systemd/system/multi-user.target.wants/ceph.target". 2024-09-17T08:07:02.575 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2024-09-17T08:07:02.760 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968.target → /etc/systemd/system/ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968.target. 2024-09-17T08:07:02.761 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968.target → /etc/systemd/system/ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968.target. 2024-09-17T08:07:03.024 INFO:teuthology.orchestra.run.smithi044.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@mon.a 2024-09-17T08:07:03.024 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stderr Failed to reset failed state of unit ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@mon.a.service: Unit ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@mon.a.service not loaded. 2024-09-17T08:07:03.201 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968.target.wants/ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@mon.a.service → /etc/systemd/system/ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@.service. 2024-09-17T08:07:03.257 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:03 smithi044 systemd[1]: Starting Ceph mon.a for ad90ed3e-74cb-11ef-bceb-c7b262605968... 2024-09-17T08:07:03.580 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:03 smithi044 podman[28819]: 2024-09-17 08:07:03.365804662 +0000 UTC m=+0.016630273 image pull 980a0bfcd684674f25c08d857ad8de3b1c8ae738870529edbf9aa463832c8d89 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 2024-09-17T08:07:03.580 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:03 smithi044 podman[28819]: 2024-09-17 08:07:03.580226634 +0000 UTC m=+0.231052229 container create 689c0726474e8f3486525366168f64a9d28522a668562f60eefdcdf1953cc3ce (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mon-a, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=reef-19e2a2b, GIT_BRANCH=HEAD, ceph=True, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.build-date=20240731, io.buildah.version=1.37.2, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS) 2024-09-17T08:07:03.830 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:03 smithi044 podman[28819]: 2024-09-17 08:07:03.782643566 +0000 UTC m=+0.433469173 container init 689c0726474e8f3486525366168f64a9d28522a668562f60eefdcdf1953cc3ce (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mon-a, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, ceph=True, RELEASE=reef-19e2a2b, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux ) 2024-09-17T08:07:03.831 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:03 smithi044 podman[28819]: 2024-09-17 08:07:03.786101395 +0000 UTC m=+0.436926991 container start 689c0726474e8f3486525366168f64a9d28522a668562f60eefdcdf1953cc3ce (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mon-a, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, RELEASE=reef-19e2a2b, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, org.label-schema.build-date=20240731) 2024-09-17T08:07:03.831 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:03 smithi044 ceph-mon[28839]: mkfs ad90ed3e-74cb-11ef-bceb-c7b262605968 2024-09-17T08:07:03.831 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:03 smithi044 ceph-mon[28839]: mon.a is new leader, mons a in quorum (ranks 0) 2024-09-17T08:07:03.913 INFO:teuthology.orchestra.run.smithi044.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-17T08:07:03.913 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stdout disabled 2024-09-17T08:07:03.921 INFO:teuthology.orchestra.run.smithi044.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-17T08:07:03.921 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stdout inactive 2024-09-17T08:07:03.921 INFO:teuthology.orchestra.run.smithi044.stdout:firewalld.service is not enabled 2024-09-17T08:07:03.921 INFO:teuthology.orchestra.run.smithi044.stdout:Not possible to enable service . firewalld.service is not available 2024-09-17T08:07:03.921 INFO:teuthology.orchestra.run.smithi044.stdout:Waiting for mon to start... 2024-09-17T08:07:03.921 INFO:teuthology.orchestra.run.smithi044.stdout:Waiting for mon... 2024-09-17T08:07:04.161 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:03 smithi044 bash[28819]: 689c0726474e8f3486525366168f64a9d28522a668562f60eefdcdf1953cc3ce 2024-09-17T08:07:04.161 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:03 smithi044 systemd[1]: Started Ceph mon.a for ad90ed3e-74cb-11ef-bceb-c7b262605968. 2024-09-17T08:07:05.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:04 smithi044 ceph-mon[28839]: mon.a is new leader, mons a in quorum (ranks 0) 2024-09-17T08:07:05.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:04 smithi044 ceph-mon[28839]: monmap e1: 1 mons at {a=[v2:172.21.15.44:3300/0,v1:172.21.15.44:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-17T08:07:05.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:04 smithi044 ceph-mon[28839]: fsmap 2024-09-17T08:07:05.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:04 smithi044 ceph-mon[28839]: osdmap e1: 0 total, 0 up, 0 in 2024-09-17T08:07:05.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:04 smithi044 ceph-mon[28839]: mgrmap e1: no daemons active 2024-09-17T08:07:05.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:04 smithi044 ceph-mon[28839]: from='client.? 172.21.15.44:0/1540400146' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-09-17T08:07:05.192 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout cluster: 2024-09-17T08:07:05.194 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout id: ad90ed3e-74cb-11ef-bceb-c7b262605968 2024-09-17T08:07:05.194 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-09-17T08:07:05.194 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout 2024-09-17T08:07:05.194 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout services: 2024-09-17T08:07:05.194 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum a (age 0.792116s) 2024-09-17T08:07:05.194 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-09-17T08:07:05.194 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-09-17T08:07:05.194 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout 2024-09-17T08:07:05.195 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout data: 2024-09-17T08:07:05.195 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-09-17T08:07:05.195 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-09-17T08:07:05.195 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-09-17T08:07:05.195 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout pgs: 2024-09-17T08:07:05.195 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout 2024-09-17T08:07:05.195 INFO:teuthology.orchestra.run.smithi044.stdout:mon is available 2024-09-17T08:07:05.195 INFO:teuthology.orchestra.run.smithi044.stdout:Assimilating anything we can from ceph.conf... 2024-09-17T08:07:06.161 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:06 smithi044 ceph-mon[28839]: from='client.? 172.21.15.44:0/2848908620' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-09-17T08:07:06.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:06 smithi044 ceph-mon[28839]: from='client.? 172.21.15.44:0/2848908620' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-17T08:07:06.509 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout 2024-09-17T08:07:06.509 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout [global] 2024-09-17T08:07:06.509 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout fsid = ad90ed3e-74cb-11ef-bceb-c7b262605968 2024-09-17T08:07:06.510 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.44:3300,v1:172.21.15.44:6789] 2024-09-17T08:07:06.510 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-17T08:07:06.510 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-17T08:07:06.510 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-17T08:07:06.510 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-17T08:07:06.510 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout 2024-09-17T08:07:06.510 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-17T08:07:06.510 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout mgr/cephadm/use_agent = False 2024-09-17T08:07:06.510 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-17T08:07:06.510 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout 2024-09-17T08:07:06.510 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout [osd] 2024-09-17T08:07:06.510 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-17T08:07:06.510 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-17T08:07:06.511 INFO:teuthology.orchestra.run.smithi044.stdout:Generating new minimal ceph.conf... 2024-09-17T08:07:07.278 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:07 smithi044 ceph-mon[28839]: from='client.? 172.21.15.44:0/3959786322' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:07:07.531 INFO:teuthology.orchestra.run.smithi044.stdout:Restarting the monitor... 2024-09-17T08:07:07.815 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:07 smithi044 systemd[1]: Stopping Ceph mon.a for ad90ed3e-74cb-11ef-bceb-c7b262605968... 2024-09-17T08:07:08.161 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:07 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mon-a[28834]: 2024-09-17T08:07:07.815+0000 7f473338e640 -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-17T08:07:08.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:07 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mon-a[28834]: 2024-09-17T08:07:07.815+0000 7f473338e640 -1 mon.a@0(leader) e1 *** Got Signal Terminated *** 2024-09-17T08:07:08.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:07 smithi044 podman[29081]: 2024-09-17 08:07:07.948256824 +0000 UTC m=+0.251833581 container died 689c0726474e8f3486525366168f64a9d28522a668562f60eefdcdf1953cc3ce (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mon-a, RELEASE=reef-19e2a2b, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , ceph=True, org.label-schema.schema-version=1.0, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, org.label-schema.build-date=20240731) 2024-09-17T08:07:08.474 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:08 smithi044 podman[29081]: 2024-09-17 08:07:08.289250772 +0000 UTC m=+0.592827528 container cleanup 689c0726474e8f3486525366168f64a9d28522a668562f60eefdcdf1953cc3ce (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mon-a, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, ceph=True, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , RELEASE=reef-19e2a2b) 2024-09-17T08:07:08.474 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:08 smithi044 bash[29081]: ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mon-a 2024-09-17T08:07:08.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:08 smithi044 podman[29093]: 2024-09-17 08:07:08.473590258 +0000 UTC m=+0.523276754 container remove 689c0726474e8f3486525366168f64a9d28522a668562f60eefdcdf1953cc3ce (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mon-a, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, RELEASE=reef-19e2a2b, org.label-schema.license=GPLv2, GIT_CLEAN=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, ceph=True, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-17T08:07:08.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:08 smithi044 systemd[1]: ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@mon.a.service: Deactivated successfully. 2024-09-17T08:07:08.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:08 smithi044 systemd[1]: Stopped Ceph mon.a for ad90ed3e-74cb-11ef-bceb-c7b262605968. 2024-09-17T08:07:08.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:08 smithi044 systemd[1]: Starting Ceph mon.a for ad90ed3e-74cb-11ef-bceb-c7b262605968... 2024-09-17T08:07:09.227 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:08 smithi044 podman[29186]: 2024-09-17 08:07:08.837264819 +0000 UTC m=+0.016000950 image pull 980a0bfcd684674f25c08d857ad8de3b1c8ae738870529edbf9aa463832c8d89 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 2024-09-17T08:07:09.228 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:08 smithi044 podman[29186]: 2024-09-17 08:07:08.936486773 +0000 UTC m=+0.115222932 container create 6ceccba880ab315553c8bff159b4fccd0babc6c5182e56ef4cd7e6ba54bac891 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mon-a, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, ceph=True, RELEASE=reef-19e2a2b, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, GIT_CLEAN=True, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-17T08:07:09.228 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 podman[29186]: 2024-09-17 08:07:09.143897706 +0000 UTC m=+0.322633832 container init 6ceccba880ab315553c8bff159b4fccd0babc6c5182e56ef4cd7e6ba54bac891 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mon-a, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, RELEASE=reef-19e2a2b, org.label-schema.license=GPLv2, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, GIT_CLEAN=True, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, maintainer=Guillaume Abrioux , ceph=True, org.label-schema.build-date=20240731) 2024-09-17T08:07:09.228 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 podman[29186]: 2024-09-17 08:07:09.147147993 +0000 UTC m=+0.325884109 container start 6ceccba880ab315553c8bff159b4fccd0babc6c5182e56ef4cd7e6ba54bac891 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mon-a, org.label-schema.schema-version=1.0, io.buildah.version=1.37.2, RELEASE=reef-19e2a2b, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, ceph=True) 2024-09-17T08:07:09.228 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: set uid:gid to 167:167 (ceph:ceph) 2024-09-17T08:07:09.228 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: ceph version 18.2.4-855-g19e2a2be (19e2a2beb6f41a3ab62650e38614eb29b59dcbb9) reef (stable), process ceph-mon, pid 2 2024-09-17T08:07:09.228 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: pidfile_write: ignore empty --pid-file 2024-09-17T08:07:09.228 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: load: jerasure load: lrc 2024-09-17T08:07:09.228 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: RocksDB version: 7.9.2 2024-09-17T08:07:09.228 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Git sha 0 2024-09-17T08:07:09.229 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Compile date 2024-09-16 15:15:13 2024-09-17T08:07:09.229 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: DB SUMMARY 2024-09-17T08:07:09.229 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: DB Session ID: 7UN7MYHT2KSMNUWKM6QN 2024-09-17T08:07:09.229 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: CURRENT file: CURRENT 2024-09-17T08:07:09.229 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: IDENTITY file: IDENTITY 2024-09-17T08:07:09.229 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-09-17T08:07:09.229 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 1, files: 000008.sst 2024-09-17T08:07:09.229 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 000009.log size: 83740 ; 2024-09-17T08:07:09.229 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.error_if_exists: 0 2024-09-17T08:07:09.229 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.create_if_missing: 0 2024-09-17T08:07:09.229 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.paranoid_checks: 1 2024-09-17T08:07:09.229 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.flush_verify_memtable_count: 1 2024-09-17T08:07:09.230 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-17T08:07:09.230 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-17T08:07:09.230 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.env: 0x5578a7c21bc0 2024-09-17T08:07:09.230 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.fs: PosixFileSystem 2024-09-17T08:07:09.230 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.info_log: 0x5578a99a4be0 2024-09-17T08:07:09.230 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.max_file_opening_threads: 16 2024-09-17T08:07:09.230 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.statistics: (nil) 2024-09-17T08:07:09.230 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.use_fsync: 0 2024-09-17T08:07:09.230 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.max_log_file_size: 0 2024-09-17T08:07:09.230 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-17T08:07:09.230 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.log_file_time_to_roll: 0 2024-09-17T08:07:09.230 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.keep_log_file_num: 1000 2024-09-17T08:07:09.230 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.recycle_log_file_num: 0 2024-09-17T08:07:09.231 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.allow_fallocate: 1 2024-09-17T08:07:09.231 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.allow_mmap_reads: 0 2024-09-17T08:07:09.231 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.allow_mmap_writes: 0 2024-09-17T08:07:09.231 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.use_direct_reads: 0 2024-09-17T08:07:09.231 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-17T08:07:09.231 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.create_missing_column_families: 0 2024-09-17T08:07:09.231 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.db_log_dir: 2024-09-17T08:07:09.231 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.wal_dir: 2024-09-17T08:07:09.231 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.table_cache_numshardbits: 6 2024-09-17T08:07:09.231 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.WAL_ttl_seconds: 0 2024-09-17T08:07:09.231 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.WAL_size_limit_MB: 0 2024-09-17T08:07:09.231 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-17T08:07:09.232 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-17T08:07:09.232 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.is_fd_close_on_exec: 1 2024-09-17T08:07:09.232 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.advise_random_on_open: 1 2024-09-17T08:07:09.232 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.db_write_buffer_size: 0 2024-09-17T08:07:09.232 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.write_buffer_manager: 0x5578a99b2320 2024-09-17T08:07:09.232 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-17T08:07:09.232 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-17T08:07:09.232 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.use_adaptive_mutex: 0 2024-09-17T08:07:09.232 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.rate_limiter: (nil) 2024-09-17T08:07:09.232 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-17T08:07:09.232 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.wal_recovery_mode: 2 2024-09-17T08:07:09.234 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.enable_thread_tracking: 0 2024-09-17T08:07:09.234 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.enable_pipelined_write: 0 2024-09-17T08:07:09.234 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.unordered_write: 0 2024-09-17T08:07:09.234 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-17T08:07:09.234 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-17T08:07:09.234 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-17T08:07:09.234 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-17T08:07:09.234 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.row_cache: None 2024-09-17T08:07:09.234 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.wal_filter: None 2024-09-17T08:07:09.234 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-17T08:07:09.234 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.allow_ingest_behind: 0 2024-09-17T08:07:09.234 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.two_write_queues: 0 2024-09-17T08:07:09.235 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.manual_wal_flush: 0 2024-09-17T08:07:09.235 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.wal_compression: 0 2024-09-17T08:07:09.235 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.atomic_flush: 0 2024-09-17T08:07:09.235 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-17T08:07:09.235 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.persist_stats_to_disk: 0 2024-09-17T08:07:09.235 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.write_dbid_to_manifest: 0 2024-09-17T08:07:09.235 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.log_readahead_size: 0 2024-09-17T08:07:09.235 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-17T08:07:09.235 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.best_efforts_recovery: 0 2024-09-17T08:07:09.235 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-17T08:07:09.235 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-17T08:07:09.235 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.allow_data_in_errors: 0 2024-09-17T08:07:09.235 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.db_host_id: __hostname__ 2024-09-17T08:07:09.236 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.enforce_single_del_contracts: true 2024-09-17T08:07:09.236 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.max_background_jobs: 2 2024-09-17T08:07:09.236 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.max_background_compactions: -1 2024-09-17T08:07:09.236 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.max_subcompactions: 1 2024-09-17T08:07:09.236 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-17T08:07:09.236 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-17T08:07:09.236 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.delayed_write_rate : 16777216 2024-09-17T08:07:09.236 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.max_total_wal_size: 0 2024-09-17T08:07:09.236 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-17T08:07:09.236 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.stats_dump_period_sec: 600 2024-09-17T08:07:09.236 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.stats_persist_period_sec: 600 2024-09-17T08:07:09.236 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-17T08:07:09.236 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.max_open_files: -1 2024-09-17T08:07:09.237 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.bytes_per_sync: 0 2024-09-17T08:07:09.237 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.wal_bytes_per_sync: 0 2024-09-17T08:07:09.237 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.strict_bytes_per_sync: 0 2024-09-17T08:07:09.237 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.compaction_readahead_size: 0 2024-09-17T08:07:09.237 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.max_background_flushes: -1 2024-09-17T08:07:09.237 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Compression algorithms supported: 2024-09-17T08:07:09.237 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: kZSTD supported: 0 2024-09-17T08:07:09.237 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: kXpressCompression supported: 0 2024-09-17T08:07:09.237 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: kBZip2Compression supported: 0 2024-09-17T08:07:09.237 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-17T08:07:09.237 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: kLZ4Compression supported: 1 2024-09-17T08:07:09.237 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: kZlibCompression supported: 1 2024-09-17T08:07:09.237 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: kLZ4HCCompression supported: 1 2024-09-17T08:07:09.237 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: kSnappyCompression supported: 1 2024-09-17T08:07:09.238 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Fast CRC32 supported: Supported on x86 2024-09-17T08:07:09.238 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: DMutex implementation: pthread_mutex_t 2024-09-17T08:07:09.238 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 2024-09-17T08:07:09.238 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-17T08:07:09.238 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-17T08:07:09.238 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.merge_operator: 2024-09-17T08:07:09.238 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.compaction_filter: None 2024-09-17T08:07:09.238 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.compaction_filter_factory: None 2024-09-17T08:07:09.238 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.sst_partitioner_factory: None 2024-09-17T08:07:09.238 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.memtable_factory: SkipListFactory 2024-09-17T08:07:09.238 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.table_factory: BlockBasedTable 2024-09-17T08:07:09.238 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x5578a99a47e0) 2024-09-17T08:07:09.238 INFO:journalctl@ceph.mon.a.smithi044.stdout: cache_index_and_filter_blocks: 1 2024-09-17T08:07:09.238 INFO:journalctl@ceph.mon.a.smithi044.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-17T08:07:09.239 INFO:journalctl@ceph.mon.a.smithi044.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-17T08:07:09.239 INFO:journalctl@ceph.mon.a.smithi044.stdout: pin_top_level_index_and_filter: 1 2024-09-17T08:07:09.239 INFO:journalctl@ceph.mon.a.smithi044.stdout: index_type: 0 2024-09-17T08:07:09.239 INFO:journalctl@ceph.mon.a.smithi044.stdout: data_block_index_type: 0 2024-09-17T08:07:09.239 INFO:journalctl@ceph.mon.a.smithi044.stdout: index_shortening: 1 2024-09-17T08:07:09.239 INFO:journalctl@ceph.mon.a.smithi044.stdout: data_block_hash_table_util_ratio: 0.750000 2024-09-17T08:07:09.239 INFO:journalctl@ceph.mon.a.smithi044.stdout: checksum: 4 2024-09-17T08:07:09.239 INFO:journalctl@ceph.mon.a.smithi044.stdout: no_block_cache: 0 2024-09-17T08:07:09.239 INFO:journalctl@ceph.mon.a.smithi044.stdout: block_cache: 0x5578a9999350 2024-09-17T08:07:09.239 INFO:journalctl@ceph.mon.a.smithi044.stdout: block_cache_name: BinnedLRUCache 2024-09-17T08:07:09.239 INFO:journalctl@ceph.mon.a.smithi044.stdout: block_cache_options: 2024-09-17T08:07:09.239 INFO:journalctl@ceph.mon.a.smithi044.stdout: capacity : 536870912 2024-09-17T08:07:09.239 INFO:journalctl@ceph.mon.a.smithi044.stdout: num_shard_bits : 4 2024-09-17T08:07:09.239 INFO:journalctl@ceph.mon.a.smithi044.stdout: strict_capacity_limit : 0 2024-09-17T08:07:09.240 INFO:journalctl@ceph.mon.a.smithi044.stdout: high_pri_pool_ratio: 0.000 2024-09-17T08:07:09.240 INFO:journalctl@ceph.mon.a.smithi044.stdout: block_cache_compressed: (nil) 2024-09-17T08:07:09.240 INFO:journalctl@ceph.mon.a.smithi044.stdout: persistent_cache: (nil) 2024-09-17T08:07:09.240 INFO:journalctl@ceph.mon.a.smithi044.stdout: block_size: 4096 2024-09-17T08:07:09.240 INFO:journalctl@ceph.mon.a.smithi044.stdout: block_size_deviation: 10 2024-09-17T08:07:09.240 INFO:journalctl@ceph.mon.a.smithi044.stdout: block_restart_interval: 16 2024-09-17T08:07:09.240 INFO:journalctl@ceph.mon.a.smithi044.stdout: index_block_restart_interval: 1 2024-09-17T08:07:09.240 INFO:journalctl@ceph.mon.a.smithi044.stdout: metadata_block_size: 4096 2024-09-17T08:07:09.240 INFO:journalctl@ceph.mon.a.smithi044.stdout: partition_filters: 0 2024-09-17T08:07:09.240 INFO:journalctl@ceph.mon.a.smithi044.stdout: use_delta_encoding: 1 2024-09-17T08:07:09.240 INFO:journalctl@ceph.mon.a.smithi044.stdout: filter_policy: bloomfilter 2024-09-17T08:07:09.240 INFO:journalctl@ceph.mon.a.smithi044.stdout: whole_key_filtering: 1 2024-09-17T08:07:09.240 INFO:journalctl@ceph.mon.a.smithi044.stdout: verify_compression: 0 2024-09-17T08:07:09.240 INFO:journalctl@ceph.mon.a.smithi044.stdout: read_amp_bytes_per_bit: 0 2024-09-17T08:07:09.241 INFO:journalctl@ceph.mon.a.smithi044.stdout: format_version: 5 2024-09-17T08:07:09.241 INFO:journalctl@ceph.mon.a.smithi044.stdout: enable_index_compression: 1 2024-09-17T08:07:09.241 INFO:journalctl@ceph.mon.a.smithi044.stdout: block_align: 0 2024-09-17T08:07:09.241 INFO:journalctl@ceph.mon.a.smithi044.stdout: max_auto_readahead_size: 262144 2024-09-17T08:07:09.241 INFO:journalctl@ceph.mon.a.smithi044.stdout: prepopulate_block_cache: 0 2024-09-17T08:07:09.241 INFO:journalctl@ceph.mon.a.smithi044.stdout: initial_auto_readahead_size: 8192 2024-09-17T08:07:09.241 INFO:journalctl@ceph.mon.a.smithi044.stdout: num_file_reads_for_auto_readahead: 2 2024-09-17T08:07:09.241 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.write_buffer_size: 33554432 2024-09-17T08:07:09.241 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.max_write_buffer_number: 2 2024-09-17T08:07:09.241 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.compression: NoCompression 2024-09-17T08:07:09.241 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.bottommost_compression: Disabled 2024-09-17T08:07:09.241 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.prefix_extractor: nullptr 2024-09-17T08:07:09.241 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-17T08:07:09.241 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.num_levels: 7 2024-09-17T08:07:09.242 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-17T08:07:09.242 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-17T08:07:09.242 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-17T08:07:09.242 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-17T08:07:09.242 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-17T08:07:09.242 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-17T08:07:09.242 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-17T08:07:09.242 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-17T08:07:09.242 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-17T08:07:09.242 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-17T08:07:09.242 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-17T08:07:09.242 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-17T08:07:09.242 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.compression_opts.window_bits: -14 2024-09-17T08:07:09.243 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.compression_opts.level: 32767 2024-09-17T08:07:09.243 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.compression_opts.strategy: 0 2024-09-17T08:07:09.243 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-17T08:07:09.243 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-17T08:07:09.243 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-17T08:07:09.243 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-17T08:07:09.243 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.compression_opts.enabled: false 2024-09-17T08:07:09.243 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-17T08:07:09.243 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-17T08:07:09.243 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-17T08:07:09.243 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-17T08:07:09.243 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.target_file_size_base: 67108864 2024-09-17T08:07:09.243 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.target_file_size_multiplier: 1 2024-09-17T08:07:09.243 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-17T08:07:09.244 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-17T08:07:09.244 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-17T08:07:09.244 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-17T08:07:09.244 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-17T08:07:09.244 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-17T08:07:09.244 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-17T08:07:09.244 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-17T08:07:09.244 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-17T08:07:09.244 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-17T08:07:09.244 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-17T08:07:09.244 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-17T08:07:09.244 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-17T08:07:09.244 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.arena_block_size: 1048576 2024-09-17T08:07:09.244 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-17T08:07:09.245 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-17T08:07:09.245 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.disable_auto_compactions: 0 2024-09-17T08:07:09.245 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-17T08:07:09.245 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-17T08:07:09.245 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-17T08:07:09.245 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-17T08:07:09.245 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-17T08:07:09.245 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-17T08:07:09.245 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-17T08:07:09.245 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-17T08:07:09.245 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-17T08:07:09.245 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-17T08:07:09.245 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-17T08:07:09.245 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.inplace_update_support: 0 2024-09-17T08:07:09.246 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.inplace_update_num_locks: 10000 2024-09-17T08:07:09.246 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-17T08:07:09.246 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-17T08:07:09.246 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.memtable_huge_page_size: 0 2024-09-17T08:07:09.246 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.bloom_locality: 0 2024-09-17T08:07:09.246 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.max_successive_merges: 0 2024-09-17T08:07:09.246 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.optimize_filters_for_hits: 0 2024-09-17T08:07:09.246 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.paranoid_file_checks: 0 2024-09-17T08:07:09.246 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.force_consistency_checks: 1 2024-09-17T08:07:09.246 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.report_bg_io_stats: 0 2024-09-17T08:07:09.246 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.ttl: 2592000 2024-09-17T08:07:09.246 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.periodic_compaction_seconds: 0 2024-09-17T08:07:09.246 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-17T08:07:09.246 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-17T08:07:09.247 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.enable_blob_files: false 2024-09-17T08:07:09.247 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.min_blob_size: 0 2024-09-17T08:07:09.247 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.blob_file_size: 268435456 2024-09-17T08:07:09.247 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.blob_compression_type: NoCompression 2024-09-17T08:07:09.247 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.enable_blob_garbage_collection: false 2024-09-17T08:07:09.247 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-17T08:07:09.247 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-17T08:07:09.247 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-17T08:07:09.247 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.blob_file_starting_level: 0 2024-09-17T08:07:09.247 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-17T08:07:09.247 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: 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-17T08:07:09.247 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-09-17T08:07:09.247 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: bc7fdd8b-100c-46c7-9b28-78b92e5d3ff7 2024-09-17T08:07:09.247 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726560429173155, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-09-17T08:07:09.248 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-09-17T08:07:09.248 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726560429174102, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 80513, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 250, "table_properties": {"data_size": 78674, "index_size": 223, "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": 9896, "raw_average_key_size": 47, "raw_value_size": 72982, "raw_average_value_size": 349, "num_data_blocks": 10, "num_entries": 209, "num_filter_entries": 209, "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": 1726560429, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "bc7fdd8b-100c-46c7-9b28-78b92e5d3ff7", "db_session_id": "7UN7MYHT2KSMNUWKM6QN", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-09-17T08:07:09.248 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726560429174178, "job": 1, "event": "recovery_finished"} 2024-09-17T08:07:09.248 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-09-17T08:07:09.248 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: 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-17T08:07:09.248 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x5578a99c4e00 2024-09-17T08:07:09.248 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: DB pointer 0x5578a9ab8000 2024-09-17T08:07:09.248 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-17T08:07:09.248 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-17T08:07:09.248 INFO:journalctl@ceph.mon.a.smithi044.stdout: ** DB Stats ** 2024-09-17T08:07:09.248 INFO:journalctl@ceph.mon.a.smithi044.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-17T08:07:09.248 INFO:journalctl@ceph.mon.a.smithi044.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-17T08:07:09.248 INFO:journalctl@ceph.mon.a.smithi044.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-17T08:07:09.249 INFO:journalctl@ceph.mon.a.smithi044.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-17T08:07:09.249 INFO:journalctl@ceph.mon.a.smithi044.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-17T08:07:09.249 INFO:journalctl@ceph.mon.a.smithi044.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-17T08:07:09.249 INFO:journalctl@ceph.mon.a.smithi044.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-17T08:07:09.249 INFO:journalctl@ceph.mon.a.smithi044.stdout: 2024-09-17T08:07:09.249 INFO:journalctl@ceph.mon.a.smithi044.stdout: ** Compaction Stats [default] ** 2024-09-17T08:07:09.249 INFO:journalctl@ceph.mon.a.smithi044.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-17T08:07:09.249 INFO:journalctl@ceph.mon.a.smithi044.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-17T08:07:09.249 INFO:journalctl@ceph.mon.a.smithi044.stdout: L0 2/0 80.49 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 126.3 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T08:07:09.249 INFO:journalctl@ceph.mon.a.smithi044.stdout: Sum 2/0 80.49 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 126.3 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T08:07:09.249 INFO:journalctl@ceph.mon.a.smithi044.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 126.3 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T08:07:09.249 INFO:journalctl@ceph.mon.a.smithi044.stdout: 2024-09-17T08:07:09.249 INFO:journalctl@ceph.mon.a.smithi044.stdout: ** Compaction Stats [default] ** 2024-09-17T08:07:09.249 INFO:journalctl@ceph.mon.a.smithi044.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-17T08:07:09.250 INFO:journalctl@ceph.mon.a.smithi044.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-17T08:07:09.250 INFO:journalctl@ceph.mon.a.smithi044.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 126.3 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T08:07:09.250 INFO:journalctl@ceph.mon.a.smithi044.stdout: 2024-09-17T08:07:09.250 INFO:journalctl@ceph.mon.a.smithi044.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-17T08:07:09.250 INFO:journalctl@ceph.mon.a.smithi044.stdout: 2024-09-17T08:07:09.250 INFO:journalctl@ceph.mon.a.smithi044.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-17T08:07:09.250 INFO:journalctl@ceph.mon.a.smithi044.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-09-17T08:07:09.250 INFO:journalctl@ceph.mon.a.smithi044.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-17T08:07:09.250 INFO:journalctl@ceph.mon.a.smithi044.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-09-17T08:07:09.250 INFO:journalctl@ceph.mon.a.smithi044.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-09-17T08:07:09.250 INFO:journalctl@ceph.mon.a.smithi044.stdout: AddFile(Keys): cumulative 0, interval 0 2024-09-17T08:07:09.250 INFO:journalctl@ceph.mon.a.smithi044.stdout: Cumulative compaction: 0.00 GB write, 24.49 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-17T08:07:09.250 INFO:journalctl@ceph.mon.a.smithi044.stdout: Interval compaction: 0.00 GB write, 24.49 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-17T08:07:09.251 INFO:journalctl@ceph.mon.a.smithi044.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-17T08:07:09.251 INFO:journalctl@ceph.mon.a.smithi044.stdout: Block cache BinnedLRUCache@0x5578a9999350#2 capacity: 512.00 MB usage: 1.17 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 8e-06 secs_since: 0 2024-09-17T08:07:09.251 INFO:journalctl@ceph.mon.a.smithi044.stdout: Block cache entry stats(count,size,portion): FilterBlock(2,0.77 KB,0.000146031%) IndexBlock(2,0.41 KB,7.7486e-05%) Misc(1,0.00 KB,0%) 2024-09-17T08:07:09.251 INFO:journalctl@ceph.mon.a.smithi044.stdout: 2024-09-17T08:07:09.251 INFO:journalctl@ceph.mon.a.smithi044.stdout: ** File Read Latency Histogram By Level [default] ** 2024-09-17T08:07:09.251 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: starting mon.a rank 0 at public addrs [v2:172.21.15.44:3300/0,v1:172.21.15.44:6789/0] at bind addrs [v2:172.21.15.44:3300/0,v1:172.21.15.44:6789/0] mon_data /var/lib/ceph/mon/ceph-a fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 2024-09-17T08:07:09.251 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: mon.a@-1(???) e1 preinit fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 2024-09-17T08:07:09.251 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: mon.a@-1(???).mds e1 new map 2024-09-17T08:07:09.251 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: mon.a@-1(???).mds e1 print_map 2024-09-17T08:07:09.251 INFO:journalctl@ceph.mon.a.smithi044.stdout: e1 2024-09-17T08:07:09.251 INFO:journalctl@ceph.mon.a.smithi044.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-09-17T08:07:09.251 INFO:journalctl@ceph.mon.a.smithi044.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-17T08:07:09.251 INFO:journalctl@ceph.mon.a.smithi044.stdout: legacy client fscid: -1 2024-09-17T08:07:09.252 INFO:journalctl@ceph.mon.a.smithi044.stdout: 2024-09-17T08:07:09.252 INFO:journalctl@ceph.mon.a.smithi044.stdout: No filesystems configured 2024-09-17T08:07:09.252 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: mon.a@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-17T08:07:09.252 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T08:07:09.252 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T08:07:09.252 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T08:07:09.252 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: mon.a@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-09-17T08:07:09.252 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 bash[29186]: 6ceccba880ab315553c8bff159b4fccd0babc6c5182e56ef4cd7e6ba54bac891 2024-09-17T08:07:09.252 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 systemd[1]: Started Ceph mon.a for ad90ed3e-74cb-11ef-bceb-c7b262605968. 2024-09-17T08:07:09.252 INFO:teuthology.orchestra.run.smithi044.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-09-17T08:07:09.530 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: mon.a is new leader, mons a in quorum (ranks 0) 2024-09-17T08:07:09.530 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: monmap e1: 1 mons at {a=[v2:172.21.15.44:3300/0,v1:172.21.15.44:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-17T08:07:09.530 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: fsmap 2024-09-17T08:07:09.530 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: osdmap e1: 0 total, 0 up, 0 in 2024-09-17T08:07:09.530 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:09 smithi044 ceph-mon[29204]: mgrmap e1: no daemons active 2024-09-17T08:07:10.287 INFO:teuthology.orchestra.run.smithi044.stdout:Wrote config to /etc/ceph/ceph.conf 2024-09-17T08:07:10.308 INFO:teuthology.orchestra.run.smithi044.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-09-17T08:07:10.308 INFO:teuthology.orchestra.run.smithi044.stdout:Creating mgr... 2024-09-17T08:07:10.308 INFO:teuthology.orchestra.run.smithi044.stdout:Verifying port 0.0.0.0:9283 ... 2024-09-17T08:07:10.309 INFO:teuthology.orchestra.run.smithi044.stdout:Verifying port 0.0.0.0:8765 ... 2024-09-17T08:07:10.599 INFO:teuthology.orchestra.run.smithi044.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@mgr.a 2024-09-17T08:07:10.599 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stderr Failed to reset failed state of unit ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@mgr.a.service: Unit ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@mgr.a.service not loaded. 2024-09-17T08:07:10.751 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968.target.wants/ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@mgr.a.service → /etc/systemd/system/ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@.service. 2024-09-17T08:07:10.979 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:10 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/4140920027' entity='client.admin' 2024-09-17T08:07:10.980 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:10 smithi044 systemd[1]: Starting Ceph mgr.a for ad90ed3e-74cb-11ef-bceb-c7b262605968... 2024-09-17T08:07:11.282 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:10 smithi044 podman[29414]: 2024-09-17 08:07:10.979301446 +0000 UTC m=+0.104270296 container create 07bbec32ecc7564ecd44166d21bfc4e63b6f12d236230776e9bd5c6449a30dab (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, RELEASE=reef-19e2a2b, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, GIT_CLEAN=True, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-17T08:07:11.282 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:10 smithi044 podman[29414]: 2024-09-17 08:07:10.890841846 +0000 UTC m=+0.015810708 image pull 980a0bfcd684674f25c08d857ad8de3b1c8ae738870529edbf9aa463832c8d89 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 2024-09-17T08:07:11.282 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:11 smithi044 podman[29414]: 2024-09-17 08:07:11.206471937 +0000 UTC m=+0.331440785 container init 07bbec32ecc7564ecd44166d21bfc4e63b6f12d236230776e9bd5c6449a30dab (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a, org.label-schema.schema-version=1.0, GIT_CLEAN=True, ceph=True, io.buildah.version=1.37.2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, RELEASE=reef-19e2a2b, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux ) 2024-09-17T08:07:11.282 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:11 smithi044 podman[29414]: 2024-09-17 08:07:11.209256031 +0000 UTC m=+0.334224882 container start 07bbec32ecc7564ecd44166d21bfc4e63b6f12d236230776e9bd5c6449a30dab (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a, org.label-schema.license=GPLv2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_BRANCH=HEAD, GIT_CLEAN=True, org.label-schema.vendor=CentOS, ceph=True, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, io.buildah.version=1.37.2, RELEASE=reef-19e2a2b, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-17T08:07:11.282 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:11 smithi044 bash[29414]: 07bbec32ecc7564ecd44166d21bfc4e63b6f12d236230776e9bd5c6449a30dab 2024-09-17T08:07:11.295 INFO:teuthology.orchestra.run.smithi044.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-17T08:07:11.296 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stdout disabled 2024-09-17T08:07:11.303 INFO:teuthology.orchestra.run.smithi044.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-17T08:07:11.303 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stdout inactive 2024-09-17T08:07:11.303 INFO:teuthology.orchestra.run.smithi044.stdout:firewalld.service is not enabled 2024-09-17T08:07:11.304 INFO:teuthology.orchestra.run.smithi044.stdout:Not possible to enable service . firewalld.service is not available 2024-09-17T08:07:11.312 INFO:teuthology.orchestra.run.smithi044.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-17T08:07:11.312 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stdout disabled 2024-09-17T08:07:11.320 INFO:teuthology.orchestra.run.smithi044.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-17T08:07:11.320 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stdout inactive 2024-09-17T08:07:11.320 INFO:teuthology.orchestra.run.smithi044.stdout:firewalld.service is not enabled 2024-09-17T08:07:11.320 INFO:teuthology.orchestra.run.smithi044.stdout:Not possible to open ports <[9283, 8765]>. firewalld.service is not available 2024-09-17T08:07:11.320 INFO:teuthology.orchestra.run.smithi044.stdout:Waiting for mgr to start... 2024-09-17T08:07:11.321 INFO:teuthology.orchestra.run.smithi044.stdout:Waiting for mgr... 2024-09-17T08:07:11.549 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:11 smithi044 systemd[1]: Started Ceph mgr.a for ad90ed3e-74cb-11ef-bceb-c7b262605968. 2024-09-17T08:07:11.549 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:11 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:11.333+0000 7fd538d55040 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-17T08:07:11.550 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:11 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:11.393+0000 7fd538d55040 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-17T08:07:11.550 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:11 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:11.549+0000 7fd538d55040 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-09-17T08:07:11.850 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:11 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:11.620+0000 7fd538d55040 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-17T08:07:11.850 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:11 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:11.774+0000 7fd538d55040 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-17T08:07:12.161 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:11 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/390839257' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-17T08:07:12.161 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:11 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:11.927+0000 7fd538d55040 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-17T08:07:12.460 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout 2024-09-17T08:07:12.460 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout { 2024-09-17T08:07:12.460 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "fsid": "ad90ed3e-74cb-11ef-bceb-c7b262605968", 2024-09-17T08:07:12.460 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "health": { 2024-09-17T08:07:12.460 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-17T08:07:12.460 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-17T08:07:12.460 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-17T08:07:12.460 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:07:12.460 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-17T08:07:12.460 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-17T08:07:12.460 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout 0 2024-09-17T08:07:12.460 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout ], 2024-09-17T08:07:12.461 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-17T08:07:12.461 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "a" 2024-09-17T08:07:12.461 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout ], 2024-09-17T08:07:12.461 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "quorum_age": 2, 2024-09-17T08:07:12.461 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-17T08:07:12.461 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T08:07:12.461 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "reef", 2024-09-17T08:07:12.461 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-17T08:07:12.461 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:07:12.461 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-17T08:07:12.461 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T08:07:12.461 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-17T08:07:12.461 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-17T08:07:12.462 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-17T08:07:12.462 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-17T08:07:12.465 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-17T08:07:12.465 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-17T08:07:12.465 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:07:12.465 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-17T08:07:12.465 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-17T08:07:12.465 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-17T08:07:12.465 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-17T08:07:12.465 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-17T08:07:12.466 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-17T08:07:12.466 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-17T08:07:12.466 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-17T08:07:12.466 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-17T08:07:12.466 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:07:12.466 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-17T08:07:12.466 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T08:07:12.466 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-17T08:07:12.466 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-17T08:07:12.466 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:07:12.466 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-17T08:07:12.466 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-17T08:07:12.466 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-17T08:07:12.466 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-17T08:07:12.467 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-17T08:07:12.467 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-17T08:07:12.467 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "restful" 2024-09-17T08:07:12.467 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout ], 2024-09-17T08:07:12.467 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T08:07:12.467 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:07:12.467 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-17T08:07:12.467 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T08:07:12.467 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "modified": "2024-09-17T08:07:03.825973+0000", 2024-09-17T08:07:12.467 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T08:07:12.467 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:07:12.467 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-17T08:07:12.467 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout } 2024-09-17T08:07:12.467 INFO:teuthology.orchestra.run.smithi044.stdout:mgr not available, waiting (1/15)... 2024-09-17T08:07:12.504 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:12 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:12.250+0000 7fd538d55040 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-17T08:07:12.504 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:12 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:12.313+0000 7fd538d55040 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-17T08:07:12.911 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:12 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:12.503+0000 7fd538d55040 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-17T08:07:13.661 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:13 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:13.408+0000 7fd538d55040 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-17T08:07:13.661 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:13 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:13.477+0000 7fd538d55040 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-17T08:07:14.500 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:14 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:14.231+0000 7fd538d55040 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-17T08:07:14.500 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:14 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:14.350+0000 7fd538d55040 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-17T08:07:14.500 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:14 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:14.499+0000 7fd538d55040 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-17T08:07:14.789 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:14 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:14.562+0000 7fd538d55040 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-17T08:07:14.790 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:14 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:14.719+0000 7fd538d55040 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-17T08:07:14.790 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:14 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:14.789+0000 7fd538d55040 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-17T08:07:15.088 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:15 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/1894174026' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-17T08:07:15.088 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:14 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:14.852+0000 7fd538d55040 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-17T08:07:15.089 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:15 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:15.020+0000 7fd538d55040 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-17T08:07:15.089 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:15 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:15.088+0000 7fd538d55040 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-17T08:07:15.366 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:15 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:15.157+0000 7fd538d55040 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-17T08:07:15.366 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:15 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:15.243+0000 7fd538d55040 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-17T08:07:15.366 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:15 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:15.305+0000 7fd538d55040 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-17T08:07:15.366 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:15 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:15.365+0000 7fd538d55040 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-17T08:07:15.596 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout 2024-09-17T08:07:15.597 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout { 2024-09-17T08:07:15.597 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "fsid": "ad90ed3e-74cb-11ef-bceb-c7b262605968", 2024-09-17T08:07:15.597 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "health": { 2024-09-17T08:07:15.597 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-17T08:07:15.597 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-17T08:07:15.597 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-17T08:07:15.597 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:07:15.597 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-17T08:07:15.597 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-17T08:07:15.597 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout 0 2024-09-17T08:07:15.598 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout ], 2024-09-17T08:07:15.598 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-17T08:07:15.598 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "a" 2024-09-17T08:07:15.598 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout ], 2024-09-17T08:07:15.598 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "quorum_age": 5, 2024-09-17T08:07:15.598 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-17T08:07:15.598 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T08:07:15.598 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "reef", 2024-09-17T08:07:15.598 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-17T08:07:15.598 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:07:15.598 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-17T08:07:15.598 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T08:07:15.598 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-17T08:07:15.599 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-17T08:07:15.599 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-17T08:07:15.599 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-17T08:07:15.599 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-17T08:07:15.599 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-17T08:07:15.599 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:07:15.599 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-17T08:07:15.599 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-17T08:07:15.599 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-17T08:07:15.599 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-17T08:07:15.599 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-17T08:07:15.599 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-17T08:07:15.599 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-17T08:07:15.600 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-17T08:07:15.600 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-17T08:07:15.600 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:07:15.600 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-17T08:07:15.600 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T08:07:15.600 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-17T08:07:15.600 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-17T08:07:15.600 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:07:15.600 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-17T08:07:15.600 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-17T08:07:15.600 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-17T08:07:15.600 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-17T08:07:15.600 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-17T08:07:15.601 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-17T08:07:15.601 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "restful" 2024-09-17T08:07:15.601 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout ], 2024-09-17T08:07:15.601 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T08:07:15.601 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:07:15.601 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-17T08:07:15.601 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T08:07:15.601 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "modified": "2024-09-17T08:07:03.825973+0000", 2024-09-17T08:07:15.601 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T08:07:15.601 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:07:15.601 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-17T08:07:15.601 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout } 2024-09-17T08:07:15.601 INFO:teuthology.orchestra.run.smithi044.stdout:mgr not available, waiting (2/15)... 2024-09-17T08:07:16.661 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:16 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:16.178+0000 7fd538d55040 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-17T08:07:16.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:16 smithi044 ceph-mon[29204]: Activating manager daemon a 2024-09-17T08:07:16.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:16 smithi044 ceph-mon[29204]: mgrmap e2: a(active, starting, since 0.00305281s) 2024-09-17T08:07:16.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:16 smithi044 ceph-mon[29204]: from='mgr.14100 172.21.15.44:0/482535279' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-17T08:07:16.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:16 smithi044 ceph-mon[29204]: from='mgr.14100 172.21.15.44:0/482535279' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-17T08:07:16.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:16 smithi044 ceph-mon[29204]: from='mgr.14100 172.21.15.44:0/482535279' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-17T08:07:16.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:16 smithi044 ceph-mon[29204]: from='mgr.14100 172.21.15.44:0/482535279' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T08:07:16.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:16 smithi044 ceph-mon[29204]: from='mgr.14100 172.21.15.44:0/482535279' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-09-17T08:07:16.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:16 smithi044 ceph-mon[29204]: Manager daemon a is now available 2024-09-17T08:07:16.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:16 smithi044 ceph-mon[29204]: from='mgr.14100 172.21.15.44:0/482535279' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-09-17T08:07:16.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:16 smithi044 ceph-mon[29204]: from='mgr.14100 172.21.15.44:0/482535279' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-09-17T08:07:16.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:16 smithi044 ceph-mon[29204]: from='mgr.14100 172.21.15.44:0/482535279' entity='mgr.a' 2024-09-17T08:07:16.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:16 smithi044 ceph-mon[29204]: from='mgr.14100 172.21.15.44:0/482535279' entity='mgr.a' 2024-09-17T08:07:16.663 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:16 smithi044 ceph-mon[29204]: from='mgr.14100 172.21.15.44:0/482535279' entity='mgr.a' 2024-09-17T08:07:18.251 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:18 smithi044 ceph-mon[29204]: mgrmap e3: a(active, since 1.00733s) 2024-09-17T08:07:18.822 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout 2024-09-17T08:07:18.822 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout { 2024-09-17T08:07:18.823 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "fsid": "ad90ed3e-74cb-11ef-bceb-c7b262605968", 2024-09-17T08:07:18.823 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "health": { 2024-09-17T08:07:18.823 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-17T08:07:18.823 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-17T08:07:18.823 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-17T08:07:18.823 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:07:18.823 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-17T08:07:18.823 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-17T08:07:18.823 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout 0 2024-09-17T08:07:18.823 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout ], 2024-09-17T08:07:18.823 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-17T08:07:18.823 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "a" 2024-09-17T08:07:18.823 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout ], 2024-09-17T08:07:18.823 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "quorum_age": 9, 2024-09-17T08:07:18.823 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-17T08:07:18.824 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T08:07:18.824 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "reef", 2024-09-17T08:07:18.824 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-17T08:07:18.824 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:07:18.824 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-17T08:07:18.824 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T08:07:18.824 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-17T08:07:18.824 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-17T08:07:18.824 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-17T08:07:18.824 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-17T08:07:18.828 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-17T08:07:18.828 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-17T08:07:18.828 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:07:18.828 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-17T08:07:18.828 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-17T08:07:18.828 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-17T08:07:18.828 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-17T08:07:18.828 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-17T08:07:18.828 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-17T08:07:18.828 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-17T08:07:18.828 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-17T08:07:18.828 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-17T08:07:18.829 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:07:18.829 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-17T08:07:18.829 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T08:07:18.829 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-17T08:07:18.829 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-17T08:07:18.829 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:07:18.829 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-17T08:07:18.829 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-17T08:07:18.829 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-17T08:07:18.829 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-17T08:07:18.829 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-17T08:07:18.829 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-17T08:07:18.830 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "restful" 2024-09-17T08:07:18.830 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout ], 2024-09-17T08:07:18.830 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T08:07:18.830 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:07:18.830 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-17T08:07:18.830 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T08:07:18.830 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "modified": "2024-09-17T08:07:03.825973+0000", 2024-09-17T08:07:18.830 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T08:07:18.830 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:07:18.830 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-17T08:07:18.830 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout } 2024-09-17T08:07:18.830 INFO:teuthology.orchestra.run.smithi044.stdout:mgr is available 2024-09-17T08:07:19.411 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:19 smithi044 ceph-mon[29204]: mgrmap e4: a(active, since 2s) 2024-09-17T08:07:19.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:19 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/4240392058' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-17T08:07:20.111 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout 2024-09-17T08:07:20.112 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout [global] 2024-09-17T08:07:20.112 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout fsid = ad90ed3e-74cb-11ef-bceb-c7b262605968 2024-09-17T08:07:20.112 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-17T08:07:20.112 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-17T08:07:20.112 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-17T08:07:20.112 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-17T08:07:20.112 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout 2024-09-17T08:07:20.112 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-17T08:07:20.112 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-17T08:07:20.112 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout 2024-09-17T08:07:20.112 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout [osd] 2024-09-17T08:07:20.112 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-17T08:07:20.113 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-17T08:07:20.113 INFO:teuthology.orchestra.run.smithi044.stdout:Enabling cephadm module... 2024-09-17T08:07:20.360 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:20 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/938817555' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-09-17T08:07:20.360 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:20 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/938817555' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-17T08:07:21.505 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:21 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/2584054401' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-09-17T08:07:21.505 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:21 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: ignoring --setuser ceph since I am not root 2024-09-17T08:07:21.505 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:21 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: ignoring --setgroup ceph since I am not root 2024-09-17T08:07:21.505 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:21 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:21.344+0000 7ff4ed566040 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-17T08:07:21.505 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:21 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:21.403+0000 7ff4ed566040 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-17T08:07:21.755 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:21 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:21.562+0000 7ff4ed566040 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-09-17T08:07:21.755 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:21 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:21.630+0000 7ff4ed566040 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-17T08:07:22.057 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:21 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:21.783+0000 7ff4ed566040 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-17T08:07:22.058 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:21 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:21.932+0000 7ff4ed566040 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-17T08:07:22.323 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:22 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/2584054401' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-17T08:07:22.323 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:22 smithi044 ceph-mon[29204]: mgrmap e5: a(active, since 5s) 2024-09-17T08:07:22.324 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:22 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:22.260+0000 7ff4ed566040 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-17T08:07:22.324 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:22 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:22.323+0000 7ff4ed566040 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-17T08:07:22.661 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:22 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:22.515+0000 7ff4ed566040 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-17T08:07:22.873 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout { 2024-09-17T08:07:22.873 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-09-17T08:07:22.873 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-17T08:07:22.873 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-09-17T08:07:22.873 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-17T08:07:22.873 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout } 2024-09-17T08:07:22.873 INFO:teuthology.orchestra.run.smithi044.stdout:Waiting for the mgr to restart... 2024-09-17T08:07:22.873 INFO:teuthology.orchestra.run.smithi044.stdout:Waiting for mgr epoch 5... 2024-09-17T08:07:23.432 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:23 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/2534718717' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-09-17T08:07:23.911 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:23 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:23.432+0000 7ff4ed566040 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-17T08:07:23.911 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:23 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:23.500+0000 7ff4ed566040 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-17T08:07:24.504 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:24 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:24.239+0000 7ff4ed566040 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-17T08:07:24.504 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:24 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:24.357+0000 7ff4ed566040 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-17T08:07:24.788 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:24 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:24.503+0000 7ff4ed566040 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-17T08:07:24.788 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:24 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:24.566+0000 7ff4ed566040 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-17T08:07:24.788 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:24 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:24.718+0000 7ff4ed566040 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-17T08:07:24.788 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:24 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:24.788+0000 7ff4ed566040 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-17T08:07:25.078 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:24 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:24.849+0000 7ff4ed566040 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-17T08:07:25.078 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:25 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:25.011+0000 7ff4ed566040 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-17T08:07:25.079 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:25 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:25.078+0000 7ff4ed566040 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-17T08:07:25.353 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:25 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:25.146+0000 7ff4ed566040 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-17T08:07:25.353 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:25 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:25.231+0000 7ff4ed566040 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-17T08:07:25.353 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:25 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:25.292+0000 7ff4ed566040 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-17T08:07:25.354 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:25 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:25.353+0000 7ff4ed566040 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-17T08:07:26.411 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:26 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:26.160+0000 7ff4ed566040 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-17T08:07:26.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:26 smithi044 ceph-mon[29204]: Active manager daemon a restarted 2024-09-17T08:07:26.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:26 smithi044 ceph-mon[29204]: Activating manager daemon a 2024-09-17T08:07:26.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:26 smithi044 ceph-mon[29204]: osdmap e2: 0 total, 0 up, 0 in 2024-09-17T08:07:26.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:26 smithi044 ceph-mon[29204]: mgrmap e6: a(active, starting, since 0.00312751s) 2024-09-17T08:07:26.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:26 smithi044 ceph-mon[29204]: from='mgr.14118 172.21.15.44:0/602955599' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T08:07:26.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:26 smithi044 ceph-mon[29204]: from='mgr.14118 172.21.15.44:0/602955599' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-09-17T08:07:26.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:26 smithi044 ceph-mon[29204]: from='mgr.14118 172.21.15.44:0/602955599' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-17T08:07:26.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:26 smithi044 ceph-mon[29204]: from='mgr.14118 172.21.15.44:0/602955599' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-17T08:07:26.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:26 smithi044 ceph-mon[29204]: from='mgr.14118 172.21.15.44:0/602955599' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-17T08:07:26.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:26 smithi044 ceph-mon[29204]: Manager daemon a is now available 2024-09-17T08:07:26.413 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:26 smithi044 ceph-mon[29204]: from='mgr.14118 172.21.15.44:0/602955599' entity='mgr.a' 2024-09-17T08:07:26.413 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:26 smithi044 ceph-mon[29204]: from='mgr.14118 172.21.15.44:0/602955599' entity='mgr.a' 2024-09-17T08:07:26.413 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:26 smithi044 ceph-mon[29204]: from='mgr.14118 172.21.15.44:0/602955599' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:07:26.413 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:26 smithi044 ceph-mon[29204]: from='mgr.14118 172.21.15.44:0/602955599' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:07:26.413 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:26 smithi044 ceph-mon[29204]: from='mgr.14118 172.21.15.44:0/602955599' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-09-17T08:07:26.413 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:26 smithi044 ceph-mon[29204]: from='mgr.14118 172.21.15.44:0/602955599' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-09-17T08:07:27.592 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:27 smithi044 ceph-mon[29204]: Found migration_current of "None". Setting to last migration. 2024-09-17T08:07:27.592 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:27 smithi044 ceph-mon[29204]: from='mgr.14118 172.21.15.44:0/602955599' entity='mgr.a' 2024-09-17T08:07:27.592 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:27 smithi044 ceph-mon[29204]: from='mgr.14118 172.21.15.44:0/602955599' entity='mgr.a' 2024-09-17T08:07:27.592 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:27 smithi044 ceph-mon[29204]: mgrmap e7: a(active, since 1.00496s) 2024-09-17T08:07:27.845 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout { 2024-09-17T08:07:27.845 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-09-17T08:07:27.845 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-17T08:07:27.845 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout } 2024-09-17T08:07:27.845 INFO:teuthology.orchestra.run.smithi044.stdout:mgr epoch 5 is available 2024-09-17T08:07:27.845 INFO:teuthology.orchestra.run.smithi044.stdout:Setting orchestrator backend to cephadm... 2024-09-17T08:07:28.485 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:28 smithi044 ceph-mon[29204]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-17T08:07:28.485 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:28 smithi044 ceph-mon[29204]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-17T08:07:28.485 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:28 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:28.297+0000 7ff455246640 -1 log_channel(cephadm) log [ERR] : [17/Sep/2024:08:07:28] ENGINE Error in HTTPServer.serve 2024-09-17T08:07:28.485 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:28 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: Traceback (most recent call last): 2024-09-17T08:07:28.485 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:28 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-17T08:07:28.485 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:28 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: self._connections.run(self.expiration_interval) 2024-09-17T08:07:28.486 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:28 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-17T08:07:28.486 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:28 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: self._run(expiration_interval) 2024-09-17T08:07:28.486 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:28 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-17T08:07:28.486 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:28 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: new_conn = self._from_server_socket(self.server.socket) 2024-09-17T08:07:28.486 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:28 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-17T08:07:28.486 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:28 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-17T08:07:28.486 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:28 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-17T08:07:28.486 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:28 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: s = self.context.wrap_socket( 2024-09-17T08:07:28.486 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:28 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-17T08:07:28.486 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:28 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: return self.sslsocket_class._create( 2024-09-17T08:07:28.486 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:28 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-17T08:07:28.486 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:28 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: self.do_handshake() 2024-09-17T08:07:28.486 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:28 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-17T08:07:28.487 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:28 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: self._sslobj.do_handshake() 2024-09-17T08:07:28.487 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:28 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-17T08:07:28.487 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:28 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:29.410 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:29 smithi044 ceph-mon[29204]: [17/Sep/2024:08:07:28] ENGINE Bus STARTING 2024-09-17T08:07:29.410 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:29 smithi044 ceph-mon[29204]: [17/Sep/2024:08:07:28] ENGINE Serving on http://172.21.15.44:8765 2024-09-17T08:07:29.410 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:29 smithi044 ceph-mon[29204]: mgrmap e8: a(active, since 2s) 2024-09-17T08:07:29.410 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:29 smithi044 ceph-mon[29204]: from='mgr.14118 172.21.15.44:0/602955599' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:07:29.410 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:29 smithi044 ceph-mon[29204]: from='mgr.14118 172.21.15.44:0/602955599' entity='mgr.a' 2024-09-17T08:07:29.410 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:29 smithi044 ceph-mon[29204]: from='mgr.14118 172.21.15.44:0/602955599' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:07:30.133 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout value unchanged 2024-09-17T08:07:30.133 INFO:teuthology.orchestra.run.smithi044.stdout:Generating ssh key... 2024-09-17T08:07:30.657 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:30 smithi044 ceph-mon[29204]: [17/Sep/2024:08:07:28] ENGINE Serving on https://172.21.15.44:7150 2024-09-17T08:07:30.658 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:30 smithi044 ceph-mon[29204]: [17/Sep/2024:08:07:28] ENGINE Bus STARTED 2024-09-17T08:07:30.658 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:30 smithi044 ceph-mon[29204]: [17/Sep/2024:08:07:28] ENGINE Error in HTTPServer.serve 2024-09-17T08:07:30.658 INFO:journalctl@ceph.mon.a.smithi044.stdout: Traceback (most recent call last): 2024-09-17T08:07:30.658 INFO:journalctl@ceph.mon.a.smithi044.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-17T08:07:30.658 INFO:journalctl@ceph.mon.a.smithi044.stdout: self._connections.run(self.expiration_interval) 2024-09-17T08:07:30.658 INFO:journalctl@ceph.mon.a.smithi044.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-17T08:07:30.658 INFO:journalctl@ceph.mon.a.smithi044.stdout: self._run(expiration_interval) 2024-09-17T08:07:30.658 INFO:journalctl@ceph.mon.a.smithi044.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-17T08:07:30.658 INFO:journalctl@ceph.mon.a.smithi044.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-17T08:07:30.658 INFO:journalctl@ceph.mon.a.smithi044.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-17T08:07:30.658 INFO:journalctl@ceph.mon.a.smithi044.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-17T08:07:30.658 INFO:journalctl@ceph.mon.a.smithi044.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-17T08:07:30.658 INFO:journalctl@ceph.mon.a.smithi044.stdout: s = self.context.wrap_socket( 2024-09-17T08:07:30.659 INFO:journalctl@ceph.mon.a.smithi044.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-17T08:07:30.659 INFO:journalctl@ceph.mon.a.smithi044.stdout: return self.sslsocket_class._create( 2024-09-17T08:07:30.659 INFO:journalctl@ceph.mon.a.smithi044.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-17T08:07:30.659 INFO:journalctl@ceph.mon.a.smithi044.stdout: self.do_handshake() 2024-09-17T08:07:30.659 INFO:journalctl@ceph.mon.a.smithi044.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-17T08:07:30.659 INFO:journalctl@ceph.mon.a.smithi044.stdout: self._sslobj.do_handshake() 2024-09-17T08:07:30.659 INFO:journalctl@ceph.mon.a.smithi044.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-17T08:07:30.659 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:30 smithi044 ceph-mon[29204]: from='client.14130 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:07:31.222 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:30 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: Generating public/private rsa key pair. 2024-09-17T08:07:31.222 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:30 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: Your identification has been saved in /tmp/tmpz1l77k8o/key 2024-09-17T08:07:31.222 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:30 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: Your public key has been saved in /tmp/tmpz1l77k8o/key.pub 2024-09-17T08:07:31.222 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:30 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: The key fingerprint is: 2024-09-17T08:07:31.222 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:30 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: SHA256:rVSi3OQn4nEBAk/lnRHqSEJuahSbbo9HlEn9RyAb4zA ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968 2024-09-17T08:07:31.222 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:30 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: The key's randomart image is: 2024-09-17T08:07:31.222 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:30 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: +---[RSA 3072]----+ 2024-09-17T08:07:31.222 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:30 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: | .oE+=o.+. | 2024-09-17T08:07:31.222 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:30 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: | o=o*+=+ + | 2024-09-17T08:07:31.222 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:30 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: | +++oo+ B . | 2024-09-17T08:07:31.222 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:30 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: |oo.o + * * | 2024-09-17T08:07:31.223 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:30 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: |.+ .. * S o | 2024-09-17T08:07:31.223 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:30 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: |o + . = + | 2024-09-17T08:07:31.223 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:30 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: | . o . . | 2024-09-17T08:07:31.223 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:30 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: | . | 2024-09-17T08:07:31.223 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:30 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: | | 2024-09-17T08:07:31.223 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:30 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: +----[SHA256]-----+ 2024-09-17T08:07:31.495 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:31 smithi044 ceph-mon[29204]: from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:07:31.495 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:31 smithi044 ceph-mon[29204]: from='mgr.14118 172.21.15.44:0/602955599' entity='mgr.a' 2024-09-17T08:07:31.495 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:31 smithi044 ceph-mon[29204]: from='mgr.14118 172.21.15.44:0/602955599' entity='mgr.a' 2024-09-17T08:07:32.370 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:32 smithi044 ceph-mon[29204]: from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:07:32.371 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:32 smithi044 ceph-mon[29204]: Generating ssh key... 2024-09-17T08:07:32.712 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDAr/BD42CugiZOAJYtNgu5vgW/OfspH6WJZkKtspBfovVuCunpQ1buOa1MtG3zLBd21Dau+D1i5q0Hkav2/91d16+CzoSBhkp7XUqvCxDgsXWeukX0MI/zhh7IPX0NA+X1QMRczs75vt7bisE7pzbO8p0uTOYFPBsXIRazVqf1E29D5MTAOiAvfMeoqgkMTlokrxRYZH9xKZsrqdXbfDvErJnzbrv2PtsIla/Ng9IBhytoMAspcKA3pO3t/jpSSVvcmdZt5sQcn3GMl8n3P3jPbVnPQ2lQajf4oKWbu3ki36SgLuQaAb3Q2J5z1pAhPre8WjI39IOULNY2Wwq7P5Roc2A/i60J7QxrbQzJbIJVadqS7ndRQS5TrEj85cWBZTWfJdCZJXahuJdtweG5l/acDNG9U877l3vL9EetmTop/et84C4OsozqVz7Du7nK/K/XMci5UHqWcFYKhwl96Xu3Pf0xzxeorPF5mXQCsD5CGe9X/fMqCMOt/8Fz+brd7Rc= ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968 2024-09-17T08:07:32.712 INFO:teuthology.orchestra.run.smithi044.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-09-17T08:07:32.713 INFO:teuthology.orchestra.run.smithi044.stdout:Adding key to root@localhost authorized_keys... 2024-09-17T08:07:32.715 INFO:teuthology.orchestra.run.smithi044.stdout:Adding host smithi044... 2024-09-17T08:07:33.483 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:33 smithi044 ceph-mon[29204]: from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:07:34.578 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:34 smithi044 ceph-mon[29204]: from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi044", "addr": "172.21.15.44", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:07:35.499 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:35 smithi044 ceph-mon[29204]: Deploying cephadm binary to smithi044 2024-09-17T08:07:37.128 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout Added host 'smithi044' with addr '172.21.15.44' 2024-09-17T08:07:37.129 INFO:teuthology.orchestra.run.smithi044.stdout:Deploying unmanaged mon service... 2024-09-17T08:07:37.798 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:37 smithi044 ceph-mon[29204]: from='mgr.14118 172.21.15.44:0/602955599' entity='mgr.a' 2024-09-17T08:07:37.798 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:37 smithi044 ceph-mon[29204]: Added host smithi044 2024-09-17T08:07:37.798 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:37 smithi044 ceph-mon[29204]: from='mgr.14118 172.21.15.44:0/602955599' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:07:39.411 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:39 smithi044 ceph-mon[29204]: from='mgr.14118 172.21.15.44:0/602955599' entity='mgr.a' 2024-09-17T08:07:39.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:39 smithi044 ceph-mon[29204]: from='mgr.14118 172.21.15.44:0/602955599' entity='mgr.a' 2024-09-17T08:07:39.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:39 smithi044 ceph-mon[29204]: from='mgr.14118 172.21.15.44:0/602955599' entity='mgr.a' 2024-09-17T08:07:40.069 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-09-17T08:07:40.069 INFO:teuthology.orchestra.run.smithi044.stdout:Deploying unmanaged mgr service... 2024-09-17T08:07:40.328 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:40 smithi044 ceph-mon[29204]: from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:07:40.328 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:40 smithi044 ceph-mon[29204]: Saving service mon spec with placement count:5 2024-09-17T08:07:40.328 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:40 smithi044 ceph-mon[29204]: from='mgr.14118 172.21.15.44:0/602955599' entity='mgr.a' 2024-09-17T08:07:41.453 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-09-17T08:07:41.767 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:41 smithi044 ceph-mon[29204]: from='mgr.14118 172.21.15.44:0/602955599' entity='mgr.a' 2024-09-17T08:07:41.767 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:41 smithi044 ceph-mon[29204]: from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:07:41.768 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:41 smithi044 ceph-mon[29204]: Saving service mgr spec with placement count:2 2024-09-17T08:07:41.768 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:41 smithi044 ceph-mon[29204]: from='mgr.14118 172.21.15.44:0/602955599' entity='mgr.a' 2024-09-17T08:07:43.334 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:43 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/4261511584' entity='client.admin' 2024-09-17T08:07:44.500 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:44 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/2944047285' entity='client.admin' 2024-09-17T08:07:44.503 INFO:teuthology.orchestra.run.smithi044.stdout:Enabling the dashboard module... 2024-09-17T08:07:45.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:45 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/1853288247' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-09-17T08:07:45.662 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:45 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: ignoring --setuser ceph since I am not root 2024-09-17T08:07:45.662 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:45 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: ignoring --setgroup ceph since I am not root 2024-09-17T08:07:45.662 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:45 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:45.486+0000 7fa8b3dbe040 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-17T08:07:45.662 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:45 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:45.544+0000 7fa8b3dbe040 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-17T08:07:46.015 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:45 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:45.699+0000 7fa8b3dbe040 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-09-17T08:07:46.015 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:45 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:45.768+0000 7fa8b3dbe040 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-17T08:07:46.015 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:45 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:45.918+0000 7fa8b3dbe040 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-17T08:07:46.273 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:46 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:46.068+0000 7fa8b3dbe040 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-17T08:07:46.650 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:46 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/1853288247' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-09-17T08:07:46.650 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:46 smithi044 ceph-mon[29204]: mgrmap e9: a(active, since 19s) 2024-09-17T08:07:46.650 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:46 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:46.392+0000 7fa8b3dbe040 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-17T08:07:46.650 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:46 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:46.457+0000 7fa8b3dbe040 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-17T08:07:46.650 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:46 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:46.648+0000 7fa8b3dbe040 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-17T08:07:47.291 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout { 2024-09-17T08:07:47.292 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-09-17T08:07:47.292 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-17T08:07:47.292 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-09-17T08:07:47.292 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-17T08:07:47.292 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout } 2024-09-17T08:07:47.292 INFO:teuthology.orchestra.run.smithi044.stdout:Waiting for the mgr to restart... 2024-09-17T08:07:47.292 INFO:teuthology.orchestra.run.smithi044.stdout:Waiting for mgr epoch 9... 2024-09-17T08:07:47.411 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:47 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/3276636310' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-09-17T08:07:47.665 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:47 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:47.569+0000 7fa8b3dbe040 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-17T08:07:47.666 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:47 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:47.637+0000 7fa8b3dbe040 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-17T08:07:48.646 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:48 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:48.379+0000 7fa8b3dbe040 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-17T08:07:48.646 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:48 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:48.498+0000 7fa8b3dbe040 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-17T08:07:48.911 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:48 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:48.644+0000 7fa8b3dbe040 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-17T08:07:48.912 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:48 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:48.707+0000 7fa8b3dbe040 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-17T08:07:48.912 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:48 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:48.861+0000 7fa8b3dbe040 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-17T08:07:49.223 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:48 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:48.931+0000 7fa8b3dbe040 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-17T08:07:49.224 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:48 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:48.992+0000 7fa8b3dbe040 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-17T08:07:49.224 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:49 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:49.155+0000 7fa8b3dbe040 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-17T08:07:49.224 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:49 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:49.222+0000 7fa8b3dbe040 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-17T08:07:49.499 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:49 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:49.290+0000 7fa8b3dbe040 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-17T08:07:49.499 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:49 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:49.376+0000 7fa8b3dbe040 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-17T08:07:49.499 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:49 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:49.437+0000 7fa8b3dbe040 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-17T08:07:49.499 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:49 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:49.498+0000 7fa8b3dbe040 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-17T08:07:50.562 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:50 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:50.304+0000 7fa8b3dbe040 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-17T08:07:50.562 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:50 smithi044 ceph-mon[29204]: Active manager daemon a restarted 2024-09-17T08:07:50.562 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:50 smithi044 ceph-mon[29204]: Activating manager daemon a 2024-09-17T08:07:50.563 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:50 smithi044 ceph-mon[29204]: osdmap e3: 0 total, 0 up, 0 in 2024-09-17T08:07:50.563 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:50 smithi044 ceph-mon[29204]: mgrmap e10: a(active, starting, since 0.0031964s) 2024-09-17T08:07:50.563 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:50 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T08:07:50.563 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:50 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-09-17T08:07:50.563 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:50 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-17T08:07:50.563 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:50 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-17T08:07:50.563 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:50 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-17T08:07:50.563 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:50 smithi044 ceph-mon[29204]: Manager daemon a is now available 2024-09-17T08:07:50.563 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:50 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:07:50.563 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:50 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-09-17T08:07:50.563 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:50 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-09-17T08:07:52.100 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout { 2024-09-17T08:07:52.100 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-09-17T08:07:52.101 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-17T08:07:52.101 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout } 2024-09-17T08:07:52.101 INFO:teuthology.orchestra.run.smithi044.stdout:mgr epoch 9 is available 2024-09-17T08:07:52.101 INFO:teuthology.orchestra.run.smithi044.stdout:Generating a dashboard self-signed certificate... 2024-09-17T08:07:52.368 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:52 smithi044 ceph-mon[29204]: from='client.14154 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-17T08:07:52.368 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:52 smithi044 ceph-mon[29204]: mgrmap e11: a(active, since 1.00545s) 2024-09-17T08:07:52.368 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:52 smithi044 ceph-mon[29204]: from='client.14154 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-17T08:07:52.368 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:52 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:07:53.406 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:53 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:53.116+0000 7fa81f893640 -1 log_channel(cephadm) log [ERR] : [17/Sep/2024:08:07:53] ENGINE Error in HTTPServer.serve 2024-09-17T08:07:53.406 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:53 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: Traceback (most recent call last): 2024-09-17T08:07:53.406 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:53 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-17T08:07:53.406 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:53 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: self._connections.run(self.expiration_interval) 2024-09-17T08:07:53.406 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:53 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-17T08:07:53.406 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:53 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: self._run(expiration_interval) 2024-09-17T08:07:53.407 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:53 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-17T08:07:53.407 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:53 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: new_conn = self._from_server_socket(self.server.socket) 2024-09-17T08:07:53.407 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:53 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-17T08:07:53.407 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:53 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-17T08:07:53.407 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:53 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-17T08:07:53.407 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:53 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: s = self.context.wrap_socket( 2024-09-17T08:07:53.407 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:53 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-17T08:07:53.407 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:53 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: return self.sslsocket_class._create( 2024-09-17T08:07:53.407 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:53 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-17T08:07:53.407 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:53 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: self.do_handshake() 2024-09-17T08:07:53.407 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:53 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-17T08:07:53.407 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:53 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: self._sslobj.do_handshake() 2024-09-17T08:07:53.407 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:53 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-17T08:07:53.407 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:07:53 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:07:53.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:53 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:07:53.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:53 smithi044 ceph-mon[29204]: mgrmap e12: a(active, since 2s) 2024-09-17T08:07:53.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:53 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:07:53.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:53 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:07:53.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:53 smithi044 ceph-mon[29204]: [17/Sep/2024:08:07:52] ENGINE Bus STARTING 2024-09-17T08:07:53.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:53 smithi044 ceph-mon[29204]: [17/Sep/2024:08:07:53] ENGINE Serving on https://172.21.15.44:7150 2024-09-17T08:07:53.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:53 smithi044 ceph-mon[29204]: [17/Sep/2024:08:07:53] ENGINE Error in HTTPServer.serve 2024-09-17T08:07:53.662 INFO:journalctl@ceph.mon.a.smithi044.stdout: Traceback (most recent call last): 2024-09-17T08:07:53.662 INFO:journalctl@ceph.mon.a.smithi044.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-17T08:07:53.662 INFO:journalctl@ceph.mon.a.smithi044.stdout: self._connections.run(self.expiration_interval) 2024-09-17T08:07:53.662 INFO:journalctl@ceph.mon.a.smithi044.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-17T08:07:53.662 INFO:journalctl@ceph.mon.a.smithi044.stdout: self._run(expiration_interval) 2024-09-17T08:07:53.662 INFO:journalctl@ceph.mon.a.smithi044.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-17T08:07:53.662 INFO:journalctl@ceph.mon.a.smithi044.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-17T08:07:53.662 INFO:journalctl@ceph.mon.a.smithi044.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-17T08:07:53.663 INFO:journalctl@ceph.mon.a.smithi044.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-17T08:07:53.663 INFO:journalctl@ceph.mon.a.smithi044.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-17T08:07:53.663 INFO:journalctl@ceph.mon.a.smithi044.stdout: s = self.context.wrap_socket( 2024-09-17T08:07:53.663 INFO:journalctl@ceph.mon.a.smithi044.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-17T08:07:53.663 INFO:journalctl@ceph.mon.a.smithi044.stdout: return self.sslsocket_class._create( 2024-09-17T08:07:53.663 INFO:journalctl@ceph.mon.a.smithi044.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-17T08:07:53.663 INFO:journalctl@ceph.mon.a.smithi044.stdout: self.do_handshake() 2024-09-17T08:07:53.663 INFO:journalctl@ceph.mon.a.smithi044.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-17T08:07:53.663 INFO:journalctl@ceph.mon.a.smithi044.stdout: self._sslobj.do_handshake() 2024-09-17T08:07:53.663 INFO:journalctl@ceph.mon.a.smithi044.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-17T08:07:53.663 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:53 smithi044 ceph-mon[29204]: [17/Sep/2024:08:07:53] ENGINE Serving on http://172.21.15.44:8765 2024-09-17T08:07:53.663 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:53 smithi044 ceph-mon[29204]: [17/Sep/2024:08:07:53] ENGINE Bus STARTED 2024-09-17T08:07:53.886 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout Self-signed certificate created 2024-09-17T08:07:53.886 INFO:teuthology.orchestra.run.smithi044.stdout:Creating initial admin user... 2024-09-17T08:07:55.769 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$wSyPtoA5nZ59otZDFZlIaOKkL0aYk2s2nsg91yCWOUjH.yGwAJwZK", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1726560475, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-09-17T08:07:55.769 INFO:teuthology.orchestra.run.smithi044.stdout:Fetching dashboard port number... 2024-09-17T08:07:56.328 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:56 smithi044 ceph-mon[29204]: 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-17T08:07:56.328 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:56 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:07:56.933 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout 8443 2024-09-17T08:07:56.945 INFO:teuthology.orchestra.run.smithi044.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-17T08:07:56.945 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stdout disabled 2024-09-17T08:07:56.953 INFO:teuthology.orchestra.run.smithi044.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-17T08:07:56.954 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stdout inactive 2024-09-17T08:07:56.954 INFO:teuthology.orchestra.run.smithi044.stdout:firewalld.service is not enabled 2024-09-17T08:07:56.954 INFO:teuthology.orchestra.run.smithi044.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-09-17T08:07:56.955 INFO:teuthology.orchestra.run.smithi044.stdout:Ceph Dashboard is now available at: 2024-09-17T08:07:56.955 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:07:56.955 INFO:teuthology.orchestra.run.smithi044.stdout: URL: https://smithi044.front.sepia.ceph.com:8443/ 2024-09-17T08:07:56.956 INFO:teuthology.orchestra.run.smithi044.stdout: User: admin 2024-09-17T08:07:56.956 INFO:teuthology.orchestra.run.smithi044.stdout: Password: lgy79ma5y2 2024-09-17T08:07:56.956 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:07:56.956 INFO:teuthology.orchestra.run.smithi044.stdout:Saving cluster configuration to /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/config directory 2024-09-17T08:07:56.957 INFO:teuthology.orchestra.run.smithi044.stdout:Enabling autotune for osd_memory_target 2024-09-17T08:07:57.325 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:57 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/1992312035' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-09-17T08:07:58.411 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:58 smithi044 ceph-mon[29204]: mgrmap e13: a(active, since 6s) 2024-09-17T08:07:59.288 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-09-17T08:07:59.288 INFO:teuthology.orchestra.run.smithi044.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-09-17T08:07:59.288 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:07:59.288 INFO:teuthology.orchestra.run.smithi044.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-09-17T08:07:59.288 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:07:59.288 INFO:teuthology.orchestra.run.smithi044.stdout:Or, if you are only running a single cluster on this host: 2024-09-17T08:07:59.288 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:07:59.288 INFO:teuthology.orchestra.run.smithi044.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-09-17T08:07:59.288 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:07:59.288 INFO:teuthology.orchestra.run.smithi044.stdout:Please consider enabling telemetry to help improve Ceph: 2024-09-17T08:07:59.288 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:07:59.288 INFO:teuthology.orchestra.run.smithi044.stdout: ceph telemetry on 2024-09-17T08:07:59.289 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:07:59.289 INFO:teuthology.orchestra.run.smithi044.stdout:For more information see: 2024-09-17T08:07:59.289 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:07:59.289 INFO:teuthology.orchestra.run.smithi044.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-09-17T08:07:59.289 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:07:59.289 INFO:teuthology.orchestra.run.smithi044.stdout:Bootstrap complete. 2024-09-17T08:07:59.323 INFO:tasks.cephadm:Fetching config... 2024-09-17T08:07:59.324 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-09-17T08:07:59.324 DEBUG:teuthology.orchestra.run.smithi044:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-09-17T08:07:59.341 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-09-17T08:07:59.341 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-09-17T08:07:59.341 DEBUG:teuthology.orchestra.run.smithi044:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-09-17T08:07:59.397 INFO:tasks.cephadm:Fetching mon keyring... 2024-09-17T08:07:59.397 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-09-17T08:07:59.397 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd if=/var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/keyring of=/dev/stdout 2024-09-17T08:07:59.462 INFO:tasks.cephadm:Fetching pub ssh key... 2024-09-17T08:07:59.462 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-09-17T08:07:59.462 DEBUG:teuthology.orchestra.run.smithi044:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-09-17T08:07:59.518 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-09-17T08:07:59.518 DEBUG:teuthology.orchestra.run.smithi044:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDAr/BD42CugiZOAJYtNgu5vgW/OfspH6WJZkKtspBfovVuCunpQ1buOa1MtG3zLBd21Dau+D1i5q0Hkav2/91d16+CzoSBhkp7XUqvCxDgsXWeukX0MI/zhh7IPX0NA+X1QMRczs75vt7bisE7pzbO8p0uTOYFPBsXIRazVqf1E29D5MTAOiAvfMeoqgkMTlokrxRYZH9xKZsrqdXbfDvErJnzbrv2PtsIla/Ng9IBhytoMAspcKA3pO3t/jpSSVvcmdZt5sQcn3GMl8n3P3jPbVnPQ2lQajf4oKWbu3ki36SgLuQaAb3Q2J5z1pAhPre8WjI39IOULNY2Wwq7P5Roc2A/i60J7QxrbQzJbIJVadqS7ndRQS5TrEj85cWBZTWfJdCZJXahuJdtweG5l/acDNG9U877l3vL9EetmTop/et84C4OsozqVz7Du7nK/K/XMci5UHqWcFYKhwl96Xu3Pf0xzxeorPF5mXQCsD5CGe9X/fMqCMOt/8Fz+brd7Rc= ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-17T08:07:59.593 INFO:teuthology.orchestra.run.smithi044.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDAr/BD42CugiZOAJYtNgu5vgW/OfspH6WJZkKtspBfovVuCunpQ1buOa1MtG3zLBd21Dau+D1i5q0Hkav2/91d16+CzoSBhkp7XUqvCxDgsXWeukX0MI/zhh7IPX0NA+X1QMRczs75vt7bisE7pzbO8p0uTOYFPBsXIRazVqf1E29D5MTAOiAvfMeoqgkMTlokrxRYZH9xKZsrqdXbfDvErJnzbrv2PtsIla/Ng9IBhytoMAspcKA3pO3t/jpSSVvcmdZt5sQcn3GMl8n3P3jPbVnPQ2lQajf4oKWbu3ki36SgLuQaAb3Q2J5z1pAhPre8WjI39IOULNY2Wwq7P5Roc2A/i60J7QxrbQzJbIJVadqS7ndRQS5TrEj85cWBZTWfJdCZJXahuJdtweG5l/acDNG9U877l3vL9EetmTop/et84C4OsozqVz7Du7nK/K/XMci5UHqWcFYKhwl96Xu3Pf0xzxeorPF5mXQCsD5CGe9X/fMqCMOt/8Fz+brd7Rc= ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968 2024-09-17T08:07:59.604 DEBUG:teuthology.orchestra.run.smithi145:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDAr/BD42CugiZOAJYtNgu5vgW/OfspH6WJZkKtspBfovVuCunpQ1buOa1MtG3zLBd21Dau+D1i5q0Hkav2/91d16+CzoSBhkp7XUqvCxDgsXWeukX0MI/zhh7IPX0NA+X1QMRczs75vt7bisE7pzbO8p0uTOYFPBsXIRazVqf1E29D5MTAOiAvfMeoqgkMTlokrxRYZH9xKZsrqdXbfDvErJnzbrv2PtsIla/Ng9IBhytoMAspcKA3pO3t/jpSSVvcmdZt5sQcn3GMl8n3P3jPbVnPQ2lQajf4oKWbu3ki36SgLuQaAb3Q2J5z1pAhPre8WjI39IOULNY2Wwq7P5Roc2A/i60J7QxrbQzJbIJVadqS7ndRQS5TrEj85cWBZTWfJdCZJXahuJdtweG5l/acDNG9U877l3vL9EetmTop/et84C4OsozqVz7Du7nK/K/XMci5UHqWcFYKhwl96Xu3Pf0xzxeorPF5mXQCsD5CGe9X/fMqCMOt/8Fz+brd7Rc= ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-17T08:07:59.731 INFO:teuthology.orchestra.run.smithi145.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDAr/BD42CugiZOAJYtNgu5vgW/OfspH6WJZkKtspBfovVuCunpQ1buOa1MtG3zLBd21Dau+D1i5q0Hkav2/91d16+CzoSBhkp7XUqvCxDgsXWeukX0MI/zhh7IPX0NA+X1QMRczs75vt7bisE7pzbO8p0uTOYFPBsXIRazVqf1E29D5MTAOiAvfMeoqgkMTlokrxRYZH9xKZsrqdXbfDvErJnzbrv2PtsIla/Ng9IBhytoMAspcKA3pO3t/jpSSVvcmdZt5sQcn3GMl8n3P3jPbVnPQ2lQajf4oKWbu3ki36SgLuQaAb3Q2J5z1pAhPre8WjI39IOULNY2Wwq7P5Roc2A/i60J7QxrbQzJbIJVadqS7ndRQS5TrEj85cWBZTWfJdCZJXahuJdtweG5l/acDNG9U877l3vL9EetmTop/et84C4OsozqVz7Du7nK/K/XMci5UHqWcFYKhwl96Xu3Pf0xzxeorPF5mXQCsD5CGe9X/fMqCMOt/8Fz+brd7Rc= ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968 2024-09-17T08:07:59.744 DEBUG:teuthology.orchestra.run.smithi152:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDAr/BD42CugiZOAJYtNgu5vgW/OfspH6WJZkKtspBfovVuCunpQ1buOa1MtG3zLBd21Dau+D1i5q0Hkav2/91d16+CzoSBhkp7XUqvCxDgsXWeukX0MI/zhh7IPX0NA+X1QMRczs75vt7bisE7pzbO8p0uTOYFPBsXIRazVqf1E29D5MTAOiAvfMeoqgkMTlokrxRYZH9xKZsrqdXbfDvErJnzbrv2PtsIla/Ng9IBhytoMAspcKA3pO3t/jpSSVvcmdZt5sQcn3GMl8n3P3jPbVnPQ2lQajf4oKWbu3ki36SgLuQaAb3Q2J5z1pAhPre8WjI39IOULNY2Wwq7P5Roc2A/i60J7QxrbQzJbIJVadqS7ndRQS5TrEj85cWBZTWfJdCZJXahuJdtweG5l/acDNG9U877l3vL9EetmTop/et84C4OsozqVz7Du7nK/K/XMci5UHqWcFYKhwl96Xu3Pf0xzxeorPF5mXQCsD5CGe9X/fMqCMOt/8Fz+brd7Rc= ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-17T08:07:59.810 INFO:teuthology.orchestra.run.smithi152.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDAr/BD42CugiZOAJYtNgu5vgW/OfspH6WJZkKtspBfovVuCunpQ1buOa1MtG3zLBd21Dau+D1i5q0Hkav2/91d16+CzoSBhkp7XUqvCxDgsXWeukX0MI/zhh7IPX0NA+X1QMRczs75vt7bisE7pzbO8p0uTOYFPBsXIRazVqf1E29D5MTAOiAvfMeoqgkMTlokrxRYZH9xKZsrqdXbfDvErJnzbrv2PtsIla/Ng9IBhytoMAspcKA3pO3t/jpSSVvcmdZt5sQcn3GMl8n3P3jPbVnPQ2lQajf4oKWbu3ki36SgLuQaAb3Q2J5z1pAhPre8WjI39IOULNY2Wwq7P5Roc2A/i60J7QxrbQzJbIJVadqS7ndRQS5TrEj85cWBZTWfJdCZJXahuJdtweG5l/acDNG9U877l3vL9EetmTop/et84C4OsozqVz7Du7nK/K/XMci5UHqWcFYKhwl96Xu3Pf0xzxeorPF5mXQCsD5CGe9X/fMqCMOt/8Fz+brd7Rc= ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968 2024-09-17T08:07:59.824 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-09-17T08:07:59.847 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:07:59 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/3994090381' entity='client.admin' 2024-09-17T08:08:00.025 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T08:08:02.161 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:02 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:02.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:02 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:02.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:02 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi044", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:08:02.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:02 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:02.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:02 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:08:02.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:02 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:02.809 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-09-17T08:08:02.809 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-09-17T08:08:03.070 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T08:08:03.296 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:03 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/3510821778' entity='client.admin' 2024-09-17T08:08:03.297 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:03 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:08:03.297 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:03 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:05.991 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi145 2024-09-17T08:08:05.991 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-17T08:08:05.991 DEBUG:teuthology.orchestra.run.smithi145:> dd of=/etc/ceph/ceph.conf 2024-09-17T08:08:06.011 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-17T08:08:06.012 DEBUG:teuthology.orchestra.run.smithi145:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-17T08:08:06.069 INFO:tasks.cephadm:Adding host smithi145 to orchestrator... 2024-09-17T08:08:06.070 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph orch host add smithi145 2024-09-17T08:08:06.284 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T08:08:06.579 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:06 smithi044 ceph-mon[29204]: from='client.14174 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:08:06.621 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:06 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:06.621 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:06 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:08:06.621 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:06 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:06.621 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:06 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:08:06.622 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:06 smithi044 ceph-mon[29204]: Updating smithi044:/etc/ceph/ceph.conf 2024-09-17T08:08:06.622 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:06 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:06.622 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:06 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:06.622 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:06 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:07.560 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:07 smithi044 ceph-mon[29204]: Updating smithi044:/var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T08:08:07.560 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:07 smithi044 ceph-mon[29204]: Updating smithi044:/etc/ceph/ceph.client.admin.keyring 2024-09-17T08:08:07.561 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:07 smithi044 ceph-mon[29204]: Updating smithi044:/var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T08:08:08.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:08 smithi044 ceph-mon[29204]: from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi145", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:08:09.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:09 smithi044 ceph-mon[29204]: Deploying cephadm binary to smithi145 2024-09-17T08:08:11.231 INFO:teuthology.orchestra.run.smithi044.stdout:Added host 'smithi145' with addr '172.21.15.145' 2024-09-17T08:08:11.563 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:11 smithi044 ceph-mon[29204]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:11.563 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:11 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:11.563 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:11 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:08:11.886 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph orch host ls --format=json 2024-09-17T08:08:12.085 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T08:08:12.455 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:12 smithi044 ceph-mon[29204]: Added host smithi145 2024-09-17T08:08:12.455 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:12 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:12.455 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:12 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:13.411 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:13 smithi044 ceph-mon[29204]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:13.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:13 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:13.794 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:08:13.795 INFO:teuthology.orchestra.run.smithi044.stdout:[{"addr": "172.21.15.44", "hostname": "smithi044", "labels": [], "status": ""}, {"addr": "172.21.15.145", "hostname": "smithi145", "labels": [], "status": ""}] 2024-09-17T08:08:14.424 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi152 2024-09-17T08:08:14.424 DEBUG:teuthology.orchestra.run.smithi152:> set -ex 2024-09-17T08:08:14.424 DEBUG:teuthology.orchestra.run.smithi152:> dd of=/etc/ceph/ceph.conf 2024-09-17T08:08:14.444 DEBUG:teuthology.orchestra.run.smithi152:> set -ex 2024-09-17T08:08:14.444 DEBUG:teuthology.orchestra.run.smithi152:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-17T08:08:14.502 INFO:tasks.cephadm:Adding host smithi152 to orchestrator... 2024-09-17T08:08:14.503 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph orch host add smithi152 2024-09-17T08:08:14.705 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T08:08:15.411 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:15 smithi044 ceph-mon[29204]: from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:08:15.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:15 smithi044 ceph-mon[29204]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:15.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:15 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:15.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:15 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:15.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:15 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:15.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:15 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:15.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:15 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi145", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:08:15.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:15 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:15.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:15 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:08:16.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:16 smithi044 ceph-mon[29204]: Updating smithi145:/etc/ceph/ceph.conf 2024-09-17T08:08:16.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:16 smithi044 ceph-mon[29204]: Updating smithi145:/var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T08:08:16.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:16 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:16.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:16 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:16.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:16 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:17.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:17 smithi044 ceph-mon[29204]: Updating smithi145:/etc/ceph/ceph.client.admin.keyring 2024-09-17T08:08:17.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:17 smithi044 ceph-mon[29204]: Updating smithi145:/var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T08:08:17.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:17 smithi044 ceph-mon[29204]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:18.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:18 smithi044 ceph-mon[29204]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi152", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:08:19.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:19 smithi044 ceph-mon[29204]: Deploying cephadm binary to smithi152 2024-09-17T08:08:19.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:19 smithi044 ceph-mon[29204]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:19.703 INFO:teuthology.orchestra.run.smithi044.stdout:Added host 'smithi152' with addr '172.21.15.152' 2024-09-17T08:08:20.482 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph orch host ls --format=json 2024-09-17T08:08:20.683 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T08:08:20.799 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:20 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:20.799 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:20 smithi044 ceph-mon[29204]: Added host smithi152 2024-09-17T08:08:20.799 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:20 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:08:20.799 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:20 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:20.799 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:20 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:20.800 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:20 smithi044 ceph-mon[29204]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:22.161 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:22 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:22.293 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:08:22.293 INFO:teuthology.orchestra.run.smithi044.stdout:[{"addr": "172.21.15.44", "hostname": "smithi044", "labels": [], "status": ""}, {"addr": "172.21.15.145", "hostname": "smithi145", "labels": [], "status": ""}, {"addr": "172.21.15.152", "hostname": "smithi152", "labels": [], "status": ""}] 2024-09-17T08:08:22.879 INFO:tasks.cephadm:Setting crush tunables to default 2024-09-17T08:08:22.879 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph osd crush tunables default 2024-09-17T08:08:23.083 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T08:08:23.161 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:23 smithi044 ceph-mon[29204]: from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:08:23.161 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:23 smithi044 ceph-mon[29204]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:24.964 INFO:teuthology.orchestra.run.smithi044.stderr:adjusted tunables profile to default 2024-09-17T08:08:25.264 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:24 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:25.264 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:24 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:25.264 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:24 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:25.264 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:24 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:25.264 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:24 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi152", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:08:25.264 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:24 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:25.265 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:24 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:08:25.265 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:24 smithi044 ceph-mon[29204]: Updating smithi152:/etc/ceph/ceph.conf 2024-09-17T08:08:25.265 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:24 smithi044 ceph-mon[29204]: Updating smithi152:/var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T08:08:25.265 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:24 smithi044 ceph-mon[29204]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:25.265 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:24 smithi044 ceph-mon[29204]: Updating smithi152:/etc/ceph/ceph.client.admin.keyring 2024-09-17T08:08:25.265 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:24 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/2733077989' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-09-17T08:08:25.265 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:24 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:25.265 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:24 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:25.265 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:24 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:25.511 INFO:tasks.cephadm:Adding mon.a on smithi044 2024-09-17T08:08:25.511 INFO:tasks.cephadm:Adding mon.b on smithi145 2024-09-17T08:08:25.511 INFO:tasks.cephadm:Adding mon.c on smithi152 2024-09-17T08:08:25.511 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph orch apply mon '3;smithi044:172.21.15.44=a;smithi145:172.21.15.145=b;smithi152:172.21.15.152=c' 2024-09-17T08:08:25.708 INFO:teuthology.orchestra.run.smithi152.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T08:08:26.411 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:25 smithi044 ceph-mon[29204]: Updating smithi152:/var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T08:08:26.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:25 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/2733077989' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-17T08:08:26.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:25 smithi044 ceph-mon[29204]: osdmap e4: 0 total, 0 up, 0 in 2024-09-17T08:08:27.411 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:26 smithi044 ceph-mon[29204]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:27.469 INFO:teuthology.orchestra.run.smithi152.stdout:Scheduled mon update... 2024-09-17T08:08:28.066 DEBUG:teuthology.orchestra.run.smithi145:mon.b> sudo journalctl -f -n 0 -u ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@mon.b.service 2024-09-17T08:08:28.069 DEBUG:teuthology.orchestra.run.smithi152:mon.c> sudo journalctl -f -n 0 -u ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@mon.c.service 2024-09-17T08:08:28.071 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-17T08:08:28.071 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T08:08:28.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:28 smithi044 ceph-mon[29204]: from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi044:172.21.15.44=a;smithi145:172.21.15.145=b;smithi152:172.21.15.152=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:08:28.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:28 smithi044 ceph-mon[29204]: Saving service mon spec with placement smithi044:172.21.15.44=a;smithi145:172.21.15.145=b;smithi152:172.21.15.152=c;count:3 2024-09-17T08:08:28.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:28 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:28.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:28 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:08:28.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:28 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:28.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:28 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:08:28.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:28 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:28.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:28 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T08:08:28.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:28 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:28.913 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:28 smithi044 ceph-mon[29204]: Deploying daemon mon.c on smithi152 2024-09-17T08:08:28.913 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:28 smithi044 ceph-mon[29204]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:29.170 INFO:teuthology.orchestra.run.smithi152.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T08:08:31.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:31 smithi044 ceph-mon[29204]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:32.091 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:08:32.092 INFO:teuthology.orchestra.run.smithi152.stdout:{"epoch":1,"fsid":"ad90ed3e-74cb-11ef-bceb-c7b262605968","modified":"2024-09-17T08:07:00.582514Z","created":"2024-09-17T08:07:00.582514Z","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.44:3300","nonce":0},{"type":"v1","addr":"172.21.15.44:6789","nonce":0}]},"addr":"172.21.15.44:6789/0","public_addr":"172.21.15.44:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T08:08:32.092 INFO:teuthology.orchestra.run.smithi152.stderr:dumped monmap epoch 1 2024-09-17T08:08:32.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:32 smithi044 ceph-mon[29204]: from='client.? 172.21.15.152:0/2648742199' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T08:08:33.374 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 podman[32901]: 2024-09-17 08:08:33.353418173 +0000 UTC m=+0.353857036 container start aa7844b49ba8f548a13dc527feb9a80a2526cd4bea063ab24d4fd0d6c8ff5f46 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mon-c, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, ceph=True, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, RELEASE=reef-19e2a2b, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, GIT_CLEAN=True, io.buildah.version=1.37.2) 2024-09-17T08:08:33.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:33 smithi044 ceph-mon[29204]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:33.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: set uid:gid to 167:167 (ceph:ceph) 2024-09-17T08:08:33.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: ceph version 18.2.4-855-g19e2a2be (19e2a2beb6f41a3ab62650e38614eb29b59dcbb9) reef (stable), process ceph-mon, pid 2 2024-09-17T08:08:33.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: pidfile_write: ignore empty --pid-file 2024-09-17T08:08:33.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: load: jerasure load: lrc 2024-09-17T08:08:33.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: RocksDB version: 7.9.2 2024-09-17T08:08:33.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Git sha 0 2024-09-17T08:08:33.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Compile date 2024-09-16 15:15:13 2024-09-17T08:08:33.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: DB SUMMARY 2024-09-17T08:08:33.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: DB Session ID: AGVJX09QYKN3JTXFYJ4I 2024-09-17T08:08:33.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: CURRENT file: CURRENT 2024-09-17T08:08:33.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: IDENTITY file: IDENTITY 2024-09-17T08:08:33.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: MANIFEST file: MANIFEST-000005 size: 59 Bytes 2024-09-17T08:08:33.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: SST files in /var/lib/ceph/mon/ceph-c/store.db dir, Total Num: 0, files: 2024-09-17T08:08:33.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-c/store.db: 000004.log size: 511 ; 2024-09-17T08:08:33.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.error_if_exists: 0 2024-09-17T08:08:33.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.create_if_missing: 0 2024-09-17T08:08:33.778 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.paranoid_checks: 1 2024-09-17T08:08:33.778 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.flush_verify_memtable_count: 1 2024-09-17T08:08:33.778 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-17T08:08:33.778 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-17T08:08:33.778 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.env: 0x555e80e19bc0 2024-09-17T08:08:33.778 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.fs: PosixFileSystem 2024-09-17T08:08:33.778 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.info_log: 0x555e819a2be0 2024-09-17T08:08:33.778 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.max_file_opening_threads: 16 2024-09-17T08:08:33.778 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.statistics: (nil) 2024-09-17T08:08:33.778 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.use_fsync: 0 2024-09-17T08:08:33.779 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.max_log_file_size: 0 2024-09-17T08:08:33.779 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-17T08:08:33.779 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.log_file_time_to_roll: 0 2024-09-17T08:08:33.779 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.keep_log_file_num: 1000 2024-09-17T08:08:33.779 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.recycle_log_file_num: 0 2024-09-17T08:08:33.779 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.allow_fallocate: 1 2024-09-17T08:08:33.779 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.allow_mmap_reads: 0 2024-09-17T08:08:33.779 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.allow_mmap_writes: 0 2024-09-17T08:08:33.779 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.use_direct_reads: 0 2024-09-17T08:08:33.779 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-17T08:08:33.779 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.create_missing_column_families: 0 2024-09-17T08:08:33.780 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.db_log_dir: 2024-09-17T08:08:33.780 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.wal_dir: 2024-09-17T08:08:33.780 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.table_cache_numshardbits: 6 2024-09-17T08:08:33.780 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.WAL_ttl_seconds: 0 2024-09-17T08:08:33.780 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.WAL_size_limit_MB: 0 2024-09-17T08:08:33.780 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-17T08:08:33.780 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-17T08:08:33.780 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.is_fd_close_on_exec: 1 2024-09-17T08:08:33.780 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.advise_random_on_open: 1 2024-09-17T08:08:33.780 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.db_write_buffer_size: 0 2024-09-17T08:08:33.780 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.write_buffer_manager: 0x555e819b0320 2024-09-17T08:08:33.781 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-17T08:08:33.781 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-17T08:08:33.781 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.use_adaptive_mutex: 0 2024-09-17T08:08:33.781 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.rate_limiter: (nil) 2024-09-17T08:08:33.781 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-17T08:08:33.781 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.wal_recovery_mode: 2 2024-09-17T08:08:33.781 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.enable_thread_tracking: 0 2024-09-17T08:08:33.781 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.enable_pipelined_write: 0 2024-09-17T08:08:33.781 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.unordered_write: 0 2024-09-17T08:08:33.781 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-17T08:08:33.781 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-17T08:08:33.781 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-17T08:08:33.782 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-17T08:08:33.782 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.row_cache: None 2024-09-17T08:08:33.782 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.wal_filter: None 2024-09-17T08:08:33.782 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-17T08:08:33.782 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.allow_ingest_behind: 0 2024-09-17T08:08:33.782 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.two_write_queues: 0 2024-09-17T08:08:33.782 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.manual_wal_flush: 0 2024-09-17T08:08:33.782 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.wal_compression: 0 2024-09-17T08:08:33.782 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.atomic_flush: 0 2024-09-17T08:08:33.782 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-17T08:08:33.782 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.persist_stats_to_disk: 0 2024-09-17T08:08:33.782 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.write_dbid_to_manifest: 0 2024-09-17T08:08:33.782 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.log_readahead_size: 0 2024-09-17T08:08:33.782 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-17T08:08:33.783 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.best_efforts_recovery: 0 2024-09-17T08:08:33.783 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-17T08:08:33.783 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-17T08:08:33.783 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.allow_data_in_errors: 0 2024-09-17T08:08:33.783 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.db_host_id: __hostname__ 2024-09-17T08:08:33.783 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.enforce_single_del_contracts: true 2024-09-17T08:08:33.784 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.max_background_jobs: 2 2024-09-17T08:08:33.785 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.max_background_compactions: -1 2024-09-17T08:08:33.785 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.max_subcompactions: 1 2024-09-17T08:08:33.785 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-17T08:08:33.785 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-17T08:08:33.785 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.delayed_write_rate : 16777216 2024-09-17T08:08:33.785 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.max_total_wal_size: 0 2024-09-17T08:08:33.785 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-17T08:08:33.785 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.stats_dump_period_sec: 600 2024-09-17T08:08:33.785 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.stats_persist_period_sec: 600 2024-09-17T08:08:33.785 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-17T08:08:33.785 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.max_open_files: -1 2024-09-17T08:08:33.785 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.bytes_per_sync: 0 2024-09-17T08:08:33.786 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.wal_bytes_per_sync: 0 2024-09-17T08:08:33.786 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.strict_bytes_per_sync: 0 2024-09-17T08:08:33.786 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.compaction_readahead_size: 0 2024-09-17T08:08:33.786 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.max_background_flushes: -1 2024-09-17T08:08:33.786 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Compression algorithms supported: 2024-09-17T08:08:33.786 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: kZSTD supported: 0 2024-09-17T08:08:33.786 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: kXpressCompression supported: 0 2024-09-17T08:08:33.786 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: kBZip2Compression supported: 0 2024-09-17T08:08:33.786 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-17T08:08:33.786 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: kLZ4Compression supported: 1 2024-09-17T08:08:33.786 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: kZlibCompression supported: 1 2024-09-17T08:08:33.786 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: kLZ4HCCompression supported: 1 2024-09-17T08:08:33.786 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: kSnappyCompression supported: 1 2024-09-17T08:08:33.786 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Fast CRC32 supported: Supported on x86 2024-09-17T08:08:33.787 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: DMutex implementation: pthread_mutex_t 2024-09-17T08:08:33.787 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-c/store.db/MANIFEST-000005 2024-09-17T08:08:33.787 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-17T08:08:33.787 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-17T08:08:33.787 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.merge_operator: 2024-09-17T08:08:33.787 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.compaction_filter: None 2024-09-17T08:08:33.787 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.compaction_filter_factory: None 2024-09-17T08:08:33.787 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.sst_partitioner_factory: None 2024-09-17T08:08:33.787 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.memtable_factory: SkipListFactory 2024-09-17T08:08:33.787 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.table_factory: BlockBasedTable 2024-09-17T08:08:33.787 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x555e819a27e0) 2024-09-17T08:08:33.787 INFO:journalctl@ceph.mon.c.smithi152.stdout: cache_index_and_filter_blocks: 1 2024-09-17T08:08:33.787 INFO:journalctl@ceph.mon.c.smithi152.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-17T08:08:33.787 INFO:journalctl@ceph.mon.c.smithi152.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-17T08:08:33.787 INFO:journalctl@ceph.mon.c.smithi152.stdout: pin_top_level_index_and_filter: 1 2024-09-17T08:08:33.788 INFO:journalctl@ceph.mon.c.smithi152.stdout: index_type: 0 2024-09-17T08:08:33.788 INFO:journalctl@ceph.mon.c.smithi152.stdout: data_block_index_type: 0 2024-09-17T08:08:33.788 INFO:journalctl@ceph.mon.c.smithi152.stdout: index_shortening: 1 2024-09-17T08:08:33.788 INFO:journalctl@ceph.mon.c.smithi152.stdout: data_block_hash_table_util_ratio: 0.750000 2024-09-17T08:08:33.788 INFO:journalctl@ceph.mon.c.smithi152.stdout: checksum: 4 2024-09-17T08:08:33.788 INFO:journalctl@ceph.mon.c.smithi152.stdout: no_block_cache: 0 2024-09-17T08:08:33.788 INFO:journalctl@ceph.mon.c.smithi152.stdout: block_cache: 0x555e81997350 2024-09-17T08:08:33.788 INFO:journalctl@ceph.mon.c.smithi152.stdout: block_cache_name: BinnedLRUCache 2024-09-17T08:08:33.788 INFO:journalctl@ceph.mon.c.smithi152.stdout: block_cache_options: 2024-09-17T08:08:33.788 INFO:journalctl@ceph.mon.c.smithi152.stdout: capacity : 536870912 2024-09-17T08:08:33.789 INFO:journalctl@ceph.mon.c.smithi152.stdout: num_shard_bits : 4 2024-09-17T08:08:33.789 INFO:journalctl@ceph.mon.c.smithi152.stdout: strict_capacity_limit : 0 2024-09-17T08:08:33.789 INFO:journalctl@ceph.mon.c.smithi152.stdout: high_pri_pool_ratio: 0.000 2024-09-17T08:08:33.789 INFO:journalctl@ceph.mon.c.smithi152.stdout: block_cache_compressed: (nil) 2024-09-17T08:08:33.789 INFO:journalctl@ceph.mon.c.smithi152.stdout: persistent_cache: (nil) 2024-09-17T08:08:33.789 INFO:journalctl@ceph.mon.c.smithi152.stdout: block_size: 4096 2024-09-17T08:08:33.789 INFO:journalctl@ceph.mon.c.smithi152.stdout: block_size_deviation: 10 2024-09-17T08:08:33.789 INFO:journalctl@ceph.mon.c.smithi152.stdout: block_restart_interval: 16 2024-09-17T08:08:33.789 INFO:journalctl@ceph.mon.c.smithi152.stdout: index_block_restart_interval: 1 2024-09-17T08:08:33.789 INFO:journalctl@ceph.mon.c.smithi152.stdout: metadata_block_size: 4096 2024-09-17T08:08:33.789 INFO:journalctl@ceph.mon.c.smithi152.stdout: partition_filters: 0 2024-09-17T08:08:33.789 INFO:journalctl@ceph.mon.c.smithi152.stdout: use_delta_encoding: 1 2024-09-17T08:08:33.789 INFO:journalctl@ceph.mon.c.smithi152.stdout: filter_policy: bloomfilter 2024-09-17T08:08:33.789 INFO:journalctl@ceph.mon.c.smithi152.stdout: whole_key_filtering: 1 2024-09-17T08:08:33.790 INFO:journalctl@ceph.mon.c.smithi152.stdout: verify_compression: 0 2024-09-17T08:08:33.790 INFO:journalctl@ceph.mon.c.smithi152.stdout: read_amp_bytes_per_bit: 0 2024-09-17T08:08:33.790 INFO:journalctl@ceph.mon.c.smithi152.stdout: format_version: 5 2024-09-17T08:08:33.790 INFO:journalctl@ceph.mon.c.smithi152.stdout: enable_index_compression: 1 2024-09-17T08:08:33.790 INFO:journalctl@ceph.mon.c.smithi152.stdout: block_align: 0 2024-09-17T08:08:33.790 INFO:journalctl@ceph.mon.c.smithi152.stdout: max_auto_readahead_size: 262144 2024-09-17T08:08:33.790 INFO:journalctl@ceph.mon.c.smithi152.stdout: prepopulate_block_cache: 0 2024-09-17T08:08:33.790 INFO:journalctl@ceph.mon.c.smithi152.stdout: initial_auto_readahead_size: 8192 2024-09-17T08:08:33.790 INFO:journalctl@ceph.mon.c.smithi152.stdout: num_file_reads_for_auto_readahead: 2 2024-09-17T08:08:33.790 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.write_buffer_size: 33554432 2024-09-17T08:08:33.790 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.max_write_buffer_number: 2 2024-09-17T08:08:33.790 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.compression: NoCompression 2024-09-17T08:08:33.790 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.bottommost_compression: Disabled 2024-09-17T08:08:33.790 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.prefix_extractor: nullptr 2024-09-17T08:08:33.791 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-17T08:08:33.791 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.num_levels: 7 2024-09-17T08:08:33.791 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-17T08:08:33.791 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-17T08:08:33.791 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-17T08:08:33.791 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-17T08:08:33.791 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-17T08:08:33.791 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-17T08:08:33.791 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-17T08:08:33.791 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-17T08:08:33.791 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-17T08:08:33.791 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-17T08:08:33.791 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-17T08:08:33.791 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-17T08:08:33.792 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.compression_opts.window_bits: -14 2024-09-17T08:08:33.792 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.compression_opts.level: 32767 2024-09-17T08:08:33.792 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.compression_opts.strategy: 0 2024-09-17T08:08:33.792 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-17T08:08:33.792 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-17T08:08:33.792 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-17T08:08:33.792 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-17T08:08:33.792 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.compression_opts.enabled: false 2024-09-17T08:08:33.792 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-17T08:08:33.792 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-17T08:08:33.792 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-17T08:08:33.792 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-17T08:08:33.792 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.target_file_size_base: 67108864 2024-09-17T08:08:33.792 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.target_file_size_multiplier: 1 2024-09-17T08:08:33.793 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-17T08:08:33.793 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-17T08:08:33.793 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-17T08:08:33.793 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-17T08:08:33.793 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-17T08:08:33.793 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-17T08:08:33.793 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-17T08:08:33.793 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-17T08:08:33.793 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-17T08:08:33.793 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-17T08:08:33.793 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-17T08:08:33.793 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-17T08:08:33.793 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-17T08:08:33.794 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.arena_block_size: 1048576 2024-09-17T08:08:33.794 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-17T08:08:33.794 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-17T08:08:33.794 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.disable_auto_compactions: 0 2024-09-17T08:08:33.794 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-17T08:08:33.794 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-17T08:08:33.794 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-17T08:08:33.794 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-17T08:08:33.794 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-17T08:08:33.794 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-17T08:08:33.794 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-17T08:08:33.794 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-17T08:08:33.795 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-17T08:08:33.795 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-17T08:08:33.795 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-17T08:08:33.795 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.inplace_update_support: 0 2024-09-17T08:08:33.795 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.inplace_update_num_locks: 10000 2024-09-17T08:08:33.795 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-17T08:08:33.795 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-17T08:08:33.795 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.memtable_huge_page_size: 0 2024-09-17T08:08:33.795 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.bloom_locality: 0 2024-09-17T08:08:33.795 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.max_successive_merges: 0 2024-09-17T08:08:33.795 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.optimize_filters_for_hits: 0 2024-09-17T08:08:33.795 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.paranoid_file_checks: 0 2024-09-17T08:08:33.795 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.force_consistency_checks: 1 2024-09-17T08:08:33.795 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.report_bg_io_stats: 0 2024-09-17T08:08:33.796 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.ttl: 2592000 2024-09-17T08:08:33.796 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.periodic_compaction_seconds: 0 2024-09-17T08:08:33.796 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-17T08:08:33.796 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-17T08:08:33.796 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.enable_blob_files: false 2024-09-17T08:08:33.796 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.min_blob_size: 0 2024-09-17T08:08:33.796 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.blob_file_size: 268435456 2024-09-17T08:08:33.796 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.blob_compression_type: NoCompression 2024-09-17T08:08:33.796 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.enable_blob_garbage_collection: false 2024-09-17T08:08:33.796 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-17T08:08:33.796 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-17T08:08:33.796 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-17T08:08:33.796 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.blob_file_starting_level: 0 2024-09-17T08:08:33.796 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-17T08:08:33.797 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: 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-17T08:08:33.797 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-09-17T08:08:33.797 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: fd8c4890-f5bc-4eb4-90f9-0de05b182ba8 2024-09-17T08:08:33.797 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726560513380351, "job": 1, "event": "recovery_started", "wal_files": [4]} 2024-09-17T08:08:33.797 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2024-09-17T08:08:33.797 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726560513380787, "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": 1726560513, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "fd8c4890-f5bc-4eb4-90f9-0de05b182ba8", "db_session_id": "AGVJX09QYKN3JTXFYJ4I", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2024-09-17T08:08:33.797 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726560513380884, "job": 1, "event": "recovery_finished"} 2024-09-17T08:08:33.797 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: [db/version_set.cc:5047] Creating manifest 10 2024-09-17T08:08:33.797 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: 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-17T08:08:33.797 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x555e819c2e00 2024-09-17T08:08:33.797 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: DB pointer 0x555e81ab6000 2024-09-17T08:08:33.797 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-17T08:08:33.797 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-17T08:08:33.798 INFO:journalctl@ceph.mon.c.smithi152.stdout: ** DB Stats ** 2024-09-17T08:08:33.798 INFO:journalctl@ceph.mon.c.smithi152.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-17T08:08:33.798 INFO:journalctl@ceph.mon.c.smithi152.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-17T08:08:33.798 INFO:journalctl@ceph.mon.c.smithi152.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-17T08:08:33.798 INFO:journalctl@ceph.mon.c.smithi152.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-17T08:08:33.798 INFO:journalctl@ceph.mon.c.smithi152.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-17T08:08:33.798 INFO:journalctl@ceph.mon.c.smithi152.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-17T08:08:33.798 INFO:journalctl@ceph.mon.c.smithi152.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-17T08:08:33.798 INFO:journalctl@ceph.mon.c.smithi152.stdout: 2024-09-17T08:08:33.798 INFO:journalctl@ceph.mon.c.smithi152.stdout: ** Compaction Stats [default] ** 2024-09-17T08:08:33.798 INFO:journalctl@ceph.mon.c.smithi152.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-17T08:08:33.798 INFO:journalctl@ceph.mon.c.smithi152.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-17T08:08:33.798 INFO:journalctl@ceph.mon.c.smithi152.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 3.7 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-17T08:08:33.798 INFO:journalctl@ceph.mon.c.smithi152.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 3.7 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-17T08:08:33.798 INFO:journalctl@ceph.mon.c.smithi152.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 3.7 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-17T08:08:33.799 INFO:journalctl@ceph.mon.c.smithi152.stdout: 2024-09-17T08:08:33.799 INFO:journalctl@ceph.mon.c.smithi152.stdout: ** Compaction Stats [default] ** 2024-09-17T08:08:33.799 INFO:journalctl@ceph.mon.c.smithi152.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-17T08:08:33.799 INFO:journalctl@ceph.mon.c.smithi152.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-17T08:08:33.799 INFO:journalctl@ceph.mon.c.smithi152.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 3.7 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-17T08:08:33.799 INFO:journalctl@ceph.mon.c.smithi152.stdout: 2024-09-17T08:08:33.799 INFO:journalctl@ceph.mon.c.smithi152.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-17T08:08:33.799 INFO:journalctl@ceph.mon.c.smithi152.stdout: 2024-09-17T08:08:33.799 INFO:journalctl@ceph.mon.c.smithi152.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-17T08:08:33.799 INFO:journalctl@ceph.mon.c.smithi152.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-09-17T08:08:33.799 INFO:journalctl@ceph.mon.c.smithi152.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-17T08:08:33.799 INFO:journalctl@ceph.mon.c.smithi152.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-09-17T08:08:33.799 INFO:journalctl@ceph.mon.c.smithi152.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-09-17T08:08:33.799 INFO:journalctl@ceph.mon.c.smithi152.stdout: AddFile(Keys): cumulative 0, interval 0 2024-09-17T08:08:33.799 INFO:journalctl@ceph.mon.c.smithi152.stdout: Cumulative compaction: 0.00 GB write, 0.61 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-17T08:08:33.800 INFO:journalctl@ceph.mon.c.smithi152.stdout: Interval compaction: 0.00 GB write, 0.61 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-17T08:08:33.800 INFO:journalctl@ceph.mon.c.smithi152.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-17T08:08:33.800 INFO:journalctl@ceph.mon.c.smithi152.stdout: Block cache BinnedLRUCache@0x555e81997350#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-17T08:08:33.800 INFO:journalctl@ceph.mon.c.smithi152.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-17T08:08:33.800 INFO:journalctl@ceph.mon.c.smithi152.stdout: 2024-09-17T08:08:33.800 INFO:journalctl@ceph.mon.c.smithi152.stdout: ** File Read Latency Histogram By Level [default] ** 2024-09-17T08:08:33.800 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: mon.c does not exist in monmap, will attempt to join an existing cluster 2024-09-17T08:08:33.800 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: using public_addr v2:172.21.15.152:0/0 -> [v2:172.21.15.152:3300/0,v1:172.21.15.152:6789/0] 2024-09-17T08:08:33.800 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: starting mon.c rank -1 at public addrs [v2:172.21.15.152:3300/0,v1:172.21.15.152:6789/0] at bind addrs [v2:172.21.15.152:3300/0,v1:172.21.15.152:6789/0] mon_data /var/lib/ceph/mon/ceph-c fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 2024-09-17T08:08:33.800 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: mon.c@-1(???) e0 preinit fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 2024-09-17T08:08:33.800 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: mon.c@-1(synchronizing).mds e1 new map 2024-09-17T08:08:33.800 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: mon.c@-1(synchronizing).mds e1 print_map 2024-09-17T08:08:33.800 INFO:journalctl@ceph.mon.c.smithi152.stdout: e1 2024-09-17T08:08:33.800 INFO:journalctl@ceph.mon.c.smithi152.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-09-17T08:08:33.801 INFO:journalctl@ceph.mon.c.smithi152.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-17T08:08:33.801 INFO:journalctl@ceph.mon.c.smithi152.stdout: legacy client fscid: -1 2024-09-17T08:08:33.801 INFO:journalctl@ceph.mon.c.smithi152.stdout: 2024-09-17T08:08:33.801 INFO:journalctl@ceph.mon.c.smithi152.stdout: No filesystems configured 2024-09-17T08:08:33.801 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: mon.c@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-09-17T08:08:33.801 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: 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-17T08:08:33.801 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: mon.c@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-09-17T08:08:33.801 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: mon.c@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-09-17T08:08:33.801 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: mon.c@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-09-17T08:08:33.801 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: mon.c@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-09-17T08:08:33.801 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: mon.c@-1(synchronizing).osd e4 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-17T08:08:33.801 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T08:08:33.801 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T08:08:33.802 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T08:08:33.802 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:08:33.802 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:33.802 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:33.802 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:33.802 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:33.802 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:33.802 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi145", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:08:33.802 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:33.802 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:08:33.802 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: Updating smithi145:/etc/ceph/ceph.conf 2024-09-17T08:08:33.802 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: Updating smithi145:/var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T08:08:33.802 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:33.803 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:33.803 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:33.803 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: Updating smithi145:/etc/ceph/ceph.client.admin.keyring 2024-09-17T08:08:33.803 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: Updating smithi145:/var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T08:08:33.803 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:33.803 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi152", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:08:33.803 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: Deploying cephadm binary to smithi152 2024-09-17T08:08:33.803 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:33.803 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:33.803 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: Added host smithi152 2024-09-17T08:08:33.803 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:08:33.803 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:33.803 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:33.803 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:33.804 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:33.804 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:08:33.804 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:33.804 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:33.804 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:33.804 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:33.804 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:33.804 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi152", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:08:33.804 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:33.804 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:08:33.804 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: Updating smithi152:/etc/ceph/ceph.conf 2024-09-17T08:08:33.804 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: Updating smithi152:/var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T08:08:33.804 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:33.804 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: Updating smithi152:/etc/ceph/ceph.client.admin.keyring 2024-09-17T08:08:33.805 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='client.? 172.21.15.44:0/2733077989' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-09-17T08:08:33.805 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:33.805 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:33.805 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:33.805 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: Updating smithi152:/var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T08:08:33.805 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='client.? 172.21.15.44:0/2733077989' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-17T08:08:33.805 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: osdmap e4: 0 total, 0 up, 0 in 2024-09-17T08:08:33.805 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:33.805 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi044:172.21.15.44=a;smithi145:172.21.15.145=b;smithi152:172.21.15.152=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:08:33.805 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: Saving service mon spec with placement smithi044:172.21.15.44=a;smithi145:172.21.15.145=b;smithi152:172.21.15.152=c;count:3 2024-09-17T08:08:33.805 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:33.805 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:08:33.806 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:33.806 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:08:33.806 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:33.806 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T08:08:33.806 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:33.806 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: Deploying daemon mon.c on smithi152 2024-09-17T08:08:33.806 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:33.806 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:33.806 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: from='client.? 172.21.15.152:0/2648742199' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T08:08:33.806 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:33.806 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 ceph-mon[32920]: mon.c@-1(synchronizing).paxosservice(auth 1..3) refresh upgraded, format 0 -> 3 2024-09-17T08:08:33.806 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 bash[32901]: aa7844b49ba8f548a13dc527feb9a80a2526cd4bea063ab24d4fd0d6c8ff5f46 2024-09-17T08:08:33.806 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:33 smithi152 systemd[1]: Started Ceph mon.c for ad90ed3e-74cb-11ef-bceb-c7b262605968. 2024-09-17T08:08:33.853 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-17T08:08:33.853 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T08:08:34.064 INFO:teuthology.orchestra.run.smithi152.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.c/config 2024-09-17T08:08:38.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:38 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T08:08:38.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:38 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T08:08:38.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:38 smithi152 ceph-mon[32920]: mon.a calling monitor election 2024-09-17T08:08:38.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:38 smithi152 ceph-mon[32920]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:38.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:38 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T08:08:38.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:38 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T08:08:38.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:38 smithi152 ceph-mon[32920]: mon.c calling monitor election 2024-09-17T08:08:38.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:38 smithi152 ceph-mon[32920]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:38.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:38 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T08:08:38.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:38 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T08:08:38.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:38 smithi152 ceph-mon[32920]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:38.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:38 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T08:08:38.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:38 smithi152 ceph-mon[32920]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-17T08:08:38.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:38 smithi152 ceph-mon[32920]: monmap e2: 2 mons at {a=[v2:172.21.15.44:3300/0,v1:172.21.15.44:6789/0],c=[v2:172.21.15.152:3300/0,v1:172.21.15.152:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-17T08:08:38.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:38 smithi152 ceph-mon[32920]: fsmap 2024-09-17T08:08:38.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:38 smithi152 ceph-mon[32920]: osdmap e4: 0 total, 0 up, 0 in 2024-09-17T08:08:38.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:38 smithi152 ceph-mon[32920]: mgrmap e13: a(active, since 48s) 2024-09-17T08:08:38.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:38 smithi152 ceph-mon[32920]: overall HEALTH_OK 2024-09-17T08:08:38.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:38 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:38.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:38 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:38.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:38 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:38.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:38 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T08:08:38.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:38 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:38.853 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:08:38.853 INFO:teuthology.orchestra.run.smithi152.stdout:{"epoch":2,"fsid":"ad90ed3e-74cb-11ef-bceb-c7b262605968","modified":"2024-09-17T08:08:33.410442Z","created":"2024-09-17T08:07:00.582514Z","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.44:3300","nonce":0},{"type":"v1","addr":"172.21.15.44:6789","nonce":0}]},"addr":"172.21.15.44:6789/0","public_addr":"172.21.15.44:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:3300","nonce":0},{"type":"v1","addr":"172.21.15.152:6789","nonce":0}]},"addr":"172.21.15.152:6789/0","public_addr":"172.21.15.152:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-09-17T08:08:38.854 INFO:teuthology.orchestra.run.smithi152.stderr:dumped monmap epoch 2 2024-09-17T08:08:38.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:38 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T08:08:38.913 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:38 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T08:08:38.913 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:38 smithi044 ceph-mon[29204]: mon.a calling monitor election 2024-09-17T08:08:38.913 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:38 smithi044 ceph-mon[29204]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:38.913 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:38 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T08:08:38.913 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:38 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T08:08:38.913 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:38 smithi044 ceph-mon[29204]: mon.c calling monitor election 2024-09-17T08:08:38.913 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:38 smithi044 ceph-mon[29204]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:38.913 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:38 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T08:08:38.913 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:38 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T08:08:38.913 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:38 smithi044 ceph-mon[29204]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:38.913 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:38 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T08:08:38.913 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:38 smithi044 ceph-mon[29204]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-17T08:08:38.913 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:38 smithi044 ceph-mon[29204]: monmap e2: 2 mons at {a=[v2:172.21.15.44:3300/0,v1:172.21.15.44:6789/0],c=[v2:172.21.15.152:3300/0,v1:172.21.15.152:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-17T08:08:38.914 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:38 smithi044 ceph-mon[29204]: fsmap 2024-09-17T08:08:38.914 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:38 smithi044 ceph-mon[29204]: osdmap e4: 0 total, 0 up, 0 in 2024-09-17T08:08:38.914 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:38 smithi044 ceph-mon[29204]: mgrmap e13: a(active, since 48s) 2024-09-17T08:08:38.914 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:38 smithi044 ceph-mon[29204]: overall HEALTH_OK 2024-09-17T08:08:38.914 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:38 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:38.914 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:38 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:38.914 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:38 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:38.914 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:38 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T08:08:38.914 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:38 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:39.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:39 smithi152 ceph-mon[32920]: Deploying daemon mon.b on smithi145 2024-09-17T08:08:39.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:39 smithi152 ceph-mon[32920]: from='client.? 172.21.15.152:0/1390774106' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T08:08:39.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:39 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T08:08:39.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:39 smithi044 ceph-mon[29204]: Deploying daemon mon.b on smithi145 2024-09-17T08:08:39.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:39 smithi044 ceph-mon[29204]: from='client.? 172.21.15.152:0/1390774106' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T08:08:39.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:39 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T08:08:40.545 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-17T08:08:40.546 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T08:08:40.741 INFO:teuthology.orchestra.run.smithi152.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.c/config 2024-09-17T08:08:40.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:40 smithi152 ceph-mon[32920]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:40.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:40 smithi044 ceph-mon[29204]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:42.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:42 smithi145 systemd[1]: Started Ceph mon.b for ad90ed3e-74cb-11ef-bceb-c7b262605968. 2024-09-17T08:08:47.663 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:47 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T08:08:47.663 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:47 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T08:08:47.663 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:47 smithi044 ceph-mon[29204]: mon.a calling monitor election 2024-09-17T08:08:47.664 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:47 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T08:08:47.664 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:47 smithi044 ceph-mon[29204]: mon.c calling monitor election 2024-09-17T08:08:47.668 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:47 smithi044 ceph-mon[29204]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:47.668 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:47 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T08:08:47.668 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:47 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T08:08:47.668 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:47 smithi044 ceph-mon[29204]: mon.b calling monitor election 2024-09-17T08:08:47.668 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:47 smithi044 ceph-mon[29204]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:47.668 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:47 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T08:08:47.668 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:47 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T08:08:47.669 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:47 smithi044 ceph-mon[29204]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:47.669 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:47 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T08:08:47.669 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:47 smithi044 ceph-mon[29204]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-17T08:08:47.669 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:47 smithi044 ceph-mon[29204]: monmap e3: 3 mons at {a=[v2:172.21.15.44:3300/0,v1:172.21.15.44:6789/0],b=[v2:172.21.15.145:3300/0,v1:172.21.15.145:6789/0],c=[v2:172.21.15.152:3300/0,v1:172.21.15.152:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-17T08:08:47.669 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:47 smithi044 ceph-mon[29204]: fsmap 2024-09-17T08:08:47.669 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:47 smithi044 ceph-mon[29204]: osdmap e4: 0 total, 0 up, 0 in 2024-09-17T08:08:47.669 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:47 smithi044 ceph-mon[29204]: mgrmap e13: a(active, since 56s) 2024-09-17T08:08:47.669 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:47 smithi044 ceph-mon[29204]: overall HEALTH_OK 2024-09-17T08:08:47.669 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:47 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:47.669 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:47 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:47.669 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:47 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:47.669 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:47 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:47.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:47 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T08:08:47.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:47 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T08:08:47.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:47 smithi145 ceph-mon[32346]: mon.a calling monitor election 2024-09-17T08:08:47.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:47 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T08:08:47.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:47 smithi145 ceph-mon[32346]: mon.c calling monitor election 2024-09-17T08:08:47.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:47 smithi145 ceph-mon[32346]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:47.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:47 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T08:08:47.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:47 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T08:08:47.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:47 smithi145 ceph-mon[32346]: mon.b calling monitor election 2024-09-17T08:08:47.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:47 smithi145 ceph-mon[32346]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:47.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:47 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T08:08:47.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:47 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T08:08:47.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:47 smithi145 ceph-mon[32346]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:47.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:47 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T08:08:47.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:47 smithi145 ceph-mon[32346]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-17T08:08:47.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:47 smithi145 ceph-mon[32346]: monmap e3: 3 mons at {a=[v2:172.21.15.44:3300/0,v1:172.21.15.44:6789/0],b=[v2:172.21.15.145:3300/0,v1:172.21.15.145:6789/0],c=[v2:172.21.15.152:3300/0,v1:172.21.15.152:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-17T08:08:47.755 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:47 smithi145 ceph-mon[32346]: fsmap 2024-09-17T08:08:47.755 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:47 smithi145 ceph-mon[32346]: osdmap e4: 0 total, 0 up, 0 in 2024-09-17T08:08:47.755 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:47 smithi145 ceph-mon[32346]: mgrmap e13: a(active, since 56s) 2024-09-17T08:08:47.755 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:47 smithi145 ceph-mon[32346]: overall HEALTH_OK 2024-09-17T08:08:47.755 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:47 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:47.755 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:47 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:47.755 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:47 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:47.755 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:47 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:47.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:47 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T08:08:47.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:47 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T08:08:47.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:47 smithi152 ceph-mon[32920]: mon.a calling monitor election 2024-09-17T08:08:47.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:47 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T08:08:47.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:47 smithi152 ceph-mon[32920]: mon.c calling monitor election 2024-09-17T08:08:47.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:47 smithi152 ceph-mon[32920]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:47.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:47 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T08:08:47.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:47 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T08:08:47.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:47 smithi152 ceph-mon[32920]: mon.b calling monitor election 2024-09-17T08:08:47.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:47 smithi152 ceph-mon[32920]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:47.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:47 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T08:08:47.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:47 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T08:08:47.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:47 smithi152 ceph-mon[32920]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:47.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:47 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T08:08:47.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:47 smithi152 ceph-mon[32920]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-17T08:08:47.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:47 smithi152 ceph-mon[32920]: monmap e3: 3 mons at {a=[v2:172.21.15.44:3300/0,v1:172.21.15.44:6789/0],b=[v2:172.21.15.145:3300/0,v1:172.21.15.145:6789/0],c=[v2:172.21.15.152:3300/0,v1:172.21.15.152:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-17T08:08:47.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:47 smithi152 ceph-mon[32920]: fsmap 2024-09-17T08:08:47.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:47 smithi152 ceph-mon[32920]: osdmap e4: 0 total, 0 up, 0 in 2024-09-17T08:08:47.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:47 smithi152 ceph-mon[32920]: mgrmap e13: a(active, since 56s) 2024-09-17T08:08:47.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:47 smithi152 ceph-mon[32920]: overall HEALTH_OK 2024-09-17T08:08:47.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:47 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:47.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:47 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:47.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:47 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:47.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:47 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:48.536 INFO:teuthology.orchestra.run.smithi152.stdout: 2024-09-17T08:08:48.536 INFO:teuthology.orchestra.run.smithi152.stdout:{"epoch":3,"fsid":"ad90ed3e-74cb-11ef-bceb-c7b262605968","modified":"2024-09-17T08:08:42.249568Z","created":"2024-09-17T08:07:00.582514Z","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.44:3300","nonce":0},{"type":"v1","addr":"172.21.15.44:6789","nonce":0}]},"addr":"172.21.15.44:6789/0","public_addr":"172.21.15.44:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:3300","nonce":0},{"type":"v1","addr":"172.21.15.152:6789","nonce":0}]},"addr":"172.21.15.152:6789/0","public_addr":"172.21.15.152:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":2,"name":"b","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:3300","nonce":0},{"type":"v1","addr":"172.21.15.145:6789","nonce":0}]},"addr":"172.21.15.145:6789/0","public_addr":"172.21.15.145:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1,2]} 2024-09-17T08:08:48.537 INFO:teuthology.orchestra.run.smithi152.stderr:dumped monmap epoch 3 2024-09-17T08:08:48.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:48 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:08:48.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:48 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T08:08:48.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:48 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:08:48.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:48 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T08:08:48.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:48 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:08:48.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:48 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T08:08:49.213 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-09-17T08:08:49.213 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph config generate-minimal-conf 2024-09-17T08:08:49.526 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:49 smithi152 ceph-mon[32920]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:49.526 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:49 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.526 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:49 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.526 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:49 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.526 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:49 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.526 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:49 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:49.526 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:49 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:08:49.526 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:49 smithi152 ceph-mon[32920]: Updating smithi044:/etc/ceph/ceph.conf 2024-09-17T08:08:49.526 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:49 smithi152 ceph-mon[32920]: Updating smithi145:/etc/ceph/ceph.conf 2024-09-17T08:08:49.527 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:49 smithi152 ceph-mon[32920]: Updating smithi152:/etc/ceph/ceph.conf 2024-09-17T08:08:49.527 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:49 smithi152 ceph-mon[32920]: from='client.? 172.21.15.152:0/2945389557' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T08:08:49.527 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:49 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.527 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:49 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.527 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:49 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.527 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:49 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.527 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:49 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.527 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:49 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.527 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:49 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.527 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:49 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.527 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:49 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.527 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:49 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.527 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:49 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.528 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:49 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T08:08:49.528 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:49 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T08:08:49.528 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:49 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:49.567 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:49 smithi044 ceph-mon[29204]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:49.567 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:49 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.567 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:49 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.567 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:49 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.567 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:49 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.567 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:49 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:49.567 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:49 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:08:49.567 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:49 smithi044 ceph-mon[29204]: Updating smithi044:/etc/ceph/ceph.conf 2024-09-17T08:08:49.567 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:49 smithi044 ceph-mon[29204]: Updating smithi145:/etc/ceph/ceph.conf 2024-09-17T08:08:49.568 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:49 smithi044 ceph-mon[29204]: Updating smithi152:/etc/ceph/ceph.conf 2024-09-17T08:08:49.568 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:49 smithi044 ceph-mon[29204]: from='client.? 172.21.15.152:0/2945389557' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T08:08:49.568 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:49 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.568 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:49 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.568 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:49 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.568 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:49 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.568 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:49 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.568 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:49 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.568 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:49 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.568 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:49 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.568 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:49 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.568 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:49 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.568 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:49 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.568 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:49 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T08:08:49.569 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:49 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T08:08:49.569 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:49 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:49.660 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:49 smithi145 ceph-mon[32346]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:49.660 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:49 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.661 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:49 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.661 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:49 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.661 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:49 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.661 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:49 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:49.661 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:49 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:08:49.661 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:49 smithi145 ceph-mon[32346]: Updating smithi044:/etc/ceph/ceph.conf 2024-09-17T08:08:49.661 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:49 smithi145 ceph-mon[32346]: Updating smithi145:/etc/ceph/ceph.conf 2024-09-17T08:08:49.661 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:49 smithi145 ceph-mon[32346]: Updating smithi152:/etc/ceph/ceph.conf 2024-09-17T08:08:49.661 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:49 smithi145 ceph-mon[32346]: from='client.? 172.21.15.152:0/2945389557' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T08:08:49.661 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:49 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.661 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:49 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.661 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:49 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.661 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:49 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.661 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:49 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.662 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:49 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.662 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:49 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.662 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:49 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.662 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:49 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.662 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:49 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.662 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:49 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:49.662 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:49 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T08:08:49.662 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:49 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T08:08:49.662 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:49 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:50.284 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T08:08:50.502 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:50 smithi145 ceph-mon[32346]: Updating smithi145:/var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T08:08:50.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:50 smithi145 ceph-mon[32346]: Updating smithi152:/var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T08:08:50.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:50 smithi145 ceph-mon[32346]: Updating smithi044:/var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T08:08:50.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:50 smithi145 ceph-mon[32346]: Reconfiguring mon.a (unknown last config time)... 2024-09-17T08:08:50.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:50 smithi145 ceph-mon[32346]: Reconfiguring daemon mon.a on smithi044 2024-09-17T08:08:50.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:50 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:50.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:50 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:50.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:50 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T08:08:50.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:50 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T08:08:50.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:50 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:50.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:50 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:50.532 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:50 smithi044 ceph-mon[29204]: Updating smithi145:/var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T08:08:50.532 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:50 smithi044 ceph-mon[29204]: Updating smithi152:/var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T08:08:50.532 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:50 smithi044 ceph-mon[29204]: Updating smithi044:/var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T08:08:50.532 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:50 smithi044 ceph-mon[29204]: Reconfiguring mon.a (unknown last config time)... 2024-09-17T08:08:50.532 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:50 smithi044 ceph-mon[29204]: Reconfiguring daemon mon.a on smithi044 2024-09-17T08:08:50.533 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:50 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:50.533 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:50 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:50.533 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:50 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T08:08:50.533 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:50 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T08:08:50.533 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:50 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:50.533 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:50 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:50.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:50 smithi152 ceph-mon[32920]: Updating smithi145:/var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T08:08:50.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:50 smithi152 ceph-mon[32920]: Updating smithi152:/var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T08:08:50.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:50 smithi152 ceph-mon[32920]: Updating smithi044:/var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T08:08:50.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:50 smithi152 ceph-mon[32920]: Reconfiguring mon.a (unknown last config time)... 2024-09-17T08:08:50.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:50 smithi152 ceph-mon[32920]: Reconfiguring daemon mon.a on smithi044 2024-09-17T08:08:50.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:50 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:50.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:50 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:50.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:50 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T08:08:50.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:50 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T08:08:50.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:50 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:50.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:50 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:51.454 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:51 smithi044 ceph-mon[29204]: Reconfiguring mon.b (monmap changed)... 2024-09-17T08:08:51.454 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:51 smithi044 ceph-mon[29204]: Reconfiguring daemon mon.b on smithi145 2024-09-17T08:08:51.454 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:51 smithi044 ceph-mon[29204]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:51.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:51 smithi145 ceph-mon[32346]: Reconfiguring mon.b (monmap changed)... 2024-09-17T08:08:51.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:51 smithi145 ceph-mon[32346]: Reconfiguring daemon mon.b on smithi145 2024-09-17T08:08:51.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:51 smithi145 ceph-mon[32346]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:51.767 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:51 smithi152 ceph-mon[32920]: Reconfiguring mon.b (monmap changed)... 2024-09-17T08:08:51.767 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:51 smithi152 ceph-mon[32920]: Reconfiguring daemon mon.b on smithi145 2024-09-17T08:08:51.767 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:51 smithi152 ceph-mon[32920]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:51.831 INFO:teuthology.orchestra.run.smithi044.stdout:# minimal ceph.conf for ad90ed3e-74cb-11ef-bceb-c7b262605968 2024-09-17T08:08:51.831 INFO:teuthology.orchestra.run.smithi044.stdout:[global] 2024-09-17T08:08:51.831 INFO:teuthology.orchestra.run.smithi044.stdout: fsid = ad90ed3e-74cb-11ef-bceb-c7b262605968 2024-09-17T08:08:51.831 INFO:teuthology.orchestra.run.smithi044.stdout: mon_host = [v2:172.21.15.44:3300/0,v1:172.21.15.44:6789/0] [v2:172.21.15.145:3300/0,v1:172.21.15.145:6789/0] [v2:172.21.15.152:3300/0,v1:172.21.15.152:6789/0] 2024-09-17T08:08:52.378 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-09-17T08:08:52.379 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-09-17T08:08:52.379 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd of=/etc/ceph/ceph.conf 2024-09-17T08:08:52.409 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-09-17T08:08:52.409 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-17T08:08:52.475 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-17T08:08:52.476 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd of=/etc/ceph/ceph.conf 2024-09-17T08:08:52.510 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-17T08:08:52.510 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-17T08:08:52.579 DEBUG:teuthology.orchestra.run.smithi152:> set -ex 2024-09-17T08:08:52.579 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd of=/etc/ceph/ceph.conf 2024-09-17T08:08:52.607 DEBUG:teuthology.orchestra.run.smithi152:> set -ex 2024-09-17T08:08:52.607 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-17T08:08:52.642 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:52 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:52.642 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:52 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:52.642 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:52 smithi044 ceph-mon[29204]: Reconfiguring mon.c (monmap changed)... 2024-09-17T08:08:52.643 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:52 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T08:08:52.643 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:52 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T08:08:52.643 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:52 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:52.643 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:52 smithi044 ceph-mon[29204]: Reconfiguring daemon mon.c on smithi152 2024-09-17T08:08:52.643 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:52 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/3258037563' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:52.643 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:52 smithi044 ceph-mon[29204]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:52.672 INFO:tasks.cephadm:Adding mgr.a on smithi044 2024-09-17T08:08:52.672 INFO:tasks.cephadm:Adding mgr.b on smithi145 2024-09-17T08:08:52.673 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph orch apply mgr '2;smithi044=a;smithi145=b' 2024-09-17T08:08:52.733 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:52 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:52.734 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:52 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:52.734 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:52 smithi152 ceph-mon[32920]: Reconfiguring mon.c (monmap changed)... 2024-09-17T08:08:52.734 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:52 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T08:08:52.734 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:52 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T08:08:52.734 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:52 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:52.734 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:52 smithi152 ceph-mon[32920]: Reconfiguring daemon mon.c on smithi152 2024-09-17T08:08:52.734 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:52 smithi152 ceph-mon[32920]: from='client.? 172.21.15.44:0/3258037563' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:52.734 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:52 smithi152 ceph-mon[32920]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:52.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:52 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:52.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:52 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:52.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:52 smithi145 ceph-mon[32346]: Reconfiguring mon.c (monmap changed)... 2024-09-17T08:08:52.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:52 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T08:08:52.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:52 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T08:08:52.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:52 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:52.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:52 smithi145 ceph-mon[32346]: Reconfiguring daemon mon.c on smithi152 2024-09-17T08:08:52.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:52 smithi145 ceph-mon[32346]: from='client.? 172.21.15.44:0/3258037563' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:52.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:52 smithi145 ceph-mon[32346]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:52.903 INFO:teuthology.orchestra.run.smithi152.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.c/config 2024-09-17T08:08:54.073 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:53 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:54.073 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:53 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:54.073 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:53 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:08:54.073 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:53 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:54.073 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:53 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:08:54.073 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:53 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:54.161 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:53 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:54.161 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:53 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:54.161 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:53 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:08:54.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:53 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:54.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:53 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:08:54.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:53 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:54.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:53 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:54.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:53 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:54.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:53 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:08:54.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:53 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:54.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:53 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:08:54.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:53 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:54.575 INFO:teuthology.orchestra.run.smithi152.stdout:Scheduled mgr update... 2024-09-17T08:08:55.066 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:54 smithi145 ceph-mon[32346]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:55.066 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:54 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:55.066 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:54 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:08:55.066 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:54 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:55.067 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:54 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:08:55.067 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:54 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:55.067 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:54 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T08:08:55.067 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:54 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-17T08:08:55.067 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:54 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T08:08:55.067 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:54 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:55.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:54 smithi044 ceph-mon[29204]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:55.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:54 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:55.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:54 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:08:55.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:54 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:55.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:54 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:08:55.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:54 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:55.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:54 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T08:08:55.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:54 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-17T08:08:55.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:54 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T08:08:55.163 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:54 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:55.171 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:54 smithi152 ceph-mon[32920]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:55.171 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:54 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:55.171 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:54 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:08:55.171 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:54 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:55.171 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:54 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:08:55.171 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:54 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:55.171 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:54 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T08:08:55.171 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:54 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-17T08:08:55.171 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:54 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T08:08:55.171 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:54 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:55.192 DEBUG:teuthology.orchestra.run.smithi145:mgr.b> sudo journalctl -f -n 0 -u ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@mgr.b.service 2024-09-17T08:08:55.195 INFO:tasks.cephadm:Deploying OSDs... 2024-09-17T08:08:55.195 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-09-17T08:08:55.195 DEBUG:teuthology.orchestra.run.smithi044:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T08:08:55.215 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-17T08:08:55.215 DEBUG:teuthology.orchestra.run.smithi044:> stat /dev/vg_nvme/lv_1 2024-09-17T08:08:55.275 INFO:teuthology.orchestra.run.smithi044.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-17T08:08:55.275 INFO:teuthology.orchestra.run.smithi044.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T08:08:55.275 INFO:teuthology.orchestra.run.smithi044.stdout:Device: 5h/5d Inode: 967 Links: 1 2024-09-17T08:08:55.276 INFO:teuthology.orchestra.run.smithi044.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T08:08:55.276 INFO:teuthology.orchestra.run.smithi044.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T08:08:55.276 INFO:teuthology.orchestra.run.smithi044.stdout:Access: 2024-09-17 08:08:03.311479464 +0000 2024-09-17T08:08:55.276 INFO:teuthology.orchestra.run.smithi044.stdout:Modify: 2024-09-17 08:03:30.301992720 +0000 2024-09-17T08:08:55.276 INFO:teuthology.orchestra.run.smithi044.stdout:Change: 2024-09-17 08:03:30.301992720 +0000 2024-09-17T08:08:55.276 INFO:teuthology.orchestra.run.smithi044.stdout: Birth: 2024-09-17 08:03:30.301992720 +0000 2024-09-17T08:08:55.276 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-17T08:08:55.347 INFO:teuthology.orchestra.run.smithi044.stderr:1+0 records in 2024-09-17T08:08:55.347 INFO:teuthology.orchestra.run.smithi044.stderr:1+0 records out 2024-09-17T08:08:55.347 INFO:teuthology.orchestra.run.smithi044.stderr:512 bytes copied, 0.000220532 s, 2.3 MB/s 2024-09-17T08:08:55.350 DEBUG:teuthology.orchestra.run.smithi044:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-17T08:08:55.409 DEBUG:teuthology.orchestra.run.smithi044:> stat /dev/vg_nvme/lv_2 2024-09-17T08:08:55.467 INFO:teuthology.orchestra.run.smithi044.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-17T08:08:55.467 INFO:teuthology.orchestra.run.smithi044.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T08:08:55.467 INFO:teuthology.orchestra.run.smithi044.stdout:Device: 5h/5d Inode: 979 Links: 1 2024-09-17T08:08:55.468 INFO:teuthology.orchestra.run.smithi044.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T08:08:55.468 INFO:teuthology.orchestra.run.smithi044.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T08:08:55.468 INFO:teuthology.orchestra.run.smithi044.stdout:Access: 2024-09-17 08:08:03.339479017 +0000 2024-09-17T08:08:55.468 INFO:teuthology.orchestra.run.smithi044.stdout:Modify: 2024-09-17 08:03:30.302992704 +0000 2024-09-17T08:08:55.468 INFO:teuthology.orchestra.run.smithi044.stdout:Change: 2024-09-17 08:03:30.302992704 +0000 2024-09-17T08:08:55.468 INFO:teuthology.orchestra.run.smithi044.stdout: Birth: 2024-09-17 08:03:30.302992704 +0000 2024-09-17T08:08:55.468 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-17T08:08:55.534 INFO:teuthology.orchestra.run.smithi044.stderr:1+0 records in 2024-09-17T08:08:55.534 INFO:teuthology.orchestra.run.smithi044.stderr:1+0 records out 2024-09-17T08:08:55.535 INFO:teuthology.orchestra.run.smithi044.stderr:512 bytes copied, 0.000201879 s, 2.5 MB/s 2024-09-17T08:08:55.536 DEBUG:teuthology.orchestra.run.smithi044:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-17T08:08:55.594 DEBUG:teuthology.orchestra.run.smithi044:> stat /dev/vg_nvme/lv_3 2024-09-17T08:08:55.652 INFO:teuthology.orchestra.run.smithi044.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-17T08:08:55.652 INFO:teuthology.orchestra.run.smithi044.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T08:08:55.652 INFO:teuthology.orchestra.run.smithi044.stdout:Device: 5h/5d Inode: 973 Links: 1 2024-09-17T08:08:55.652 INFO:teuthology.orchestra.run.smithi044.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T08:08:55.652 INFO:teuthology.orchestra.run.smithi044.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T08:08:55.652 INFO:teuthology.orchestra.run.smithi044.stdout:Access: 2024-09-17 08:08:03.365478601 +0000 2024-09-17T08:08:55.653 INFO:teuthology.orchestra.run.smithi044.stdout:Modify: 2024-09-17 08:03:30.302992704 +0000 2024-09-17T08:08:55.653 INFO:teuthology.orchestra.run.smithi044.stdout:Change: 2024-09-17 08:03:30.302992704 +0000 2024-09-17T08:08:55.653 INFO:teuthology.orchestra.run.smithi044.stdout: Birth: 2024-09-17 08:03:30.302992704 +0000 2024-09-17T08:08:55.653 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-17T08:08:55.718 INFO:teuthology.orchestra.run.smithi044.stderr:1+0 records in 2024-09-17T08:08:55.718 INFO:teuthology.orchestra.run.smithi044.stderr:1+0 records out 2024-09-17T08:08:55.718 INFO:teuthology.orchestra.run.smithi044.stderr:512 bytes copied, 0.000236795 s, 2.2 MB/s 2024-09-17T08:08:55.719 DEBUG:teuthology.orchestra.run.smithi044:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-17T08:08:55.778 DEBUG:teuthology.orchestra.run.smithi044:> stat /dev/vg_nvme/lv_4 2024-09-17T08:08:55.836 INFO:teuthology.orchestra.run.smithi044.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-17T08:08:55.837 INFO:teuthology.orchestra.run.smithi044.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T08:08:55.837 INFO:teuthology.orchestra.run.smithi044.stdout:Device: 5h/5d Inode: 981 Links: 1 2024-09-17T08:08:55.837 INFO:teuthology.orchestra.run.smithi044.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T08:08:55.837 INFO:teuthology.orchestra.run.smithi044.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T08:08:55.837 INFO:teuthology.orchestra.run.smithi044.stdout:Access: 2024-09-17 08:08:03.391478186 +0000 2024-09-17T08:08:55.837 INFO:teuthology.orchestra.run.smithi044.stdout:Modify: 2024-09-17 08:03:30.302992704 +0000 2024-09-17T08:08:55.837 INFO:teuthology.orchestra.run.smithi044.stdout:Change: 2024-09-17 08:03:30.302992704 +0000 2024-09-17T08:08:55.838 INFO:teuthology.orchestra.run.smithi044.stdout: Birth: 2024-09-17 08:03:30.302992704 +0000 2024-09-17T08:08:55.838 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-17T08:08:55.902 INFO:teuthology.orchestra.run.smithi044.stderr:1+0 records in 2024-09-17T08:08:55.902 INFO:teuthology.orchestra.run.smithi044.stderr:1+0 records out 2024-09-17T08:08:55.903 INFO:teuthology.orchestra.run.smithi044.stderr:512 bytes copied, 0.000232041 s, 2.2 MB/s 2024-09-17T08:08:55.904 DEBUG:teuthology.orchestra.run.smithi044:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-17T08:08:55.961 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-17T08:08:55.961 DEBUG:teuthology.orchestra.run.smithi145:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T08:08:55.977 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-17T08:08:55.978 DEBUG:teuthology.orchestra.run.smithi145:> stat /dev/vg_nvme/lv_1 2024-09-17T08:08:56.027 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:55 smithi145 ceph-mon[32346]: from='client.24109 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi044=a;smithi145=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:08:56.027 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:55 smithi145 ceph-mon[32346]: Saving service mgr spec with placement smithi044=a;smithi145=b;count:2 2024-09-17T08:08:56.027 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:55 smithi145 ceph-mon[32346]: Deploying daemon mgr.b on smithi145 2024-09-17T08:08:56.033 INFO:teuthology.orchestra.run.smithi145.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-17T08:08:56.033 INFO:teuthology.orchestra.run.smithi145.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T08:08:56.033 INFO:teuthology.orchestra.run.smithi145.stdout:Device: 5h/5d Inode: 983 Links: 1 2024-09-17T08:08:56.034 INFO:teuthology.orchestra.run.smithi145.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T08:08:56.034 INFO:teuthology.orchestra.run.smithi145.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T08:08:56.034 INFO:teuthology.orchestra.run.smithi145.stdout:Access: 2024-09-17 08:08:55.954986807 +0000 2024-09-17T08:08:56.034 INFO:teuthology.orchestra.run.smithi145.stdout:Modify: 2024-09-17 08:03:28.628406640 +0000 2024-09-17T08:08:56.034 INFO:teuthology.orchestra.run.smithi145.stdout:Change: 2024-09-17 08:03:28.628406640 +0000 2024-09-17T08:08:56.034 INFO:teuthology.orchestra.run.smithi145.stdout: Birth: 2024-09-17 08:03:28.628406640 +0000 2024-09-17T08:08:56.034 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-17T08:08:56.161 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:55 smithi044 ceph-mon[29204]: from='client.24109 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi044=a;smithi145=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:08:56.161 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:55 smithi044 ceph-mon[29204]: Saving service mgr spec with placement smithi044=a;smithi145=b;count:2 2024-09-17T08:08:56.161 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:55 smithi044 ceph-mon[29204]: Deploying daemon mgr.b on smithi145 2024-09-17T08:08:56.183 INFO:teuthology.orchestra.run.smithi145.stderr:1+0 records in 2024-09-17T08:08:56.183 INFO:teuthology.orchestra.run.smithi145.stderr:1+0 records out 2024-09-17T08:08:56.183 INFO:teuthology.orchestra.run.smithi145.stderr:512 bytes copied, 0.000213114 s, 2.4 MB/s 2024-09-17T08:08:56.184 DEBUG:teuthology.orchestra.run.smithi145:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-17T08:08:56.200 DEBUG:teuthology.orchestra.run.smithi145:> stat /dev/vg_nvme/lv_2 2024-09-17T08:08:56.257 INFO:teuthology.orchestra.run.smithi145.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-17T08:08:56.257 INFO:teuthology.orchestra.run.smithi145.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T08:08:56.257 INFO:teuthology.orchestra.run.smithi145.stdout:Device: 5h/5d Inode: 972 Links: 1 2024-09-17T08:08:56.257 INFO:teuthology.orchestra.run.smithi145.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T08:08:56.257 INFO:teuthology.orchestra.run.smithi145.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T08:08:56.258 INFO:teuthology.orchestra.run.smithi145.stdout:Access: 2024-09-17 08:08:56.139982706 +0000 2024-09-17T08:08:56.258 INFO:teuthology.orchestra.run.smithi145.stdout:Modify: 2024-09-17 08:03:28.626406685 +0000 2024-09-17T08:08:56.258 INFO:teuthology.orchestra.run.smithi145.stdout:Change: 2024-09-17 08:03:28.626406685 +0000 2024-09-17T08:08:56.258 INFO:teuthology.orchestra.run.smithi145.stdout: Birth: 2024-09-17 08:03:28.626406685 +0000 2024-09-17T08:08:56.258 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-17T08:08:56.275 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:55 smithi152 ceph-mon[32920]: from='client.24109 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi044=a;smithi145=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:08:56.275 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:55 smithi152 ceph-mon[32920]: Saving service mgr spec with placement smithi044=a;smithi145=b;count:2 2024-09-17T08:08:56.275 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:55 smithi152 ceph-mon[32920]: Deploying daemon mgr.b on smithi145 2024-09-17T08:08:56.319 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:08:56 smithi145 systemd[1]: Starting Ceph mgr.b for ad90ed3e-74cb-11ef-bceb-c7b262605968... 2024-09-17T08:08:56.322 INFO:teuthology.orchestra.run.smithi145.stderr:1+0 records in 2024-09-17T08:08:56.322 INFO:teuthology.orchestra.run.smithi145.stderr:1+0 records out 2024-09-17T08:08:56.322 INFO:teuthology.orchestra.run.smithi145.stderr:512 bytes copied, 0.000174462 s, 2.9 MB/s 2024-09-17T08:08:56.323 DEBUG:teuthology.orchestra.run.smithi145:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-17T08:08:56.379 DEBUG:teuthology.orchestra.run.smithi145:> stat /dev/vg_nvme/lv_3 2024-09-17T08:08:56.435 INFO:teuthology.orchestra.run.smithi145.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-17T08:08:56.435 INFO:teuthology.orchestra.run.smithi145.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T08:08:56.435 INFO:teuthology.orchestra.run.smithi145.stdout:Device: 5h/5d Inode: 979 Links: 1 2024-09-17T08:08:56.435 INFO:teuthology.orchestra.run.smithi145.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T08:08:56.435 INFO:teuthology.orchestra.run.smithi145.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T08:08:56.436 INFO:teuthology.orchestra.run.smithi145.stdout:Access: 2024-09-17 08:08:56.139982706 +0000 2024-09-17T08:08:56.436 INFO:teuthology.orchestra.run.smithi145.stdout:Modify: 2024-09-17 08:03:28.627406662 +0000 2024-09-17T08:08:56.436 INFO:teuthology.orchestra.run.smithi145.stdout:Change: 2024-09-17 08:03:28.627406662 +0000 2024-09-17T08:08:56.436 INFO:teuthology.orchestra.run.smithi145.stdout: Birth: 2024-09-17 08:03:28.627406662 +0000 2024-09-17T08:08:56.436 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-17T08:08:56.498 INFO:teuthology.orchestra.run.smithi145.stderr:1+0 records in 2024-09-17T08:08:56.498 INFO:teuthology.orchestra.run.smithi145.stderr:1+0 records out 2024-09-17T08:08:56.499 INFO:teuthology.orchestra.run.smithi145.stderr:512 bytes copied, 0.000172547 s, 3.0 MB/s 2024-09-17T08:08:56.500 DEBUG:teuthology.orchestra.run.smithi145:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-17T08:08:56.556 DEBUG:teuthology.orchestra.run.smithi145:> stat /dev/vg_nvme/lv_4 2024-09-17T08:08:56.592 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:08:56 smithi145 podman[33588]: 2024-09-17 08:08:56.316444446 +0000 UTC m=+0.015934413 image pull 980a0bfcd684674f25c08d857ad8de3b1c8ae738870529edbf9aa463832c8d89 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9 2024-09-17T08:08:56.592 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:08:56 smithi145 podman[33588]: 2024-09-17 08:08:56.475103714 +0000 UTC m=+0.174593679 container create 9bec378183b2510730dab61d14fd8676c9b702b4fbdc145911d48782749c22cb (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-b, RELEASE=reef-19e2a2b, org.label-schema.build-date=20240731, io.buildah.version=1.37.2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, ceph=True, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=) 2024-09-17T08:08:56.607 INFO:teuthology.orchestra.run.smithi145.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-17T08:08:56.607 INFO:teuthology.orchestra.run.smithi145.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T08:08:56.608 INFO:teuthology.orchestra.run.smithi145.stdout:Device: 5h/5d Inode: 969 Links: 1 2024-09-17T08:08:56.608 INFO:teuthology.orchestra.run.smithi145.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T08:08:56.608 INFO:teuthology.orchestra.run.smithi145.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T08:08:56.608 INFO:teuthology.orchestra.run.smithi145.stdout:Access: 2024-09-17 08:08:56.139982706 +0000 2024-09-17T08:08:56.608 INFO:teuthology.orchestra.run.smithi145.stdout:Modify: 2024-09-17 08:03:28.626406685 +0000 2024-09-17T08:08:56.609 INFO:teuthology.orchestra.run.smithi145.stdout:Change: 2024-09-17 08:03:28.626406685 +0000 2024-09-17T08:08:56.609 INFO:teuthology.orchestra.run.smithi145.stdout: Birth: 2024-09-17 08:03:28.626406685 +0000 2024-09-17T08:08:56.609 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-17T08:08:56.671 INFO:teuthology.orchestra.run.smithi145.stderr:1+0 records in 2024-09-17T08:08:56.671 INFO:teuthology.orchestra.run.smithi145.stderr:1+0 records out 2024-09-17T08:08:56.671 INFO:teuthology.orchestra.run.smithi145.stderr:512 bytes copied, 0.000200736 s, 2.6 MB/s 2024-09-17T08:08:56.673 DEBUG:teuthology.orchestra.run.smithi145:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-17T08:08:56.729 DEBUG:teuthology.orchestra.run.smithi152:> set -ex 2024-09-17T08:08:56.729 DEBUG:teuthology.orchestra.run.smithi152:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T08:08:56.750 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-17T08:08:56.750 DEBUG:teuthology.orchestra.run.smithi152:> stat /dev/vg_nvme/lv_1 2024-09-17T08:08:56.809 INFO:teuthology.orchestra.run.smithi152.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-17T08:08:56.809 INFO:teuthology.orchestra.run.smithi152.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T08:08:56.809 INFO:teuthology.orchestra.run.smithi152.stdout:Device: 5h/5d Inode: 961 Links: 1 2024-09-17T08:08:56.809 INFO:teuthology.orchestra.run.smithi152.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T08:08:56.810 INFO:teuthology.orchestra.run.smithi152.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T08:08:56.810 INFO:teuthology.orchestra.run.smithi152.stdout:Access: 2024-09-17 08:08:32.378484483 +0000 2024-09-17T08:08:56.810 INFO:teuthology.orchestra.run.smithi152.stdout:Modify: 2024-09-17 08:03:28.623484159 +0000 2024-09-17T08:08:56.810 INFO:teuthology.orchestra.run.smithi152.stdout:Change: 2024-09-17 08:03:28.623484159 +0000 2024-09-17T08:08:56.810 INFO:teuthology.orchestra.run.smithi152.stdout: Birth: 2024-09-17 08:03:28.623484159 +0000 2024-09-17T08:08:56.811 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-17T08:08:56.879 INFO:teuthology.orchestra.run.smithi152.stderr:1+0 records in 2024-09-17T08:08:56.879 INFO:teuthology.orchestra.run.smithi152.stderr:1+0 records out 2024-09-17T08:08:56.879 INFO:teuthology.orchestra.run.smithi152.stderr:512 bytes copied, 0.000286401 s, 1.8 MB/s 2024-09-17T08:08:56.881 DEBUG:teuthology.orchestra.run.smithi152:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-17T08:08:56.939 DEBUG:teuthology.orchestra.run.smithi152:> stat /dev/vg_nvme/lv_2 2024-09-17T08:08:56.996 INFO:teuthology.orchestra.run.smithi152.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-17T08:08:56.996 INFO:teuthology.orchestra.run.smithi152.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T08:08:56.996 INFO:teuthology.orchestra.run.smithi152.stdout:Device: 5h/5d Inode: 960 Links: 1 2024-09-17T08:08:56.996 INFO:teuthology.orchestra.run.smithi152.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T08:08:56.996 INFO:teuthology.orchestra.run.smithi152.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T08:08:56.997 INFO:teuthology.orchestra.run.smithi152.stdout:Access: 2024-09-17 08:08:32.379484472 +0000 2024-09-17T08:08:56.997 INFO:teuthology.orchestra.run.smithi152.stdout:Modify: 2024-09-17 08:03:28.622484171 +0000 2024-09-17T08:08:56.997 INFO:teuthology.orchestra.run.smithi152.stdout:Change: 2024-09-17 08:03:28.622484171 +0000 2024-09-17T08:08:56.997 INFO:teuthology.orchestra.run.smithi152.stdout: Birth: 2024-09-17 08:03:28.622484171 +0000 2024-09-17T08:08:56.997 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-17T08:08:57.002 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:56 smithi145 ceph-mon[32346]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:57.002 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:08:56 smithi145 podman[33588]: 2024-09-17 08:08:56.694315141 +0000 UTC m=+0.393805107 container init 9bec378183b2510730dab61d14fd8676c9b702b4fbdc145911d48782749c22cb (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-b, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, RELEASE=reef-19e2a2b, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, CEPH_POINT_RELEASE=, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , ceph=True) 2024-09-17T08:08:57.003 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:08:56 smithi145 podman[33588]: 2024-09-17 08:08:56.697396191 +0000 UTC m=+0.396886158 container start 9bec378183b2510730dab61d14fd8676c9b702b4fbdc145911d48782749c22cb (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-b, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, GIT_CLEAN=True, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, RELEASE=reef-19e2a2b, ceph=True, GIT_BRANCH=HEAD) 2024-09-17T08:08:57.003 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:08:56 smithi145 ceph-mgr[33731]: -- 172.21.15.145:0/1993692662 <== mon.2 v2:172.21.15.145:3300/0 4 ==== auth_reply(proto 2 0 (0) Success) v1 ==== 194+0+0 (secure 0 0 0) 0x55c55c49ad00 con 0x55c55c46e800 2024-09-17T08:08:57.003 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:08:56 smithi145 bash[33588]: 9bec378183b2510730dab61d14fd8676c9b702b4fbdc145911d48782749c22cb 2024-09-17T08:08:57.003 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:08:56 smithi145 systemd[1]: Started Ceph mgr.b for ad90ed3e-74cb-11ef-bceb-c7b262605968. 2024-09-17T08:08:57.003 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:08:56 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-b[33693]: 2024-09-17T08:08:56.817+0000 7fdb27c7a040 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-17T08:08:57.003 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:08:56 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-b[33693]: 2024-09-17T08:08:56.877+0000 7fdb27c7a040 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-17T08:08:57.061 INFO:teuthology.orchestra.run.smithi152.stderr:1+0 records in 2024-09-17T08:08:57.061 INFO:teuthology.orchestra.run.smithi152.stderr:1+0 records out 2024-09-17T08:08:57.062 INFO:teuthology.orchestra.run.smithi152.stderr:512 bytes copied, 0.000311748 s, 1.6 MB/s 2024-09-17T08:08:57.063 DEBUG:teuthology.orchestra.run.smithi152:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-17T08:08:57.120 DEBUG:teuthology.orchestra.run.smithi152:> stat /dev/vg_nvme/lv_3 2024-09-17T08:08:57.161 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:56 smithi044 ceph-mon[29204]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:57.176 INFO:teuthology.orchestra.run.smithi152.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-17T08:08:57.176 INFO:teuthology.orchestra.run.smithi152.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T08:08:57.176 INFO:teuthology.orchestra.run.smithi152.stdout:Device: 5h/5d Inode: 968 Links: 1 2024-09-17T08:08:57.176 INFO:teuthology.orchestra.run.smithi152.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T08:08:57.176 INFO:teuthology.orchestra.run.smithi152.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T08:08:57.176 INFO:teuthology.orchestra.run.smithi152.stdout:Access: 2024-09-17 08:08:32.379484472 +0000 2024-09-17T08:08:57.176 INFO:teuthology.orchestra.run.smithi152.stdout:Modify: 2024-09-17 08:03:28.623484159 +0000 2024-09-17T08:08:57.176 INFO:teuthology.orchestra.run.smithi152.stdout:Change: 2024-09-17 08:03:28.623484159 +0000 2024-09-17T08:08:57.176 INFO:teuthology.orchestra.run.smithi152.stdout: Birth: 2024-09-17 08:03:28.623484159 +0000 2024-09-17T08:08:57.177 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-17T08:08:57.237 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:56 smithi152 ceph-mon[32920]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:57.240 INFO:teuthology.orchestra.run.smithi152.stderr:1+0 records in 2024-09-17T08:08:57.240 INFO:teuthology.orchestra.run.smithi152.stderr:1+0 records out 2024-09-17T08:08:57.240 INFO:teuthology.orchestra.run.smithi152.stderr:512 bytes copied, 0.00018776 s, 2.7 MB/s 2024-09-17T08:08:57.241 DEBUG:teuthology.orchestra.run.smithi152:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-17T08:08:57.297 DEBUG:teuthology.orchestra.run.smithi152:> stat /dev/vg_nvme/lv_4 2024-09-17T08:08:57.352 INFO:teuthology.orchestra.run.smithi152.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-17T08:08:57.352 INFO:teuthology.orchestra.run.smithi152.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T08:08:57.352 INFO:teuthology.orchestra.run.smithi152.stdout:Device: 5h/5d Inode: 983 Links: 1 2024-09-17T08:08:57.352 INFO:teuthology.orchestra.run.smithi152.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T08:08:57.352 INFO:teuthology.orchestra.run.smithi152.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T08:08:57.352 INFO:teuthology.orchestra.run.smithi152.stdout:Access: 2024-09-17 08:08:32.379484472 +0000 2024-09-17T08:08:57.353 INFO:teuthology.orchestra.run.smithi152.stdout:Modify: 2024-09-17 08:03:28.625484136 +0000 2024-09-17T08:08:57.353 INFO:teuthology.orchestra.run.smithi152.stdout:Change: 2024-09-17 08:03:28.625484136 +0000 2024-09-17T08:08:57.353 INFO:teuthology.orchestra.run.smithi152.stdout: Birth: 2024-09-17 08:03:28.625484136 +0000 2024-09-17T08:08:57.353 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-17T08:08:57.413 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:08:57 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-b[33693]: 2024-09-17T08:08:57.031+0000 7fdb27c7a040 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-09-17T08:08:57.413 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:08:57 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-b[33693]: 2024-09-17T08:08:57.100+0000 7fdb27c7a040 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-17T08:08:57.413 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:08:57 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-b[33693]: 2024-09-17T08:08:57.265+0000 7fdb27c7a040 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-17T08:08:57.413 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:08:57 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-b[33693]: 2024-09-17T08:08:57.411+0000 7fdb27c7a040 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-17T08:08:57.415 INFO:teuthology.orchestra.run.smithi152.stderr:1+0 records in 2024-09-17T08:08:57.415 INFO:teuthology.orchestra.run.smithi152.stderr:1+0 records out 2024-09-17T08:08:57.415 INFO:teuthology.orchestra.run.smithi152.stderr:512 bytes copied, 0.000272777 s, 1.9 MB/s 2024-09-17T08:08:57.416 DEBUG:teuthology.orchestra.run.smithi152:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-17T08:08:57.473 INFO:tasks.cephadm:Deploying osd.0 on smithi044 with /dev/vg_nvme/lv_4... 2024-09-17T08:08:57.473 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-09-17T08:08:57.683 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T08:08:57.729 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:08:57 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-b[33693]: 2024-09-17T08:08:57.727+0000 7fdb27c7a040 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-17T08:08:58.002 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:08:57 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-b[33693]: 2024-09-17T08:08:57.788+0000 7fdb27c7a040 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-17T08:08:58.003 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:08:57 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-b[33693]: 2024-09-17T08:08:57.970+0000 7fdb27c7a040 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-17T08:08:58.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:57 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:58.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:57 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:58.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:57 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:58.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:57 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:58.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:57 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:08:58.077 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:57 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:58.077 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:57 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:58.077 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:57 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:58.077 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:57 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:58.077 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:57 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:08:58.275 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:57 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:58.275 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:57 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:58.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:57 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:58.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:57 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:58.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:57 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:08:59.252 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:08:58 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-b[33693]: 2024-09-17T08:08:58.829+0000 7fdb27c7a040 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-17T08:08:59.253 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:08:58 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-b[33693]: 2024-09-17T08:08:58.893+0000 7fdb27c7a040 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-17T08:08:59.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:59 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:59.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:59 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:59.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:59 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:59.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:59 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:08:59.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:59 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:59.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:59 smithi145 ceph-mon[32346]: Reconfiguring mgr.a (unknown last config time)... 2024-09-17T08:08:59.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:59 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T08:08:59.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:59 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T08:08:59.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:59 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:59.254 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:59 smithi145 ceph-mon[32346]: Reconfiguring daemon mgr.a on smithi044 2024-09-17T08:08:59.254 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:08:59 smithi145 ceph-mon[32346]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:59.291 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:59 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:59.291 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:59 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:59.291 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:59 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:59.291 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:59 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:08:59.291 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:59 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:59.292 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:59 smithi044 ceph-mon[29204]: Reconfiguring mgr.a (unknown last config time)... 2024-09-17T08:08:59.292 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:59 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T08:08:59.292 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:59 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T08:08:59.292 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:59 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:59.292 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:59 smithi044 ceph-mon[29204]: Reconfiguring daemon mgr.a on smithi044 2024-09-17T08:08:59.292 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:08:59 smithi044 ceph-mon[29204]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:59.313 INFO:teuthology.orchestra.run.smithi044.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-09-17T08:08:59.407 INFO:teuthology.orchestra.run.smithi044.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-09-17T08:08:59.421 INFO:teuthology.orchestra.run.smithi044.stderr: stderr: 10+0 records in 2024-09-17T08:08:59.422 INFO:teuthology.orchestra.run.smithi044.stderr:10+0 records out 2024-09-17T08:08:59.422 INFO:teuthology.orchestra.run.smithi044.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0126739 s, 827 MB/s 2024-09-17T08:08:59.422 INFO:teuthology.orchestra.run.smithi044.stderr:--> Zapping successful for: 2024-09-17T08:08:59.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:59 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:59.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:59 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:59.526 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:59 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:59.526 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:59 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:08:59.526 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:59 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:08:59.526 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:59 smithi152 ceph-mon[32920]: Reconfiguring mgr.a (unknown last config time)... 2024-09-17T08:08:59.526 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:59 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T08:08:59.526 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:59 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T08:08:59.526 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:59 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:08:59.526 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:59 smithi152 ceph-mon[32920]: Reconfiguring daemon mgr.a on smithi044 2024-09-17T08:08:59.526 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:08:59 smithi152 ceph-mon[32920]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:08:59.898 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:08:59 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-b[33693]: 2024-09-17T08:08:59.590+0000 7fdb27c7a040 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-17T08:08:59.899 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:08:59 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-b[33693]: 2024-09-17T08:08:59.701+0000 7fdb27c7a040 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-17T08:08:59.899 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:08:59 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-b[33693]: 2024-09-17T08:08:59.838+0000 7fdb27c7a040 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-17T08:08:59.899 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:08:59 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-b[33693]: 2024-09-17T08:08:59.896+0000 7fdb27c7a040 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-17T08:09:00.164 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:09:00 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-b[33693]: 2024-09-17T08:09:00.039+0000 7fdb27c7a040 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-17T08:09:00.164 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:09:00 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-b[33693]: 2024-09-17T08:09:00.104+0000 7fdb27c7a040 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-17T08:09:00.164 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:09:00 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-b[33693]: 2024-09-17T08:09:00.162+0000 7fdb27c7a040 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-17T08:09:00.449 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:09:00 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-b[33693]: 2024-09-17T08:09:00.317+0000 7fdb27c7a040 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-17T08:09:00.449 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:09:00 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-b[33693]: 2024-09-17T08:09:00.383+0000 7fdb27c7a040 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-17T08:09:00.449 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:09:00 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-b[33693]: 2024-09-17T08:09:00.447+0000 7fdb27c7a040 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-17T08:09:00.752 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:09:00 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-b[33693]: 2024-09-17T08:09:00.527+0000 7fdb27c7a040 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-17T08:09:00.753 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:09:00 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-b[33693]: 2024-09-17T08:09:00.584+0000 7fdb27c7a040 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-17T08:09:00.753 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:09:00 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-b[33693]: 2024-09-17T08:09:00.641+0000 7fdb27c7a040 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-17T08:09:00.774 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi044:vg_nvme/lv_4 2024-09-17T08:09:00.974 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T08:09:01.379 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:01 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:01.379 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:01 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:01.379 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:01 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:09:01.379 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:01 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:09:01.379 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:01 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:09:01.379 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:01 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:01.379 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:01 smithi044 ceph-mon[29204]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:09:01.379 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:01 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:01.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:01 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:01.526 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:01 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:01.526 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:01 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:09:01.526 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:01 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:09:01.526 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:01 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:09:01.526 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:01 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:01.526 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:01 smithi152 ceph-mon[32920]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:09:01.526 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:01 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:01.752 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:09:01 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-b[33693]: 2024-09-17T08:09:01.398+0000 7fdb27c7a040 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-17T08:09:01.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:01 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:01.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:01 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:01.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:01 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:09:01.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:01 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:09:01.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:01 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:09:01.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:01 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:01.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:01 smithi145 ceph-mon[32346]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:09:01.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:01 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:02.385 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:02 smithi044 ceph-mon[29204]: Standby manager daemon b started 2024-09-17T08:09:02.385 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:02 smithi044 ceph-mon[29204]: from='mgr.? 172.21.15.145:0/1980439561' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-09-17T08:09:02.385 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:02 smithi044 ceph-mon[29204]: from='mgr.? 172.21.15.145:0/1980439561' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-17T08:09:02.385 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:02 smithi044 ceph-mon[29204]: from='mgr.? 172.21.15.145:0/1980439561' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-09-17T08:09:02.385 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:02 smithi044 ceph-mon[29204]: from='mgr.? 172.21.15.145:0/1980439561' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-17T08:09:02.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:02 smithi152 ceph-mon[32920]: Standby manager daemon b started 2024-09-17T08:09:02.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:02 smithi152 ceph-mon[32920]: from='mgr.? 172.21.15.145:0/1980439561' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-09-17T08:09:02.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:02 smithi152 ceph-mon[32920]: from='mgr.? 172.21.15.145:0/1980439561' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-17T08:09:02.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:02 smithi152 ceph-mon[32920]: from='mgr.? 172.21.15.145:0/1980439561' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-09-17T08:09:02.526 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:02 smithi152 ceph-mon[32920]: from='mgr.? 172.21.15.145:0/1980439561' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-17T08:09:02.757 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:02 smithi145 ceph-mon[32346]: Standby manager daemon b started 2024-09-17T08:09:02.757 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:02 smithi145 ceph-mon[32346]: from='mgr.? 172.21.15.145:0/1980439561' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-09-17T08:09:02.757 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:02 smithi145 ceph-mon[32346]: from='mgr.? 172.21.15.145:0/1980439561' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-17T08:09:02.757 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:02 smithi145 ceph-mon[32346]: from='mgr.? 172.21.15.145:0/1980439561' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-09-17T08:09:02.758 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:02 smithi145 ceph-mon[32346]: from='mgr.? 172.21.15.145:0/1980439561' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-17T08:09:03.538 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:03 smithi152 ceph-mon[32920]: mgrmap e14: a(active, since 71s), standbys: b 2024-09-17T08:09:03.539 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:03 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-09-17T08:09:03.539 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:03 smithi152 ceph-mon[32920]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:09:03.539 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:03 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T08:09:03.539 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:03 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T08:09:03.539 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:03 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:09:03.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:03 smithi044 ceph-mon[29204]: mgrmap e14: a(active, since 71s), standbys: b 2024-09-17T08:09:03.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:03 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-09-17T08:09:03.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:03 smithi044 ceph-mon[29204]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:09:03.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:03 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T08:09:03.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:03 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T08:09:03.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:03 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:09:03.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:03 smithi145 ceph-mon[32346]: mgrmap e14: a(active, since 71s), standbys: b 2024-09-17T08:09:03.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:03 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-09-17T08:09:03.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:03 smithi145 ceph-mon[32346]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:09:03.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:03 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T08:09:03.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:03 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T08:09:03.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:03 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:09:04.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:04 smithi044 ceph-mon[29204]: from='client.14217 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi044:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:09:04.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:04 smithi145 ceph-mon[32346]: from='client.14217 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi044:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:09:04.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:04 smithi152 ceph-mon[32920]: from='client.14217 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi044:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:09:05.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:05 smithi044 ceph-mon[29204]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:09:05.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:05 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/3548257339' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "620fc6f4-529d-46e1-8540-2577304d82d3"}]: dispatch 2024-09-17T08:09:05.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:05 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/3548257339' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "620fc6f4-529d-46e1-8540-2577304d82d3"}]': finished 2024-09-17T08:09:05.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:05 smithi044 ceph-mon[29204]: osdmap e5: 1 total, 0 up, 1 in 2024-09-17T08:09:05.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:05 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:09:05.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:05 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/2090855047' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T08:09:05.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:05 smithi145 ceph-mon[32346]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:09:05.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:05 smithi145 ceph-mon[32346]: from='client.? 172.21.15.44:0/3548257339' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "620fc6f4-529d-46e1-8540-2577304d82d3"}]: dispatch 2024-09-17T08:09:05.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:05 smithi145 ceph-mon[32346]: from='client.? 172.21.15.44:0/3548257339' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "620fc6f4-529d-46e1-8540-2577304d82d3"}]': finished 2024-09-17T08:09:05.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:05 smithi145 ceph-mon[32346]: osdmap e5: 1 total, 0 up, 1 in 2024-09-17T08:09:05.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:05 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:09:05.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:05 smithi145 ceph-mon[32346]: from='client.? 172.21.15.44:0/2090855047' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T08:09:05.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:05 smithi152 ceph-mon[32920]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:09:05.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:05 smithi152 ceph-mon[32920]: from='client.? 172.21.15.44:0/3548257339' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "620fc6f4-529d-46e1-8540-2577304d82d3"}]: dispatch 2024-09-17T08:09:05.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:05 smithi152 ceph-mon[32920]: from='client.? 172.21.15.44:0/3548257339' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "620fc6f4-529d-46e1-8540-2577304d82d3"}]': finished 2024-09-17T08:09:05.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:05 smithi152 ceph-mon[32920]: osdmap e5: 1 total, 0 up, 1 in 2024-09-17T08:09:05.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:05 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:09:05.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:05 smithi152 ceph-mon[32920]: from='client.? 172.21.15.44:0/2090855047' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T08:09:07.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:07 smithi044 ceph-mon[29204]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:09:07.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:07 smithi145 ceph-mon[32346]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:09:07.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:07 smithi152 ceph-mon[32920]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:09:09.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:09 smithi044 ceph-mon[29204]: pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:09:09.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:09 smithi145 ceph-mon[32346]: pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:09:09.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:09 smithi152 ceph-mon[32920]: pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:09:10.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:10 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-17T08:09:10.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:10 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:09:10.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:10 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-17T08:09:10.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:10 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:09:10.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:10 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-17T08:09:10.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:10 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:09:11.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:11 smithi044 ceph-mon[29204]: Deploying daemon osd.0 on smithi044 2024-09-17T08:09:11.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:11 smithi044 ceph-mon[29204]: pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:09:11.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:11 smithi145 ceph-mon[32346]: Deploying daemon osd.0 on smithi044 2024-09-17T08:09:11.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:11 smithi145 ceph-mon[32346]: pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:09:11.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:11 smithi152 ceph-mon[32920]: Deploying daemon osd.0 on smithi044 2024-09-17T08:09:11.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:11 smithi152 ceph-mon[32920]: pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:09:13.652 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:13 smithi044 ceph-mon[29204]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:09:13.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:13 smithi145 ceph-mon[32346]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:09:13.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:13 smithi152 ceph-mon[32920]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:09:15.645 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:15 smithi044 ceph-mon[29204]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:09:15.645 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:15 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:09:15.645 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:15 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:15.645 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:15 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:15.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:15 smithi145 ceph-mon[32346]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:09:15.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:15 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:09:15.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:15 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:15.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:15 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:15.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:15 smithi152 ceph-mon[32920]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:09:15.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:15 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:09:15.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:15 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:15.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:15 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:17.613 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:17 smithi044 ceph-mon[29204]: pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:09:17.613 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:17 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:17.613 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:17 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:17.613 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:17 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:09:17.613 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:17 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:09:17.613 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:17 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:17.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:17 smithi145 ceph-mon[32346]: pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:09:17.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:17 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:17.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:17 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:17.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:17 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:09:17.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:17 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:09:17.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:17 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:17.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:17 smithi152 ceph-mon[32920]: pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:09:17.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:17 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:17.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:17 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:17.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:17 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:09:17.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:17 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:09:17.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:17 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:18.390 INFO:teuthology.orchestra.run.smithi044.stdout:Created osd(s) 0 on host 'smithi044' 2024-09-17T08:09:18.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:18 smithi044 ceph-mon[29204]: from='osd.0 [v2:172.21.15.44:6802/1421261021,v1:172.21.15.44:6803/1421261021]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-17T08:09:18.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:18 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:09:18.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:18 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:18.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:18 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:18.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:18 smithi145 ceph-mon[32346]: from='osd.0 [v2:172.21.15.44:6802/1421261021,v1:172.21.15.44:6803/1421261021]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-17T08:09:18.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:18 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:09:18.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:18 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:18.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:18 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:18.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:18 smithi152 ceph-mon[32920]: from='osd.0 [v2:172.21.15.44:6802/1421261021,v1:172.21.15.44:6803/1421261021]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-17T08:09:18.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:18 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:09:18.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:18 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:18.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:18 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:18.920 DEBUG:teuthology.orchestra.run.smithi044:osd.0> sudo journalctl -f -n 0 -u ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@osd.0.service 2024-09-17T08:09:18.922 INFO:tasks.cephadm:Deploying osd.1 on smithi044 with /dev/vg_nvme/lv_3... 2024-09-17T08:09:18.923 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-09-17T08:09:19.617 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:19 smithi044 ceph-mon[29204]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:09:19.617 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:19 smithi044 ceph-mon[29204]: from='osd.0 [v2:172.21.15.44:6802/1421261021,v1:172.21.15.44:6803/1421261021]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-17T08:09:19.617 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:19 smithi044 ceph-mon[29204]: osdmap e6: 1 total, 0 up, 1 in 2024-09-17T08:09:19.617 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:19 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:09:19.617 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:19 smithi044 ceph-mon[29204]: from='osd.0 [v2:172.21.15.44:6802/1421261021,v1:172.21.15.44:6803/1421261021]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi044", "root=default"]}]: dispatch 2024-09-17T08:09:19.618 INFO:journalctl@ceph.osd.0.smithi044.stdout:Sep 17 08:09:19 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-0[43212]: 2024-09-17T08:09:19.416+0000 7f0c294ea640 -1 osd.0 0 waiting for initial osdmap 2024-09-17T08:09:19.618 INFO:journalctl@ceph.osd.0.smithi044.stdout:Sep 17 08:09:19 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-0[43212]: 2024-09-17T08:09:19.419+0000 7f0c25313640 -1 osd.0 7 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-17T08:09:19.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:19 smithi145 ceph-mon[32346]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:09:19.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:19 smithi145 ceph-mon[32346]: from='osd.0 [v2:172.21.15.44:6802/1421261021,v1:172.21.15.44:6803/1421261021]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-17T08:09:19.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:19 smithi145 ceph-mon[32346]: osdmap e6: 1 total, 0 up, 1 in 2024-09-17T08:09:19.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:19 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:09:19.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:19 smithi145 ceph-mon[32346]: from='osd.0 [v2:172.21.15.44:6802/1421261021,v1:172.21.15.44:6803/1421261021]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi044", "root=default"]}]: dispatch 2024-09-17T08:09:19.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:19 smithi152 ceph-mon[32920]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:09:19.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:19 smithi152 ceph-mon[32920]: from='osd.0 [v2:172.21.15.44:6802/1421261021,v1:172.21.15.44:6803/1421261021]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-17T08:09:19.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:19 smithi152 ceph-mon[32920]: osdmap e6: 1 total, 0 up, 1 in 2024-09-17T08:09:19.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:19 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:09:19.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:19 smithi152 ceph-mon[32920]: from='osd.0 [v2:172.21.15.44:6802/1421261021,v1:172.21.15.44:6803/1421261021]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi044", "root=default"]}]: dispatch 2024-09-17T08:09:19.912 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T08:09:20.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:20 smithi044 ceph-mon[29204]: from='osd.0 [v2:172.21.15.44:6802/1421261021,v1:172.21.15.44:6803/1421261021]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi044", "root=default"]}]': finished 2024-09-17T08:09:20.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:20 smithi044 ceph-mon[29204]: osdmap e7: 1 total, 0 up, 1 in 2024-09-17T08:09:20.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:20 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:09:20.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:20 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:09:20.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:20 smithi044 ceph-mon[29204]: pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:09:20.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:20 smithi145 ceph-mon[32346]: from='osd.0 [v2:172.21.15.44:6802/1421261021,v1:172.21.15.44:6803/1421261021]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi044", "root=default"]}]': finished 2024-09-17T08:09:20.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:20 smithi145 ceph-mon[32346]: osdmap e7: 1 total, 0 up, 1 in 2024-09-17T08:09:20.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:20 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:09:20.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:20 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:09:20.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:20 smithi145 ceph-mon[32346]: pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:09:20.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:20 smithi152 ceph-mon[32920]: from='osd.0 [v2:172.21.15.44:6802/1421261021,v1:172.21.15.44:6803/1421261021]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi044", "root=default"]}]': finished 2024-09-17T08:09:20.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:20 smithi152 ceph-mon[32920]: osdmap e7: 1 total, 0 up, 1 in 2024-09-17T08:09:20.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:20 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:09:20.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:20 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:09:20.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:20 smithi152 ceph-mon[32920]: pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:09:21.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:21 smithi145 ceph-mon[32346]: purged_snaps scrub starts 2024-09-17T08:09:21.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:21 smithi145 ceph-mon[32346]: purged_snaps scrub ok 2024-09-17T08:09:21.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:21 smithi145 ceph-mon[32346]: osd.0 [v2:172.21.15.44:6802/1421261021,v1:172.21.15.44:6803/1421261021] boot 2024-09-17T08:09:21.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:21 smithi145 ceph-mon[32346]: osdmap e8: 1 total, 1 up, 1 in 2024-09-17T08:09:21.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:21 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:09:21.756 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:21 smithi044 ceph-mon[29204]: purged_snaps scrub starts 2024-09-17T08:09:21.756 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:21 smithi044 ceph-mon[29204]: purged_snaps scrub ok 2024-09-17T08:09:21.757 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:21 smithi044 ceph-mon[29204]: osd.0 [v2:172.21.15.44:6802/1421261021,v1:172.21.15.44:6803/1421261021] boot 2024-09-17T08:09:21.757 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:21 smithi044 ceph-mon[29204]: osdmap e8: 1 total, 1 up, 1 in 2024-09-17T08:09:21.757 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:21 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:09:21.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:21 smithi152 ceph-mon[32920]: purged_snaps scrub starts 2024-09-17T08:09:21.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:21 smithi152 ceph-mon[32920]: purged_snaps scrub ok 2024-09-17T08:09:21.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:21 smithi152 ceph-mon[32920]: osd.0 [v2:172.21.15.44:6802/1421261021,v1:172.21.15.44:6803/1421261021] boot 2024-09-17T08:09:21.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:21 smithi152 ceph-mon[32920]: osdmap e8: 1 total, 1 up, 1 in 2024-09-17T08:09:21.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:21 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:09:22.566 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:22 smithi044 ceph-mon[29204]: osdmap e9: 1 total, 1 up, 1 in 2024-09-17T08:09:22.567 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:22 smithi044 ceph-mon[29204]: Detected new or changed devices on smithi044 2024-09-17T08:09:22.567 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:22 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:22.567 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:22 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:22.567 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:22 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:09:22.567 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:22 smithi044 ceph-mon[29204]: Adjusting osd_memory_target on smithi044 to 17092M 2024-09-17T08:09:22.567 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:22 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:22.567 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:22 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:09:22.567 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:22 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:09:22.567 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:22 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:22.567 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:22 smithi044 ceph-mon[29204]: pgmap v45: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:22.672 INFO:teuthology.orchestra.run.smithi044.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-09-17T08:09:22.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:22 smithi145 ceph-mon[32346]: osdmap e9: 1 total, 1 up, 1 in 2024-09-17T08:09:22.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:22 smithi145 ceph-mon[32346]: Detected new or changed devices on smithi044 2024-09-17T08:09:22.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:22 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:22.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:22 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:22.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:22 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:09:22.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:22 smithi145 ceph-mon[32346]: Adjusting osd_memory_target on smithi044 to 17092M 2024-09-17T08:09:22.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:22 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:22.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:22 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:09:22.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:22 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:09:22.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:22 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:22.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:22 smithi145 ceph-mon[32346]: pgmap v45: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:22.771 INFO:teuthology.orchestra.run.smithi044.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-09-17T08:09:22.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:22 smithi152 ceph-mon[32920]: osdmap e9: 1 total, 1 up, 1 in 2024-09-17T08:09:22.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:22 smithi152 ceph-mon[32920]: Detected new or changed devices on smithi044 2024-09-17T08:09:22.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:22 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:22.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:22 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:22.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:22 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:09:22.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:22 smithi152 ceph-mon[32920]: Adjusting osd_memory_target on smithi044 to 17092M 2024-09-17T08:09:22.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:22 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:22.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:22 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:09:22.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:22 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:09:22.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:22 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:22.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:22 smithi152 ceph-mon[32920]: pgmap v45: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:22.785 INFO:teuthology.orchestra.run.smithi044.stderr: stderr: 10+0 records in 2024-09-17T08:09:22.785 INFO:teuthology.orchestra.run.smithi044.stderr:10+0 records out 2024-09-17T08:09:22.785 INFO:teuthology.orchestra.run.smithi044.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0113654 s, 923 MB/s 2024-09-17T08:09:22.785 INFO:teuthology.orchestra.run.smithi044.stderr:--> Zapping successful for: 2024-09-17T08:09:23.376 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi044:vg_nvme/lv_3 2024-09-17T08:09:23.578 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T08:09:25.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:25 smithi044 ceph-mon[29204]: pgmap v46: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:25.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:25 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T08:09:25.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:25 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T08:09:25.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:25 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:09:25.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:25 smithi145 ceph-mon[32346]: pgmap v46: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:25.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:25 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T08:09:25.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:25 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T08:09:25.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:25 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:09:25.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:25 smithi152 ceph-mon[32920]: pgmap v46: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:25.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:25 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T08:09:25.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:25 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T08:09:25.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:25 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:09:26.594 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:26 smithi044 ceph-mon[29204]: from='client.14244 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi044:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:09:26.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:26 smithi145 ceph-mon[32346]: from='client.14244 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi044:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:09:26.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:26 smithi152 ceph-mon[32920]: from='client.14244 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi044:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:09:27.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:27 smithi044 ceph-mon[29204]: pgmap v47: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:27.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:27 smithi145 ceph-mon[32346]: pgmap v47: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:27.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:27 smithi152 ceph-mon[32920]: pgmap v47: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:28.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:28 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/4163597383' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "44f09a8e-2cc8-4e9b-a875-3d86b73401cd"}]: dispatch 2024-09-17T08:09:28.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:28 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/4163597383' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "44f09a8e-2cc8-4e9b-a875-3d86b73401cd"}]': finished 2024-09-17T08:09:28.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:28 smithi044 ceph-mon[29204]: osdmap e10: 2 total, 1 up, 2 in 2024-09-17T08:09:28.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:28 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:09:28.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:28 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/2246187532' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T08:09:28.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:28 smithi145 ceph-mon[32346]: from='client.? 172.21.15.44:0/4163597383' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "44f09a8e-2cc8-4e9b-a875-3d86b73401cd"}]: dispatch 2024-09-17T08:09:28.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:28 smithi145 ceph-mon[32346]: from='client.? 172.21.15.44:0/4163597383' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "44f09a8e-2cc8-4e9b-a875-3d86b73401cd"}]': finished 2024-09-17T08:09:28.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:28 smithi145 ceph-mon[32346]: osdmap e10: 2 total, 1 up, 2 in 2024-09-17T08:09:28.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:28 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:09:28.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:28 smithi145 ceph-mon[32346]: from='client.? 172.21.15.44:0/2246187532' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T08:09:28.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:28 smithi152 ceph-mon[32920]: from='client.? 172.21.15.44:0/4163597383' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "44f09a8e-2cc8-4e9b-a875-3d86b73401cd"}]: dispatch 2024-09-17T08:09:28.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:28 smithi152 ceph-mon[32920]: from='client.? 172.21.15.44:0/4163597383' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "44f09a8e-2cc8-4e9b-a875-3d86b73401cd"}]': finished 2024-09-17T08:09:28.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:28 smithi152 ceph-mon[32920]: osdmap e10: 2 total, 1 up, 2 in 2024-09-17T08:09:28.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:28 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:09:28.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:28 smithi152 ceph-mon[32920]: from='client.? 172.21.15.44:0/2246187532' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T08:09:29.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:29 smithi044 ceph-mon[29204]: pgmap v49: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:29.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:29 smithi145 ceph-mon[32346]: pgmap v49: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:29.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:29 smithi152 ceph-mon[32920]: pgmap v49: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:31.642 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:31 smithi044 ceph-mon[29204]: pgmap v50: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:31.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:31 smithi145 ceph-mon[32346]: pgmap v50: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:31.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:31 smithi152 ceph-mon[32920]: pgmap v50: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:33.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:33 smithi044 ceph-mon[29204]: pgmap v51: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:33.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:33 smithi145 ceph-mon[32346]: pgmap v51: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:33.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:33 smithi152 ceph-mon[32920]: pgmap v51: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:34.475 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:34 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-17T08:09:34.475 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:34 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:09:34.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:34 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-17T08:09:34.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:34 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:09:34.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:34 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-17T08:09:34.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:34 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:09:35.494 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:35 smithi044 ceph-mon[29204]: Deploying daemon osd.1 on smithi044 2024-09-17T08:09:35.494 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:35 smithi044 ceph-mon[29204]: pgmap v52: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:35.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:35 smithi145 ceph-mon[32346]: Deploying daemon osd.1 on smithi044 2024-09-17T08:09:35.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:35 smithi145 ceph-mon[32346]: pgmap v52: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:35.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:35 smithi152 ceph-mon[32920]: Deploying daemon osd.1 on smithi044 2024-09-17T08:09:35.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:35 smithi152 ceph-mon[32920]: pgmap v52: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:37.536 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:37 smithi044 ceph-mon[29204]: pgmap v53: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:37.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:37 smithi145 ceph-mon[32346]: pgmap v53: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:37.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:37 smithi152 ceph-mon[32920]: pgmap v53: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:39.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:39 smithi044 ceph-mon[29204]: pgmap v54: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:39.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:39 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:09:39.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:39 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:39.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:39 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:39.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:39 smithi145 ceph-mon[32346]: pgmap v54: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:39.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:39 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:09:39.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:39 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:39.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:39 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:39.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:39 smithi152 ceph-mon[32920]: pgmap v54: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:39.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:39 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:09:39.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:39 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:39.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:39 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:41.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:41 smithi044 ceph-mon[29204]: pgmap v55: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:41.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:41 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:41.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:41 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:41.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:41 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:09:41.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:41 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:09:41.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:41 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:41.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:41 smithi145 ceph-mon[32346]: pgmap v55: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:41.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:41 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:41.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:41 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:41.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:41 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:09:41.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:41 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:09:41.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:41 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:41.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:41 smithi152 ceph-mon[32920]: pgmap v55: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:41.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:41 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:41.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:41 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:41.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:41 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:09:41.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:41 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:09:41.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:41 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:41.964 INFO:teuthology.orchestra.run.smithi044.stdout:Created osd(s) 1 on host 'smithi044' 2024-09-17T08:09:42.573 DEBUG:teuthology.orchestra.run.smithi044:osd.1> sudo journalctl -f -n 0 -u ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@osd.1.service 2024-09-17T08:09:42.576 INFO:tasks.cephadm:Deploying osd.2 on smithi145 with /dev/vg_nvme/lv_4... 2024-09-17T08:09:42.576 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-09-17T08:09:42.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:42 smithi044 ceph-mon[29204]: from='osd.1 [v2:172.21.15.44:6810/2391321073,v1:172.21.15.44:6811/2391321073]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-17T08:09:42.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:42 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:09:42.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:42 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:42.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:42 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:42.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:42 smithi145 ceph-mon[32346]: from='osd.1 [v2:172.21.15.44:6810/2391321073,v1:172.21.15.44:6811/2391321073]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-17T08:09:42.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:42 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:09:42.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:42 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:42.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:42 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:42.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:42 smithi152 ceph-mon[32920]: from='osd.1 [v2:172.21.15.44:6810/2391321073,v1:172.21.15.44:6811/2391321073]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-17T08:09:42.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:42 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:09:42.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:42 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:42.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:42 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:42.780 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.b/config 2024-09-17T08:09:43.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:43 smithi044 ceph-mon[29204]: pgmap v56: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:43.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:43 smithi044 ceph-mon[29204]: from='osd.1 [v2:172.21.15.44:6810/2391321073,v1:172.21.15.44:6811/2391321073]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-17T08:09:43.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:43 smithi044 ceph-mon[29204]: osdmap e11: 2 total, 1 up, 2 in 2024-09-17T08:09:43.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:43 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:09:43.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:43 smithi044 ceph-mon[29204]: from='osd.1 [v2:172.21.15.44:6810/2391321073,v1:172.21.15.44:6811/2391321073]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi044", "root=default"]}]: dispatch 2024-09-17T08:09:43.662 INFO:journalctl@ceph.osd.1.smithi044.stdout:Sep 17 08:09:43 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-1[48801]: 2024-09-17T08:09:43.417+0000 7f18d8060640 -1 osd.1 0 waiting for initial osdmap 2024-09-17T08:09:43.662 INFO:journalctl@ceph.osd.1.smithi044.stdout:Sep 17 08:09:43 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-1[48801]: 2024-09-17T08:09:43.419+0000 7f18d3e89640 -1 osd.1 12 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-17T08:09:43.732 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:43 smithi145 ceph-mon[32346]: pgmap v56: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:43.732 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:43 smithi145 ceph-mon[32346]: from='osd.1 [v2:172.21.15.44:6810/2391321073,v1:172.21.15.44:6811/2391321073]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-17T08:09:43.733 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:43 smithi145 ceph-mon[32346]: osdmap e11: 2 total, 1 up, 2 in 2024-09-17T08:09:43.733 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:43 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:09:43.733 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:43 smithi145 ceph-mon[32346]: from='osd.1 [v2:172.21.15.44:6810/2391321073,v1:172.21.15.44:6811/2391321073]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi044", "root=default"]}]: dispatch 2024-09-17T08:09:43.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:43 smithi152 ceph-mon[32920]: pgmap v56: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:43.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:43 smithi152 ceph-mon[32920]: from='osd.1 [v2:172.21.15.44:6810/2391321073,v1:172.21.15.44:6811/2391321073]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-17T08:09:43.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:43 smithi152 ceph-mon[32920]: osdmap e11: 2 total, 1 up, 2 in 2024-09-17T08:09:43.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:43 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:09:43.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:43 smithi152 ceph-mon[32920]: from='osd.1 [v2:172.21.15.44:6810/2391321073,v1:172.21.15.44:6811/2391321073]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi044", "root=default"]}]: dispatch 2024-09-17T08:09:44.398 INFO:teuthology.orchestra.run.smithi145.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-09-17T08:09:44.499 INFO:teuthology.orchestra.run.smithi145.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-09-17T08:09:44.513 INFO:teuthology.orchestra.run.smithi145.stderr: stderr: 10+0 records in 2024-09-17T08:09:44.513 INFO:teuthology.orchestra.run.smithi145.stderr:10+0 records out 2024-09-17T08:09:44.513 INFO:teuthology.orchestra.run.smithi145.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0114957 s, 912 MB/s 2024-09-17T08:09:44.513 INFO:teuthology.orchestra.run.smithi145.stderr:--> Zapping successful for: 2024-09-17T08:09:44.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:44 smithi044 ceph-mon[29204]: from='osd.1 [v2:172.21.15.44:6810/2391321073,v1:172.21.15.44:6811/2391321073]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi044", "root=default"]}]': finished 2024-09-17T08:09:44.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:44 smithi044 ceph-mon[29204]: osdmap e12: 2 total, 1 up, 2 in 2024-09-17T08:09:44.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:44 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:09:44.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:44 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:09:44.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:44 smithi044 ceph-mon[29204]: pgmap v59: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:44.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:44 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:09:44.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:44 smithi145 ceph-mon[32346]: from='osd.1 [v2:172.21.15.44:6810/2391321073,v1:172.21.15.44:6811/2391321073]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi044", "root=default"]}]': finished 2024-09-17T08:09:44.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:44 smithi145 ceph-mon[32346]: osdmap e12: 2 total, 1 up, 2 in 2024-09-17T08:09:44.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:44 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:09:44.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:44 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:09:44.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:44 smithi145 ceph-mon[32346]: pgmap v59: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:44.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:44 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:09:44.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:44 smithi152 ceph-mon[32920]: from='osd.1 [v2:172.21.15.44:6810/2391321073,v1:172.21.15.44:6811/2391321073]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi044", "root=default"]}]': finished 2024-09-17T08:09:44.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:44 smithi152 ceph-mon[32920]: osdmap e12: 2 total, 1 up, 2 in 2024-09-17T08:09:44.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:44 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:09:44.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:44 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:09:44.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:44 smithi152 ceph-mon[32920]: pgmap v59: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:09:44.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:44 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:09:45.128 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi145:vg_nvme/lv_4 2024-09-17T08:09:45.322 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.b/config 2024-09-17T08:09:45.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:45 smithi044 ceph-mon[29204]: purged_snaps scrub starts 2024-09-17T08:09:45.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:45 smithi044 ceph-mon[29204]: purged_snaps scrub ok 2024-09-17T08:09:45.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:45 smithi044 ceph-mon[29204]: osd.1 [v2:172.21.15.44:6810/2391321073,v1:172.21.15.44:6811/2391321073] boot 2024-09-17T08:09:45.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:45 smithi044 ceph-mon[29204]: osdmap e13: 2 total, 2 up, 2 in 2024-09-17T08:09:45.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:45 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:09:45.751 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:45 smithi145 ceph-mon[32346]: purged_snaps scrub starts 2024-09-17T08:09:45.751 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:45 smithi145 ceph-mon[32346]: purged_snaps scrub ok 2024-09-17T08:09:45.751 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:45 smithi145 ceph-mon[32346]: osd.1 [v2:172.21.15.44:6810/2391321073,v1:172.21.15.44:6811/2391321073] boot 2024-09-17T08:09:45.751 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:45 smithi145 ceph-mon[32346]: osdmap e13: 2 total, 2 up, 2 in 2024-09-17T08:09:45.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:45 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:09:45.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:45 smithi152 ceph-mon[32920]: purged_snaps scrub starts 2024-09-17T08:09:45.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:45 smithi152 ceph-mon[32920]: purged_snaps scrub ok 2024-09-17T08:09:45.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:45 smithi152 ceph-mon[32920]: osd.1 [v2:172.21.15.44:6810/2391321073,v1:172.21.15.44:6811/2391321073] boot 2024-09-17T08:09:45.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:45 smithi152 ceph-mon[32920]: osdmap e13: 2 total, 2 up, 2 in 2024-09-17T08:09:45.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:45 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:09:46.686 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:46 smithi145 ceph-mon[32346]: osdmap e14: 2 total, 2 up, 2 in 2024-09-17T08:09:46.687 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:46 smithi145 ceph-mon[32346]: Detected new or changed devices on smithi044 2024-09-17T08:09:46.687 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:46 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:46.687 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:46 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:46.687 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:46 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:09:46.687 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:46 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:09:46.687 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:46 smithi145 ceph-mon[32346]: Adjusting osd_memory_target on smithi044 to 8546M 2024-09-17T08:09:46.687 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:46 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:46.687 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:46 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:09:46.687 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:46 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:09:46.687 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:46 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:46.688 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:46 smithi145 ceph-mon[32346]: pgmap v62: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:09:46.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:46 smithi152 ceph-mon[32920]: osdmap e14: 2 total, 2 up, 2 in 2024-09-17T08:09:46.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:46 smithi152 ceph-mon[32920]: Detected new or changed devices on smithi044 2024-09-17T08:09:46.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:46 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:46.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:46 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:46.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:46 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:09:46.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:46 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:09:46.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:46 smithi152 ceph-mon[32920]: Adjusting osd_memory_target on smithi044 to 8546M 2024-09-17T08:09:46.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:46 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:46.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:46 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:09:46.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:46 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:09:46.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:46 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:46.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:46 smithi152 ceph-mon[32920]: pgmap v62: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:09:46.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:46 smithi044 ceph-mon[29204]: osdmap e14: 2 total, 2 up, 2 in 2024-09-17T08:09:46.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:46 smithi044 ceph-mon[29204]: Detected new or changed devices on smithi044 2024-09-17T08:09:46.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:46 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:46.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:46 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:46.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:46 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:09:46.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:46 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:09:46.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:46 smithi044 ceph-mon[29204]: Adjusting osd_memory_target on smithi044 to 8546M 2024-09-17T08:09:46.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:46 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:46.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:46 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:09:46.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:46 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:09:46.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:46 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:09:46.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:46 smithi044 ceph-mon[29204]: pgmap v62: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:09:47.586 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:47 smithi145 ceph-mon[32346]: from='client.24137 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi145:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:09:47.586 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:47 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T08:09:47.586 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:47 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T08:09:47.586 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:47 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:09:47.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:47 smithi152 ceph-mon[32920]: from='client.24137 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi145:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:09:47.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:47 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T08:09:47.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:47 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T08:09:47.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:47 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:09:47.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:47 smithi044 ceph-mon[29204]: from='client.24137 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi145:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:09:47.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:47 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T08:09:47.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:47 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T08:09:47.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:47 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:09:48.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:48 smithi145 ceph-mon[32346]: pgmap v63: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:09:48.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:48 smithi152 ceph-mon[32920]: pgmap v63: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:09:48.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:48 smithi044 ceph-mon[29204]: pgmap v63: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:09:49.610 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:49 smithi145 ceph-mon[32346]: from='client.? 172.21.15.145:0/2603804214' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e7911767-44c0-4d98-b89f-86643f2162eb"}]: dispatch 2024-09-17T08:09:49.610 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:49 smithi145 ceph-mon[32346]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e7911767-44c0-4d98-b89f-86643f2162eb"}]: dispatch 2024-09-17T08:09:49.610 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:49 smithi145 ceph-mon[32346]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e7911767-44c0-4d98-b89f-86643f2162eb"}]': finished 2024-09-17T08:09:49.610 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:49 smithi145 ceph-mon[32346]: osdmap e15: 3 total, 2 up, 3 in 2024-09-17T08:09:49.610 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:49 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:09:49.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:49 smithi152 ceph-mon[32920]: from='client.? 172.21.15.145:0/2603804214' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e7911767-44c0-4d98-b89f-86643f2162eb"}]: dispatch 2024-09-17T08:09:49.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:49 smithi152 ceph-mon[32920]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e7911767-44c0-4d98-b89f-86643f2162eb"}]: dispatch 2024-09-17T08:09:49.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:49 smithi152 ceph-mon[32920]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e7911767-44c0-4d98-b89f-86643f2162eb"}]': finished 2024-09-17T08:09:49.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:49 smithi152 ceph-mon[32920]: osdmap e15: 3 total, 2 up, 3 in 2024-09-17T08:09:49.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:49 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:09:49.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:49 smithi044 ceph-mon[29204]: from='client.? 172.21.15.145:0/2603804214' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e7911767-44c0-4d98-b89f-86643f2162eb"}]: dispatch 2024-09-17T08:09:49.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:49 smithi044 ceph-mon[29204]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e7911767-44c0-4d98-b89f-86643f2162eb"}]: dispatch 2024-09-17T08:09:49.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:49 smithi044 ceph-mon[29204]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e7911767-44c0-4d98-b89f-86643f2162eb"}]': finished 2024-09-17T08:09:49.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:49 smithi044 ceph-mon[29204]: osdmap e15: 3 total, 2 up, 3 in 2024-09-17T08:09:49.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:49 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:09:50.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:50 smithi145 ceph-mon[32346]: from='client.? 172.21.15.145:0/1854899198' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T08:09:50.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:50 smithi145 ceph-mon[32346]: pgmap v65: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:09:50.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:50 smithi152 ceph-mon[32920]: from='client.? 172.21.15.145:0/1854899198' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T08:09:50.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:50 smithi152 ceph-mon[32920]: pgmap v65: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:09:50.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:50 smithi044 ceph-mon[29204]: from='client.? 172.21.15.145:0/1854899198' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T08:09:50.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:50 smithi044 ceph-mon[29204]: pgmap v65: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:09:53.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:53 smithi044 ceph-mon[29204]: pgmap v66: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:09:53.670 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:53 smithi145 ceph-mon[32346]: pgmap v66: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:09:53.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:53 smithi152 ceph-mon[32920]: pgmap v66: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:09:55.448 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:55 smithi145 ceph-mon[32346]: pgmap v67: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:09:55.448 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:55 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-17T08:09:55.448 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:55 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:09:55.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:55 smithi044 ceph-mon[29204]: pgmap v67: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:09:55.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:55 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-17T08:09:55.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:55 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:09:55.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:55 smithi152 ceph-mon[32920]: pgmap v67: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:09:55.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:55 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-17T08:09:55.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:55 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:09:56.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:56 smithi145 ceph-mon[32346]: Deploying daemon osd.2 on smithi145 2024-09-17T08:09:56.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:56 smithi044 ceph-mon[29204]: Deploying daemon osd.2 on smithi145 2024-09-17T08:09:56.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:56 smithi152 ceph-mon[32920]: Deploying daemon osd.2 on smithi145 2024-09-17T08:09:57.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:57 smithi044 ceph-mon[29204]: pgmap v68: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:09:57.722 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:57 smithi145 ceph-mon[32346]: pgmap v68: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:09:57.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:57 smithi152 ceph-mon[32920]: pgmap v68: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:09:59.620 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:09:59 smithi145 ceph-mon[32346]: pgmap v69: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:09:59.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:09:59 smithi044 ceph-mon[29204]: pgmap v69: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:09:59.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:09:59 smithi152 ceph-mon[32920]: pgmap v69: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:10:00.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:00 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:10:00.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:00 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:00.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:00 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:00.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:00 smithi044 ceph-mon[29204]: overall HEALTH_OK 2024-09-17T08:10:00.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:00 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:10:00.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:00 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:00.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:00 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:00.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:00 smithi145 ceph-mon[32346]: overall HEALTH_OK 2024-09-17T08:10:00.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:00 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:10:00.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:00 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:00.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:00 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:00.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:00 smithi152 ceph-mon[32920]: overall HEALTH_OK 2024-09-17T08:10:01.502 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:01 smithi145 ceph-mon[32346]: pgmap v70: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:10:01.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:01 smithi044 ceph-mon[29204]: pgmap v70: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:10:01.676 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:01 smithi152 ceph-mon[32920]: pgmap v70: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:10:02.726 INFO:teuthology.orchestra.run.smithi145.stdout:Created osd(s) 2 on host 'smithi145' 2024-09-17T08:10:03.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:03 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:03.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:03 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:03.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:03 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:10:03.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:03 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:10:03.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:03 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:03.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:03 smithi152 ceph-mon[32920]: pgmap v71: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:10:03.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:03 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:10:03.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:03 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:03.277 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:03 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:03.277 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:03 smithi152 ceph-mon[32920]: from='osd.2 [v2:172.21.15.145:6800/439629966,v1:172.21.15.145:6801/439629966]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-17T08:10:03.277 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:03 smithi152 ceph-mon[32920]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-17T08:10:03.297 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:03 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:03.298 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:03 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:03.298 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:03 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:10:03.298 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:03 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:10:03.298 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:03 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:03.298 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:03 smithi145 ceph-mon[32346]: pgmap v71: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:10:03.298 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:03 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:10:03.298 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:03 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:03.298 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:03 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:03.298 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:03 smithi145 ceph-mon[32346]: from='osd.2 [v2:172.21.15.145:6800/439629966,v1:172.21.15.145:6801/439629966]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-17T08:10:03.298 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:03 smithi145 ceph-mon[32346]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-17T08:10:03.317 DEBUG:teuthology.orchestra.run.smithi145:osd.2> sudo journalctl -f -n 0 -u ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@osd.2.service 2024-09-17T08:10:03.319 INFO:tasks.cephadm:Deploying osd.3 on smithi145 with /dev/vg_nvme/lv_3... 2024-09-17T08:10:03.320 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-09-17T08:10:03.411 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:03 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:03.411 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:03 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:03.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:03 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:10:03.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:03 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:10:03.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:03 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:03.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:03 smithi044 ceph-mon[29204]: pgmap v71: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:10:03.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:03 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:10:03.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:03 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:03.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:03 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:03.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:03 smithi044 ceph-mon[29204]: from='osd.2 [v2:172.21.15.145:6800/439629966,v1:172.21.15.145:6801/439629966]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-17T08:10:03.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:03 smithi044 ceph-mon[29204]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-17T08:10:04.330 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.b/config 2024-09-17T08:10:05.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:04 smithi145 ceph-mon[32346]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-17T08:10:05.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:04 smithi145 ceph-mon[32346]: osdmap e16: 3 total, 2 up, 3 in 2024-09-17T08:10:05.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:04 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:10:05.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:04 smithi145 ceph-mon[32346]: from='osd.2 [v2:172.21.15.145:6800/439629966,v1:172.21.15.145:6801/439629966]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi145", "root=default"]}]: dispatch 2024-09-17T08:10:05.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:04 smithi145 ceph-mon[32346]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi145", "root=default"]}]: dispatch 2024-09-17T08:10:05.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:04 smithi145 ceph-mon[32346]: pgmap v73: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:10:05.025 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:04 smithi152 ceph-mon[32920]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-17T08:10:05.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:04 smithi152 ceph-mon[32920]: osdmap e16: 3 total, 2 up, 3 in 2024-09-17T08:10:05.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:04 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:10:05.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:04 smithi152 ceph-mon[32920]: from='osd.2 [v2:172.21.15.145:6800/439629966,v1:172.21.15.145:6801/439629966]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi145", "root=default"]}]: dispatch 2024-09-17T08:10:05.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:04 smithi152 ceph-mon[32920]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi145", "root=default"]}]: dispatch 2024-09-17T08:10:05.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:04 smithi152 ceph-mon[32920]: pgmap v73: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:10:05.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:04 smithi044 ceph-mon[29204]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-17T08:10:05.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:04 smithi044 ceph-mon[29204]: osdmap e16: 3 total, 2 up, 3 in 2024-09-17T08:10:05.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:04 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:10:05.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:04 smithi044 ceph-mon[29204]: from='osd.2 [v2:172.21.15.145:6800/439629966,v1:172.21.15.145:6801/439629966]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi145", "root=default"]}]: dispatch 2024-09-17T08:10:05.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:04 smithi044 ceph-mon[29204]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi145", "root=default"]}]: dispatch 2024-09-17T08:10:05.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:04 smithi044 ceph-mon[29204]: pgmap v73: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:10:05.503 INFO:journalctl@ceph.osd.2.smithi145.stdout:Sep 17 08:10:05 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-2[36556]: 2024-09-17T08:10:05.188+0000 7f2cecdcf640 -1 osd.2 0 waiting for initial osdmap 2024-09-17T08:10:05.503 INFO:journalctl@ceph.osd.2.smithi145.stdout:Sep 17 08:10:05 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-2[36556]: 2024-09-17T08:10:05.191+0000 7f2ce4bf0640 -1 osd.2 17 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-17T08:10:05.932 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:05 smithi145 ceph-mon[32346]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi145", "root=default"]}]': finished 2024-09-17T08:10:05.932 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:05 smithi145 ceph-mon[32346]: osdmap e17: 3 total, 2 up, 3 in 2024-09-17T08:10:05.932 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:05 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:10:05.933 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:05 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:10:05.933 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:05 smithi145 ceph-mon[32346]: from='osd.2 ' entity='osd.2' 2024-09-17T08:10:06.025 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:05 smithi152 ceph-mon[32920]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi145", "root=default"]}]': finished 2024-09-17T08:10:06.025 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:05 smithi152 ceph-mon[32920]: osdmap e17: 3 total, 2 up, 3 in 2024-09-17T08:10:06.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:05 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:10:06.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:05 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:10:06.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:05 smithi152 ceph-mon[32920]: from='osd.2 ' entity='osd.2' 2024-09-17T08:10:06.161 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:05 smithi044 ceph-mon[29204]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi145", "root=default"]}]': finished 2024-09-17T08:10:06.161 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:05 smithi044 ceph-mon[29204]: osdmap e17: 3 total, 2 up, 3 in 2024-09-17T08:10:06.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:05 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:10:06.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:05 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:10:06.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:05 smithi044 ceph-mon[29204]: from='osd.2 ' entity='osd.2' 2024-09-17T08:10:06.974 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:06 smithi145 ceph-mon[32346]: purged_snaps scrub starts 2024-09-17T08:10:06.974 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:06 smithi145 ceph-mon[32346]: purged_snaps scrub ok 2024-09-17T08:10:06.974 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:06 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:10:06.974 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:06 smithi145 ceph-mon[32346]: osd.2 [v2:172.21.15.145:6800/439629966,v1:172.21.15.145:6801/439629966] boot 2024-09-17T08:10:06.974 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:06 smithi145 ceph-mon[32346]: osdmap e18: 3 total, 3 up, 3 in 2024-09-17T08:10:06.974 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:06 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:10:06.994 INFO:teuthology.orchestra.run.smithi145.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-09-17T08:10:07.080 INFO:teuthology.orchestra.run.smithi145.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-09-17T08:10:07.096 INFO:teuthology.orchestra.run.smithi145.stderr: stderr: 10+0 records in 2024-09-17T08:10:07.096 INFO:teuthology.orchestra.run.smithi145.stderr:10+0 records out 2024-09-17T08:10:07.096 INFO:teuthology.orchestra.run.smithi145.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0138203 s, 759 MB/s 2024-09-17T08:10:07.096 INFO:teuthology.orchestra.run.smithi145.stderr:--> Zapping successful for: 2024-09-17T08:10:07.161 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:06 smithi044 ceph-mon[29204]: purged_snaps scrub starts 2024-09-17T08:10:07.161 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:06 smithi044 ceph-mon[29204]: purged_snaps scrub ok 2024-09-17T08:10:07.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:06 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:10:07.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:06 smithi044 ceph-mon[29204]: osd.2 [v2:172.21.15.145:6800/439629966,v1:172.21.15.145:6801/439629966] boot 2024-09-17T08:10:07.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:06 smithi044 ceph-mon[29204]: osdmap e18: 3 total, 3 up, 3 in 2024-09-17T08:10:07.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:06 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:10:07.275 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:06 smithi152 ceph-mon[32920]: purged_snaps scrub starts 2024-09-17T08:10:07.275 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:06 smithi152 ceph-mon[32920]: purged_snaps scrub ok 2024-09-17T08:10:07.275 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:06 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:10:07.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:06 smithi152 ceph-mon[32920]: osd.2 [v2:172.21.15.145:6800/439629966,v1:172.21.15.145:6801/439629966] boot 2024-09-17T08:10:07.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:06 smithi152 ceph-mon[32920]: osdmap e18: 3 total, 3 up, 3 in 2024-09-17T08:10:07.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:06 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:10:07.620 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi145:vg_nvme/lv_3 2024-09-17T08:10:07.812 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.b/config 2024-09-17T08:10:07.934 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:07 smithi145 ceph-mon[32346]: pgmap v76: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:10:07.934 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:07 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' 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-17T08:10:07.934 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:07 smithi145 ceph-mon[32346]: Detected new or changed devices on smithi145 2024-09-17T08:10:07.934 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:07 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:07.935 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:07 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:07.935 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:07 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:10:07.935 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:07 smithi145 ceph-mon[32346]: Adjusting osd_memory_target on smithi145 to 17088M 2024-09-17T08:10:07.935 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:07 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:07.935 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:07 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:10:07.935 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:07 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:10:07.935 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:07 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:07.935 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:07 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' 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-17T08:10:07.935 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:07 smithi145 ceph-mon[32346]: osdmap e19: 3 total, 3 up, 3 in 2024-09-17T08:10:07.935 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:07 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-17T08:10:08.161 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:07 smithi044 ceph-mon[29204]: pgmap v76: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:10:08.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:07 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' 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-17T08:10:08.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:07 smithi044 ceph-mon[29204]: Detected new or changed devices on smithi145 2024-09-17T08:10:08.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:07 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:08.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:07 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:08.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:07 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:10:08.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:07 smithi044 ceph-mon[29204]: Adjusting osd_memory_target on smithi145 to 17088M 2024-09-17T08:10:08.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:07 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:08.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:07 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:10:08.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:07 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:10:08.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:07 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:08.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:07 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' 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-17T08:10:08.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:07 smithi044 ceph-mon[29204]: osdmap e19: 3 total, 3 up, 3 in 2024-09-17T08:10:08.163 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:07 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-17T08:10:08.275 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:07 smithi152 ceph-mon[32920]: pgmap v76: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:10:08.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:07 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' 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-17T08:10:08.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:07 smithi152 ceph-mon[32920]: Detected new or changed devices on smithi145 2024-09-17T08:10:08.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:07 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:08.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:07 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:08.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:07 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:10:08.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:07 smithi152 ceph-mon[32920]: Adjusting osd_memory_target on smithi145 to 17088M 2024-09-17T08:10:08.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:07 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:08.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:07 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:10:08.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:07 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:10:08.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:07 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:08.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:07 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' 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-17T08:10:08.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:07 smithi152 ceph-mon[32920]: osdmap e19: 3 total, 3 up, 3 in 2024-09-17T08:10:08.277 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:07 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-17T08:10:09.502 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:09 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-17T08:10:09.502 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:09 smithi145 ceph-mon[32346]: osdmap e20: 3 total, 3 up, 3 in 2024-09-17T08:10:09.502 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:09 smithi145 ceph-mon[32346]: pgmap v79: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-17T08:10:09.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:09 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-17T08:10:09.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:09 smithi152 ceph-mon[32920]: osdmap e20: 3 total, 3 up, 3 in 2024-09-17T08:10:09.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:09 smithi152 ceph-mon[32920]: pgmap v79: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-17T08:10:09.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:09 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-17T08:10:09.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:09 smithi044 ceph-mon[29204]: osdmap e20: 3 total, 3 up, 3 in 2024-09-17T08:10:09.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:09 smithi044 ceph-mon[29204]: pgmap v79: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-17T08:10:09.662 INFO:journalctl@ceph.osd.0.smithi044.stdout:Sep 17 08:10:09 smithi044 sudo[52650]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-17T08:10:09.662 INFO:journalctl@ceph.osd.0.smithi044.stdout:Sep 17 08:10:09 smithi044 sudo[52650]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T08:10:09.662 INFO:journalctl@ceph.osd.0.smithi044.stdout:Sep 17 08:10:09 smithi044 sudo[52650]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T08:10:09.662 INFO:journalctl@ceph.osd.0.smithi044.stdout:Sep 17 08:10:09 smithi044 sudo[52650]: pam_unix(sudo:session): session closed for user root 2024-09-17T08:10:10.161 INFO:journalctl@ceph.osd.0.smithi044.stdout:Sep 17 08:10:09 smithi044 sudo[52653]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-17T08:10:10.161 INFO:journalctl@ceph.osd.0.smithi044.stdout:Sep 17 08:10:09 smithi044 sudo[52653]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T08:10:10.161 INFO:journalctl@ceph.osd.0.smithi044.stdout:Sep 17 08:10:09 smithi044 sudo[52653]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T08:10:10.161 INFO:journalctl@ceph.osd.0.smithi044.stdout:Sep 17 08:10:09 smithi044 sudo[52653]: pam_unix(sudo:session): session closed for user root 2024-09-17T08:10:10.398 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:10 smithi145 ceph-mon[32346]: osdmap e21: 3 total, 3 up, 3 in 2024-09-17T08:10:10.398 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:10 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T08:10:10.398 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:10 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T08:10:10.398 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:10 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:10:10.398 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:10 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:10.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:10 smithi152 ceph-mon[32920]: osdmap e21: 3 total, 3 up, 3 in 2024-09-17T08:10:10.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:10 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T08:10:10.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:10 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T08:10:10.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:10 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:10:10.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:10 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:10.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:10 smithi044 ceph-mon[29204]: osdmap e21: 3 total, 3 up, 3 in 2024-09-17T08:10:10.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:10 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T08:10:10.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:10 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T08:10:10.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:10 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:10:10.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:10 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:10.662 INFO:journalctl@ceph.osd.1.smithi044.stdout:Sep 17 08:10:10 smithi044 sudo[52656]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-17T08:10:10.662 INFO:journalctl@ceph.osd.1.smithi044.stdout:Sep 17 08:10:10 smithi044 sudo[52656]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T08:10:10.662 INFO:journalctl@ceph.osd.1.smithi044.stdout:Sep 17 08:10:10 smithi044 sudo[52656]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T08:10:10.662 INFO:journalctl@ceph.osd.1.smithi044.stdout:Sep 17 08:10:10 smithi044 sudo[52656]: pam_unix(sudo:session): session closed for user root 2024-09-17T08:10:11.161 INFO:journalctl@ceph.osd.1.smithi044.stdout:Sep 17 08:10:10 smithi044 sudo[52659]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-17T08:10:11.161 INFO:journalctl@ceph.osd.1.smithi044.stdout:Sep 17 08:10:10 smithi044 sudo[52659]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T08:10:11.161 INFO:journalctl@ceph.osd.1.smithi044.stdout:Sep 17 08:10:10 smithi044 sudo[52659]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T08:10:11.161 INFO:journalctl@ceph.osd.1.smithi044.stdout:Sep 17 08:10:10 smithi044 sudo[52659]: pam_unix(sudo:session): session closed for user root 2024-09-17T08:10:11.176 INFO:journalctl@ceph.osd.2.smithi145.stdout:Sep 17 08:10:10 smithi145 sudo[40745]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-17T08:10:11.176 INFO:journalctl@ceph.osd.2.smithi145.stdout:Sep 17 08:10:10 smithi145 sudo[40745]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T08:10:11.176 INFO:journalctl@ceph.osd.2.smithi145.stdout:Sep 17 08:10:10 smithi145 sudo[40745]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T08:10:11.176 INFO:journalctl@ceph.osd.2.smithi145.stdout:Sep 17 08:10:10 smithi145 sudo[40745]: pam_unix(sudo:session): session closed for user root 2024-09-17T08:10:11.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:11 smithi145 ceph-mon[32346]: from='client.24170 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi145:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:10:11.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:11 smithi145 ceph-mon[32346]: pgmap v81: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-17T08:10:11.503 INFO:journalctl@ceph.osd.2.smithi145.stdout:Sep 17 08:10:11 smithi145 sudo[40751]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-17T08:10:11.503 INFO:journalctl@ceph.osd.2.smithi145.stdout:Sep 17 08:10:11 smithi145 sudo[40751]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T08:10:11.503 INFO:journalctl@ceph.osd.2.smithi145.stdout:Sep 17 08:10:11 smithi145 sudo[40751]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T08:10:11.503 INFO:journalctl@ceph.osd.2.smithi145.stdout:Sep 17 08:10:11 smithi145 sudo[40751]: pam_unix(sudo:session): session closed for user root 2024-09-17T08:10:11.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:11 smithi152 ceph-mon[32920]: from='client.24170 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi145:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:10:11.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:11 smithi152 ceph-mon[32920]: pgmap v81: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-17T08:10:11.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:11 smithi044 ceph-mon[29204]: from='client.24170 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi145:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:10:11.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:11 smithi044 ceph-mon[29204]: pgmap v81: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-17T08:10:12.123 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:11 smithi044 sudo[52662]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-17T08:10:12.123 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:11 smithi044 sudo[52662]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T08:10:12.123 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:11 smithi044 sudo[52662]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T08:10:12.123 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:11 smithi044 sudo[52662]: pam_unix(sudo:session): session closed for user root 2024-09-17T08:10:12.411 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:12 smithi044 sudo[52665]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-17T08:10:12.411 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:12 smithi044 sudo[52665]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T08:10:12.411 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:12 smithi044 sudo[52665]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T08:10:12.411 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:12 smithi044 sudo[52665]: pam_unix(sudo:session): session closed for user root 2024-09-17T08:10:12.625 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:12 smithi152 sudo[34894]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-17T08:10:12.625 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:12 smithi152 sudo[34894]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T08:10:12.625 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:12 smithi152 sudo[34894]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T08:10:12.625 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:12 smithi152 sudo[34894]: pam_unix(sudo:session): session closed for user root 2024-09-17T08:10:12.894 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:12 smithi145 ceph-mon[32346]: mgrmap e15: a(active, since 2m), standbys: b 2024-09-17T08:10:12.894 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:12 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:12.894 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:12 smithi145 ceph-mon[32346]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T08:10:12.894 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:12 smithi145 ceph-mon[32346]: from='client.? 172.21.15.145:0/2764571496' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "87446aa8-31d0-4f15-bde1-80015ea91d54"}]: dispatch 2024-09-17T08:10:12.895 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:12 smithi145 ceph-mon[32346]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T08:10:12.895 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:12 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T08:10:12.895 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:12 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T08:10:12.895 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:12 smithi145 ceph-mon[32346]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "87446aa8-31d0-4f15-bde1-80015ea91d54"}]: dispatch 2024-09-17T08:10:12.895 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:12 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T08:10:12.895 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:12 smithi145 ceph-mon[32346]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "87446aa8-31d0-4f15-bde1-80015ea91d54"}]': finished 2024-09-17T08:10:12.895 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:12 smithi145 ceph-mon[32346]: osdmap e22: 4 total, 3 up, 4 in 2024-09-17T08:10:12.895 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:12 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:10:12.895 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:12 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T08:10:12.895 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:12 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T08:10:12.895 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:12 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T08:10:12.895 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:12 smithi145 sudo[40838]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-17T08:10:12.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:12 smithi044 ceph-mon[29204]: mgrmap e15: a(active, since 2m), standbys: b 2024-09-17T08:10:12.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:12 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:12.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:12 smithi044 ceph-mon[29204]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T08:10:12.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:12 smithi044 ceph-mon[29204]: from='client.? 172.21.15.145:0/2764571496' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "87446aa8-31d0-4f15-bde1-80015ea91d54"}]: dispatch 2024-09-17T08:10:12.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:12 smithi044 ceph-mon[29204]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T08:10:12.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:12 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T08:10:12.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:12 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T08:10:12.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:12 smithi044 ceph-mon[29204]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "87446aa8-31d0-4f15-bde1-80015ea91d54"}]: dispatch 2024-09-17T08:10:12.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:12 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T08:10:12.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:12 smithi044 ceph-mon[29204]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "87446aa8-31d0-4f15-bde1-80015ea91d54"}]': finished 2024-09-17T08:10:12.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:12 smithi044 ceph-mon[29204]: osdmap e22: 4 total, 3 up, 4 in 2024-09-17T08:10:12.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:12 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:10:12.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:12 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T08:10:12.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:12 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T08:10:12.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:12 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T08:10:13.025 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:12 smithi152 sudo[34897]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-17T08:10:13.025 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:12 smithi152 sudo[34897]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T08:10:13.025 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:12 smithi152 sudo[34897]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T08:10:13.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:12 smithi152 sudo[34897]: pam_unix(sudo:session): session closed for user root 2024-09-17T08:10:13.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:12 smithi152 ceph-mon[32920]: mgrmap e15: a(active, since 2m), standbys: b 2024-09-17T08:10:13.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:12 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:13.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:12 smithi152 ceph-mon[32920]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T08:10:13.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:12 smithi152 ceph-mon[32920]: from='client.? 172.21.15.145:0/2764571496' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "87446aa8-31d0-4f15-bde1-80015ea91d54"}]: dispatch 2024-09-17T08:10:13.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:12 smithi152 ceph-mon[32920]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T08:10:13.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:12 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T08:10:13.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:12 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T08:10:13.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:12 smithi152 ceph-mon[32920]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "87446aa8-31d0-4f15-bde1-80015ea91d54"}]: dispatch 2024-09-17T08:10:13.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:12 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T08:10:13.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:12 smithi152 ceph-mon[32920]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "87446aa8-31d0-4f15-bde1-80015ea91d54"}]': finished 2024-09-17T08:10:13.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:12 smithi152 ceph-mon[32920]: osdmap e22: 4 total, 3 up, 4 in 2024-09-17T08:10:13.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:12 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:10:13.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:12 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T08:10:13.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:12 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T08:10:13.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:12 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T08:10:13.148 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:12 smithi145 sudo[40838]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T08:10:13.149 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:12 smithi145 sudo[40838]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T08:10:13.149 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:12 smithi145 sudo[40838]: pam_unix(sudo:session): session closed for user root 2024-09-17T08:10:13.502 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:13 smithi145 sudo[40841]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-17T08:10:13.502 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:13 smithi145 sudo[40841]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T08:10:13.502 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:13 smithi145 sudo[40841]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T08:10:13.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:13 smithi145 sudo[40841]: pam_unix(sudo:session): session closed for user root 2024-09-17T08:10:13.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:13 smithi044 ceph-mon[29204]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T08:10:13.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:13 smithi044 ceph-mon[29204]: pgmap v83: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-17T08:10:13.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:13 smithi044 ceph-mon[29204]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T08:10:13.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:13 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:13.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:13 smithi044 ceph-mon[29204]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T08:10:13.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:13 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T08:10:13.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:13 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T08:10:13.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:13 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T08:10:13.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:13 smithi044 ceph-mon[29204]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T08:10:13.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:13 smithi044 ceph-mon[29204]: from='client.? 172.21.15.145:0/327144831' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T08:10:14.002 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:13 smithi145 ceph-mon[32346]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T08:10:14.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:13 smithi145 ceph-mon[32346]: pgmap v83: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-17T08:10:14.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:13 smithi145 ceph-mon[32346]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T08:10:14.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:13 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:14.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:13 smithi145 ceph-mon[32346]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T08:10:14.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:13 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T08:10:14.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:13 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T08:10:14.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:13 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T08:10:14.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:13 smithi145 ceph-mon[32346]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T08:10:14.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:13 smithi145 ceph-mon[32346]: from='client.? 172.21.15.145:0/327144831' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T08:10:14.025 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:13 smithi152 ceph-mon[32920]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T08:10:14.025 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:13 smithi152 ceph-mon[32920]: pgmap v83: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-17T08:10:14.025 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:13 smithi152 ceph-mon[32920]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T08:10:14.025 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:13 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:14.025 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:13 smithi152 ceph-mon[32920]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T08:10:14.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:13 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T08:10:14.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:13 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T08:10:14.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:13 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T08:10:14.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:13 smithi152 ceph-mon[32920]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T08:10:14.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:13 smithi152 ceph-mon[32920]: from='client.? 172.21.15.145:0/327144831' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T08:10:14.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:14 smithi044 ceph-mon[29204]: pgmap v84: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-17T08:10:15.002 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:14 smithi145 ceph-mon[32346]: pgmap v84: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-17T08:10:15.025 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:14 smithi152 ceph-mon[32920]: pgmap v84: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-17T08:10:17.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:17 smithi044 ceph-mon[29204]: pgmap v85: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-17T08:10:17.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:17 smithi145 ceph-mon[32346]: pgmap v85: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-17T08:10:17.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:17 smithi152 ceph-mon[32920]: pgmap v85: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-17T08:10:18.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:18 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-17T08:10:18.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:18 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:10:18.732 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:18 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-17T08:10:18.732 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:18 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:10:18.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:18 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-17T08:10:18.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:18 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:10:19.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:19 smithi044 ceph-mon[29204]: pgmap v86: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail; 2.9 KiB/s rd, 126 KiB/s wr, 9 op/s 2024-09-17T08:10:19.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:19 smithi044 ceph-mon[29204]: Deploying daemon osd.3 on smithi145 2024-09-17T08:10:19.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:19 smithi145 ceph-mon[32346]: pgmap v86: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail; 2.9 KiB/s rd, 126 KiB/s wr, 9 op/s 2024-09-17T08:10:19.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:19 smithi145 ceph-mon[32346]: Deploying daemon osd.3 on smithi145 2024-09-17T08:10:19.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:19 smithi152 ceph-mon[32920]: pgmap v86: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail; 2.9 KiB/s rd, 126 KiB/s wr, 9 op/s 2024-09-17T08:10:19.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:19 smithi152 ceph-mon[32920]: Deploying daemon osd.3 on smithi145 2024-09-17T08:10:21.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:21 smithi044 ceph-mon[29204]: pgmap v87: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 96 KiB/s wr, 6 op/s 2024-09-17T08:10:21.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:21 smithi145 ceph-mon[32346]: pgmap v87: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 96 KiB/s wr, 6 op/s 2024-09-17T08:10:21.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:21 smithi152 ceph-mon[32920]: pgmap v87: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 96 KiB/s wr, 6 op/s 2024-09-17T08:10:23.652 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:23 smithi145 ceph-mon[32346]: pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail; 1.8 KiB/s rd, 77 KiB/s wr, 5 op/s 2024-09-17T08:10:23.652 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:23 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:10:23.652 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:23 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:23.652 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:23 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:23.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:23 smithi044 ceph-mon[29204]: pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail; 1.8 KiB/s rd, 77 KiB/s wr, 5 op/s 2024-09-17T08:10:23.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:23 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:10:23.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:23 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:23.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:23 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:23.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:23 smithi152 ceph-mon[32920]: pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail; 1.8 KiB/s rd, 77 KiB/s wr, 5 op/s 2024-09-17T08:10:23.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:23 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:10:23.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:23 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:23.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:23 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:25.502 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:25 smithi145 ceph-mon[32346]: pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-17T08:10:25.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:25 smithi044 ceph-mon[29204]: pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-17T08:10:25.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:25 smithi152 ceph-mon[32920]: pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-17T08:10:26.454 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:26 smithi145 ceph-mon[32346]: from='osd.3 [v2:172.21.15.145:6808/3219161798,v1:172.21.15.145:6809/3219161798]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-17T08:10:26.454 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:26 smithi145 ceph-mon[32346]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-17T08:10:26.486 INFO:teuthology.orchestra.run.smithi145.stdout:Created osd(s) 3 on host 'smithi145' 2024-09-17T08:10:26.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:26 smithi044 ceph-mon[29204]: from='osd.3 [v2:172.21.15.145:6808/3219161798,v1:172.21.15.145:6809/3219161798]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-17T08:10:26.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:26 smithi044 ceph-mon[29204]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-17T08:10:26.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:26 smithi152 ceph-mon[32920]: from='osd.3 [v2:172.21.15.145:6808/3219161798,v1:172.21.15.145:6809/3219161798]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-17T08:10:26.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:26 smithi152 ceph-mon[32920]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-17T08:10:27.002 DEBUG:teuthology.orchestra.run.smithi145:osd.3> sudo journalctl -f -n 0 -u ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@osd.3.service 2024-09-17T08:10:27.004 INFO:tasks.cephadm:Deploying osd.4 on smithi152 with /dev/vg_nvme/lv_4... 2024-09-17T08:10:27.005 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-09-17T08:10:27.212 INFO:teuthology.orchestra.run.smithi152.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.c/config 2024-09-17T08:10:27.657 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:27 smithi152 ceph-mon[32920]: pgmap v90: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-17T08:10:27.658 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:27 smithi152 ceph-mon[32920]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-17T08:10:27.658 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:27 smithi152 ceph-mon[32920]: osdmap e23: 4 total, 3 up, 4 in 2024-09-17T08:10:27.658 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:27 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:10:27.658 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:27 smithi152 ceph-mon[32920]: from='osd.3 [v2:172.21.15.145:6808/3219161798,v1:172.21.15.145:6809/3219161798]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi145", "root=default"]}]: dispatch 2024-09-17T08:10:27.658 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:27 smithi152 ceph-mon[32920]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi145", "root=default"]}]: dispatch 2024-09-17T08:10:27.658 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:27 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:27.658 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:27 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:27.658 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:27 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:27.658 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:27 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:27.724 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:27 smithi145 ceph-mon[32346]: pgmap v90: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-17T08:10:27.724 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:27 smithi145 ceph-mon[32346]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-17T08:10:27.724 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:27 smithi145 ceph-mon[32346]: osdmap e23: 4 total, 3 up, 4 in 2024-09-17T08:10:27.724 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:27 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:10:27.724 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:27 smithi145 ceph-mon[32346]: from='osd.3 [v2:172.21.15.145:6808/3219161798,v1:172.21.15.145:6809/3219161798]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi145", "root=default"]}]: dispatch 2024-09-17T08:10:27.725 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:27 smithi145 ceph-mon[32346]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi145", "root=default"]}]: dispatch 2024-09-17T08:10:27.725 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:27 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:27.725 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:27 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:27.725 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:27 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:27.725 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:27 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:27.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:27 smithi044 ceph-mon[29204]: pgmap v90: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-17T08:10:27.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:27 smithi044 ceph-mon[29204]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-17T08:10:27.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:27 smithi044 ceph-mon[29204]: osdmap e23: 4 total, 3 up, 4 in 2024-09-17T08:10:27.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:27 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:10:27.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:27 smithi044 ceph-mon[29204]: from='osd.3 [v2:172.21.15.145:6808/3219161798,v1:172.21.15.145:6809/3219161798]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi145", "root=default"]}]: dispatch 2024-09-17T08:10:27.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:27 smithi044 ceph-mon[29204]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi145", "root=default"]}]: dispatch 2024-09-17T08:10:27.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:27 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:27.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:27 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:27.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:27 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:27.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:27 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:28.003 INFO:journalctl@ceph.osd.3.smithi145.stdout:Sep 17 08:10:27 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-3[42449]: 2024-09-17T08:10:27.835+0000 7f29e2b5a640 -1 osd.3 0 waiting for initial osdmap 2024-09-17T08:10:28.003 INFO:journalctl@ceph.osd.3.smithi145.stdout:Sep 17 08:10:27 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-3[42449]: 2024-09-17T08:10:27.841+0000 7f29da97b640 -1 osd.3 24 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-17T08:10:28.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:28 smithi152 ceph-mon[32920]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi145", "root=default"]}]': finished 2024-09-17T08:10:28.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:28 smithi152 ceph-mon[32920]: osdmap e24: 4 total, 3 up, 4 in 2024-09-17T08:10:28.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:28 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:10:28.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:28 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:10:28.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:28 smithi152 ceph-mon[32920]: from='osd.3 ' entity='osd.3' 2024-09-17T08:10:28.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:28 smithi145 ceph-mon[32346]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi145", "root=default"]}]': finished 2024-09-17T08:10:28.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:28 smithi145 ceph-mon[32346]: osdmap e24: 4 total, 3 up, 4 in 2024-09-17T08:10:28.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:28 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:10:28.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:28 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:10:28.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:28 smithi145 ceph-mon[32346]: from='osd.3 ' entity='osd.3' 2024-09-17T08:10:28.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:28 smithi044 ceph-mon[29204]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi145", "root=default"]}]': finished 2024-09-17T08:10:28.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:28 smithi044 ceph-mon[29204]: osdmap e24: 4 total, 3 up, 4 in 2024-09-17T08:10:28.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:28 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:10:28.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:28 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:10:28.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:28 smithi044 ceph-mon[29204]: from='osd.3 ' entity='osd.3' 2024-09-17T08:10:28.912 INFO:teuthology.orchestra.run.smithi152.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-09-17T08:10:28.989 INFO:teuthology.orchestra.run.smithi152.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-09-17T08:10:29.002 INFO:teuthology.orchestra.run.smithi152.stderr: stderr: 10+0 records in 2024-09-17T08:10:29.002 INFO:teuthology.orchestra.run.smithi152.stderr:10+0 records out 2024-09-17T08:10:29.002 INFO:teuthology.orchestra.run.smithi152.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0115437 s, 908 MB/s 2024-09-17T08:10:29.002 INFO:teuthology.orchestra.run.smithi152.stderr:--> Zapping successful for: 2024-09-17T08:10:29.601 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:29 smithi152 ceph-mon[32920]: purged_snaps scrub starts 2024-09-17T08:10:29.602 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:29 smithi152 ceph-mon[32920]: purged_snaps scrub ok 2024-09-17T08:10:29.602 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:29 smithi152 ceph-mon[32920]: pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-17T08:10:29.602 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:29 smithi152 ceph-mon[32920]: osd.3 [v2:172.21.15.145:6808/3219161798,v1:172.21.15.145:6809/3219161798] boot 2024-09-17T08:10:29.602 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:29 smithi152 ceph-mon[32920]: osdmap e25: 4 total, 4 up, 4 in 2024-09-17T08:10:29.602 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:29 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:10:29.602 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:29 smithi152 ceph-mon[32920]: osdmap e26: 4 total, 4 up, 4 in 2024-09-17T08:10:29.623 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi152:vg_nvme/lv_4 2024-09-17T08:10:29.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:29 smithi145 ceph-mon[32346]: purged_snaps scrub starts 2024-09-17T08:10:29.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:29 smithi145 ceph-mon[32346]: purged_snaps scrub ok 2024-09-17T08:10:29.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:29 smithi145 ceph-mon[32346]: pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-17T08:10:29.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:29 smithi145 ceph-mon[32346]: osd.3 [v2:172.21.15.145:6808/3219161798,v1:172.21.15.145:6809/3219161798] boot 2024-09-17T08:10:29.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:29 smithi145 ceph-mon[32346]: osdmap e25: 4 total, 4 up, 4 in 2024-09-17T08:10:29.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:29 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:10:29.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:29 smithi145 ceph-mon[32346]: osdmap e26: 4 total, 4 up, 4 in 2024-09-17T08:10:29.823 INFO:teuthology.orchestra.run.smithi152.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.c/config 2024-09-17T08:10:29.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:29 smithi044 ceph-mon[29204]: purged_snaps scrub starts 2024-09-17T08:10:29.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:29 smithi044 ceph-mon[29204]: purged_snaps scrub ok 2024-09-17T08:10:29.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:29 smithi044 ceph-mon[29204]: pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-17T08:10:29.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:29 smithi044 ceph-mon[29204]: osd.3 [v2:172.21.15.145:6808/3219161798,v1:172.21.15.145:6809/3219161798] boot 2024-09-17T08:10:29.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:29 smithi044 ceph-mon[29204]: osdmap e25: 4 total, 4 up, 4 in 2024-09-17T08:10:29.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:29 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:10:29.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:29 smithi044 ceph-mon[29204]: osdmap e26: 4 total, 4 up, 4 in 2024-09-17T08:10:31.275 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:31 smithi152 ceph-mon[32920]: Detected new or changed devices on smithi145 2024-09-17T08:10:31.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:31 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:31.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:31 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:31.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:31 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:10:31.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:31 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:10:31.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:31 smithi152 ceph-mon[32920]: Adjusting osd_memory_target on smithi145 to 8544M 2024-09-17T08:10:31.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:31 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:31.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:31 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:10:31.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:31 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:10:31.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:31 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:31.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:31 smithi152 ceph-mon[32920]: osdmap e27: 4 total, 4 up, 4 in 2024-09-17T08:10:31.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:31 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:10:31.277 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:31 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:10:31.277 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:31 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:10:31.277 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:31 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:31.277 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:31 smithi152 ceph-mon[32920]: pgmap v97: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:10:31.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:31 smithi044 ceph-mon[29204]: Detected new or changed devices on smithi145 2024-09-17T08:10:31.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:31 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:31.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:31 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:31.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:31 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:10:31.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:31 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:10:31.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:31 smithi044 ceph-mon[29204]: Adjusting osd_memory_target on smithi145 to 8544M 2024-09-17T08:10:31.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:31 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:31.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:31 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:10:31.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:31 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:10:31.413 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:31 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:31.413 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:31 smithi044 ceph-mon[29204]: osdmap e27: 4 total, 4 up, 4 in 2024-09-17T08:10:31.413 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:31 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:10:31.413 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:31 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:10:31.413 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:31 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:10:31.413 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:31 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:31.413 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:31 smithi044 ceph-mon[29204]: pgmap v97: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:10:31.502 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:31 smithi145 ceph-mon[32346]: Detected new or changed devices on smithi145 2024-09-17T08:10:31.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:31 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:31.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:31 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:31.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:31 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:10:31.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:31 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:10:31.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:31 smithi145 ceph-mon[32346]: Adjusting osd_memory_target on smithi145 to 8544M 2024-09-17T08:10:31.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:31 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:31.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:31 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:10:31.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:31 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:10:31.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:31 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:31.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:31 smithi145 ceph-mon[32346]: osdmap e27: 4 total, 4 up, 4 in 2024-09-17T08:10:31.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:31 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:10:31.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:31 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:10:31.504 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:31 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:10:31.504 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:31 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:31.504 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:31 smithi145 ceph-mon[32346]: pgmap v97: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:10:32.357 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:32 smithi152 ceph-mon[32920]: osdmap e28: 4 total, 4 up, 4 in 2024-09-17T08:10:32.357 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:32 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T08:10:32.357 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:32 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T08:10:32.358 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:32 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:10:32.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:32 smithi044 ceph-mon[29204]: osdmap e28: 4 total, 4 up, 4 in 2024-09-17T08:10:32.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:32 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T08:10:32.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:32 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T08:10:32.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:32 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:10:32.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:32 smithi145 ceph-mon[32346]: osdmap e28: 4 total, 4 up, 4 in 2024-09-17T08:10:32.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:32 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T08:10:32.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:32 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T08:10:32.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:32 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:10:33.432 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:33 smithi152 ceph-mon[32920]: from='client.24160 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi152:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:10:33.432 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:33 smithi152 ceph-mon[32920]: osdmap e29: 4 total, 4 up, 4 in 2024-09-17T08:10:33.432 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:33 smithi152 ceph-mon[32920]: pgmap v100: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:10:33.563 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:33 smithi044 ceph-mon[29204]: from='client.24160 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi152:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:10:33.563 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:33 smithi044 ceph-mon[29204]: osdmap e29: 4 total, 4 up, 4 in 2024-09-17T08:10:33.563 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:33 smithi044 ceph-mon[29204]: pgmap v100: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:10:33.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:33 smithi145 ceph-mon[32346]: from='client.24160 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi152:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:10:33.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:33 smithi145 ceph-mon[32346]: osdmap e29: 4 total, 4 up, 4 in 2024-09-17T08:10:33.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:33 smithi145 ceph-mon[32346]: pgmap v100: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:10:34.444 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:34 smithi152 ceph-mon[32920]: from='client.? 172.21.15.152:0/655829213' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "5da8d7a8-4061-4a7a-bea1-8d623f19be30"}]: dispatch 2024-09-17T08:10:34.444 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:34 smithi152 ceph-mon[32920]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "5da8d7a8-4061-4a7a-bea1-8d623f19be30"}]: dispatch 2024-09-17T08:10:34.444 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:34 smithi152 ceph-mon[32920]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "5da8d7a8-4061-4a7a-bea1-8d623f19be30"}]': finished 2024-09-17T08:10:34.444 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:34 smithi152 ceph-mon[32920]: osdmap e30: 5 total, 4 up, 5 in 2024-09-17T08:10:34.444 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:34 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:10:34.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:34 smithi044 ceph-mon[29204]: from='client.? 172.21.15.152:0/655829213' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "5da8d7a8-4061-4a7a-bea1-8d623f19be30"}]: dispatch 2024-09-17T08:10:34.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:34 smithi044 ceph-mon[29204]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "5da8d7a8-4061-4a7a-bea1-8d623f19be30"}]: dispatch 2024-09-17T08:10:34.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:34 smithi044 ceph-mon[29204]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "5da8d7a8-4061-4a7a-bea1-8d623f19be30"}]': finished 2024-09-17T08:10:34.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:34 smithi044 ceph-mon[29204]: osdmap e30: 5 total, 4 up, 5 in 2024-09-17T08:10:34.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:34 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:10:34.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:34 smithi145 ceph-mon[32346]: from='client.? 172.21.15.152:0/655829213' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "5da8d7a8-4061-4a7a-bea1-8d623f19be30"}]: dispatch 2024-09-17T08:10:34.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:34 smithi145 ceph-mon[32346]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "5da8d7a8-4061-4a7a-bea1-8d623f19be30"}]: dispatch 2024-09-17T08:10:34.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:34 smithi145 ceph-mon[32346]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "5da8d7a8-4061-4a7a-bea1-8d623f19be30"}]': finished 2024-09-17T08:10:34.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:34 smithi145 ceph-mon[32346]: osdmap e30: 5 total, 4 up, 5 in 2024-09-17T08:10:34.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:34 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:10:35.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:35 smithi152 ceph-mon[32920]: pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail; 140 KiB/s, 0 objects/s recovering 2024-09-17T08:10:35.526 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:35 smithi152 ceph-mon[32920]: from='client.? 172.21.15.152:0/1796851827' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T08:10:35.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:35 smithi044 ceph-mon[29204]: pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail; 140 KiB/s, 0 objects/s recovering 2024-09-17T08:10:35.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:35 smithi044 ceph-mon[29204]: from='client.? 172.21.15.152:0/1796851827' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T08:10:35.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:35 smithi145 ceph-mon[32346]: pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail; 140 KiB/s, 0 objects/s recovering 2024-09-17T08:10:35.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:35 smithi145 ceph-mon[32346]: from='client.? 172.21.15.152:0/1796851827' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T08:10:37.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:37 smithi152 ceph-mon[32920]: pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-17T08:10:37.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:37 smithi044 ceph-mon[29204]: pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-17T08:10:37.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:37 smithi145 ceph-mon[32346]: pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-17T08:10:39.484 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:39 smithi152 ceph-mon[32920]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 81 KiB/s, 0 objects/s recovering 2024-09-17T08:10:39.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:39 smithi044 ceph-mon[29204]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 81 KiB/s, 0 objects/s recovering 2024-09-17T08:10:39.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:39 smithi145 ceph-mon[32346]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 81 KiB/s, 0 objects/s recovering 2024-09-17T08:10:40.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:40 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-17T08:10:40.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:40 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:10:40.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:40 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-17T08:10:40.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:40 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:10:40.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:40 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-17T08:10:40.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:40 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:10:41.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:41 smithi152 ceph-mon[32920]: Deploying daemon osd.4 on smithi152 2024-09-17T08:10:41.526 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:41 smithi152 ceph-mon[32920]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 71 KiB/s, 0 objects/s recovering 2024-09-17T08:10:41.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:41 smithi044 ceph-mon[29204]: Deploying daemon osd.4 on smithi152 2024-09-17T08:10:41.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:41 smithi044 ceph-mon[29204]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 71 KiB/s, 0 objects/s recovering 2024-09-17T08:10:41.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:41 smithi145 ceph-mon[32346]: Deploying daemon osd.4 on smithi152 2024-09-17T08:10:41.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:41 smithi145 ceph-mon[32346]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 71 KiB/s, 0 objects/s recovering 2024-09-17T08:10:43.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:43 smithi044 ceph-mon[29204]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-17T08:10:43.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:43 smithi145 ceph-mon[32346]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-17T08:10:43.757 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:43 smithi152 ceph-mon[32920]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-17T08:10:45.473 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:45 smithi152 ceph-mon[32920]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:10:45.473 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:45 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:10:45.473 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:45 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:45.473 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:45 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:45.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:45 smithi044 ceph-mon[29204]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:10:45.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:45 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:10:45.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:45 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:45.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:45 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:45.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:45 smithi145 ceph-mon[32346]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:10:45.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:45 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:10:45.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:45 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:45.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:45 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:47.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:47 smithi044 ceph-mon[29204]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:10:47.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:47 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:47.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:47 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:47.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:47 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:10:47.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:47 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:10:47.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:47 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:47.744 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:47 smithi152 ceph-mon[32920]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:10:47.745 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:47 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:47.745 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:47 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:47.745 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:47 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:10:47.745 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:47 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:10:47.745 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:47 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:47.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:47 smithi145 ceph-mon[32346]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:10:47.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:47 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:47.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:47 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:47.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:47 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:10:47.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:47 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:10:47.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:47 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:48.020 INFO:teuthology.orchestra.run.smithi152.stdout:Created osd(s) 4 on host 'smithi152' 2024-09-17T08:10:48.627 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:48 smithi152 ceph-mon[32920]: from='osd.4 [v2:172.21.15.152:6800/2667402213,v1:172.21.15.152:6801/2667402213]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-17T08:10:48.627 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:48 smithi152 ceph-mon[32920]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-17T08:10:48.627 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:48 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:10:48.627 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:48 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:48.628 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:48 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:48.629 DEBUG:teuthology.orchestra.run.smithi152:osd.4> sudo journalctl -f -n 0 -u ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@osd.4.service 2024-09-17T08:10:48.632 INFO:tasks.cephadm:Deploying osd.5 on smithi152 with /dev/vg_nvme/lv_3... 2024-09-17T08:10:48.632 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-09-17T08:10:48.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:48 smithi145 ceph-mon[32346]: from='osd.4 [v2:172.21.15.152:6800/2667402213,v1:172.21.15.152:6801/2667402213]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-17T08:10:48.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:48 smithi145 ceph-mon[32346]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-17T08:10:48.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:48 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:10:48.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:48 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:48.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:48 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:48.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:48 smithi044 ceph-mon[29204]: from='osd.4 [v2:172.21.15.152:6800/2667402213,v1:172.21.15.152:6801/2667402213]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-17T08:10:48.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:48 smithi044 ceph-mon[29204]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-17T08:10:48.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:48 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:10:48.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:48 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:48.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:48 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:49.367 INFO:teuthology.orchestra.run.smithi152.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.c/config 2024-09-17T08:10:49.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:49 smithi152 ceph-mon[32920]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:10:49.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:49 smithi152 ceph-mon[32920]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-17T08:10:49.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:49 smithi152 ceph-mon[32920]: osdmap e31: 5 total, 4 up, 5 in 2024-09-17T08:10:49.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:49 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:10:49.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:49 smithi152 ceph-mon[32920]: from='osd.4 [v2:172.21.15.152:6800/2667402213,v1:172.21.15.152:6801/2667402213]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi152", "root=default"]}]: dispatch 2024-09-17T08:10:49.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:49 smithi152 ceph-mon[32920]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi152", "root=default"]}]: dispatch 2024-09-17T08:10:49.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:49 smithi044 ceph-mon[29204]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:10:49.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:49 smithi044 ceph-mon[29204]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-17T08:10:49.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:49 smithi044 ceph-mon[29204]: osdmap e31: 5 total, 4 up, 5 in 2024-09-17T08:10:49.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:49 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:10:49.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:49 smithi044 ceph-mon[29204]: from='osd.4 [v2:172.21.15.152:6800/2667402213,v1:172.21.15.152:6801/2667402213]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi152", "root=default"]}]: dispatch 2024-09-17T08:10:49.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:49 smithi044 ceph-mon[29204]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi152", "root=default"]}]: dispatch 2024-09-17T08:10:50.002 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:49 smithi145 ceph-mon[32346]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:10:50.002 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:49 smithi145 ceph-mon[32346]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-17T08:10:50.002 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:49 smithi145 ceph-mon[32346]: osdmap e31: 5 total, 4 up, 5 in 2024-09-17T08:10:50.002 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:49 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:10:50.002 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:49 smithi145 ceph-mon[32346]: from='osd.4 [v2:172.21.15.152:6800/2667402213,v1:172.21.15.152:6801/2667402213]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi152", "root=default"]}]: dispatch 2024-09-17T08:10:50.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:49 smithi145 ceph-mon[32346]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi152", "root=default"]}]: dispatch 2024-09-17T08:10:50.178 INFO:journalctl@ceph.osd.4.smithi152.stdout:Sep 17 08:10:49 smithi152 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-4[37173]: 2024-09-17T08:10:49.855+0000 7f9ed7bcc640 -1 osd.4 0 waiting for initial osdmap 2024-09-17T08:10:50.178 INFO:journalctl@ceph.osd.4.smithi152.stdout:Sep 17 08:10:49 smithi152 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-4[37173]: 2024-09-17T08:10:49.859+0000 7f9ecf1d6640 -1 osd.4 32 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-17T08:10:50.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:50 smithi152 ceph-mon[32920]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi152", "root=default"]}]': finished 2024-09-17T08:10:50.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:50 smithi152 ceph-mon[32920]: osdmap e32: 5 total, 4 up, 5 in 2024-09-17T08:10:50.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:50 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:10:50.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:50 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:10:50.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:50 smithi152 ceph-mon[32920]: from='osd.4 ' entity='osd.4' 2024-09-17T08:10:50.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:50 smithi152 ceph-mon[32920]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:10:50.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:50 smithi044 ceph-mon[29204]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi152", "root=default"]}]': finished 2024-09-17T08:10:50.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:50 smithi044 ceph-mon[29204]: osdmap e32: 5 total, 4 up, 5 in 2024-09-17T08:10:50.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:50 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:10:50.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:50 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:10:50.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:50 smithi044 ceph-mon[29204]: from='osd.4 ' entity='osd.4' 2024-09-17T08:10:50.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:50 smithi044 ceph-mon[29204]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:10:51.002 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:50 smithi145 ceph-mon[32346]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi152", "root=default"]}]': finished 2024-09-17T08:10:51.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:50 smithi145 ceph-mon[32346]: osdmap e32: 5 total, 4 up, 5 in 2024-09-17T08:10:51.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:50 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:10:51.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:50 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:10:51.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:50 smithi145 ceph-mon[32346]: from='osd.4 ' entity='osd.4' 2024-09-17T08:10:51.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:50 smithi145 ceph-mon[32346]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:10:51.715 INFO:teuthology.orchestra.run.smithi152.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-09-17T08:10:51.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:51 smithi145 ceph-mon[32346]: purged_snaps scrub starts 2024-09-17T08:10:51.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:51 smithi145 ceph-mon[32346]: purged_snaps scrub ok 2024-09-17T08:10:51.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:51 smithi145 ceph-mon[32346]: osd.4 [v2:172.21.15.152:6800/2667402213,v1:172.21.15.152:6801/2667402213] boot 2024-09-17T08:10:51.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:51 smithi145 ceph-mon[32346]: osdmap e33: 5 total, 5 up, 5 in 2024-09-17T08:10:51.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:51 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:10:51.771 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:51 smithi152 ceph-mon[32920]: purged_snaps scrub starts 2024-09-17T08:10:51.771 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:51 smithi152 ceph-mon[32920]: purged_snaps scrub ok 2024-09-17T08:10:51.771 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:51 smithi152 ceph-mon[32920]: osd.4 [v2:172.21.15.152:6800/2667402213,v1:172.21.15.152:6801/2667402213] boot 2024-09-17T08:10:51.771 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:51 smithi152 ceph-mon[32920]: osdmap e33: 5 total, 5 up, 5 in 2024-09-17T08:10:51.772 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:51 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:10:51.811 INFO:teuthology.orchestra.run.smithi152.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-09-17T08:10:51.826 INFO:teuthology.orchestra.run.smithi152.stderr: stderr: 10+0 records in 2024-09-17T08:10:51.826 INFO:teuthology.orchestra.run.smithi152.stderr:10+0 records out 2024-09-17T08:10:51.827 INFO:teuthology.orchestra.run.smithi152.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0130663 s, 803 MB/s 2024-09-17T08:10:51.827 INFO:teuthology.orchestra.run.smithi152.stderr:--> Zapping successful for: 2024-09-17T08:10:51.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:51 smithi044 ceph-mon[29204]: purged_snaps scrub starts 2024-09-17T08:10:51.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:51 smithi044 ceph-mon[29204]: purged_snaps scrub ok 2024-09-17T08:10:51.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:51 smithi044 ceph-mon[29204]: osd.4 [v2:172.21.15.152:6800/2667402213,v1:172.21.15.152:6801/2667402213] boot 2024-09-17T08:10:51.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:51 smithi044 ceph-mon[29204]: osdmap e33: 5 total, 5 up, 5 in 2024-09-17T08:10:51.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:51 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:10:52.455 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi152:vg_nvme/lv_3 2024-09-17T08:10:52.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:52 smithi152 ceph-mon[32920]: osdmap e34: 5 total, 5 up, 5 in 2024-09-17T08:10:52.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:52 smithi152 ceph-mon[32920]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:10:52.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:52 smithi044 ceph-mon[29204]: osdmap e34: 5 total, 5 up, 5 in 2024-09-17T08:10:52.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:52 smithi044 ceph-mon[29204]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:10:53.002 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:52 smithi145 ceph-mon[32346]: osdmap e34: 5 total, 5 up, 5 in 2024-09-17T08:10:53.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:52 smithi145 ceph-mon[32346]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:10:53.061 INFO:teuthology.orchestra.run.smithi152.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.c/config 2024-09-17T08:10:53.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:53 smithi152 ceph-mon[32920]: osdmap e35: 5 total, 5 up, 5 in 2024-09-17T08:10:53.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:53 smithi152 ceph-mon[32920]: Detected new or changed devices on smithi152 2024-09-17T08:10:53.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:53 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:53.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:53 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:53.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:53 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:10:53.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:53 smithi152 ceph-mon[32920]: Adjusting osd_memory_target on smithi152 to 21184M 2024-09-17T08:10:53.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:53 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:53.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:53 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:10:53.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:53 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:10:53.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:53 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:53.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:53 smithi044 ceph-mon[29204]: osdmap e35: 5 total, 5 up, 5 in 2024-09-17T08:10:53.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:53 smithi044 ceph-mon[29204]: Detected new or changed devices on smithi152 2024-09-17T08:10:53.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:53 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:53.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:53 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:53.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:53 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:10:53.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:53 smithi044 ceph-mon[29204]: Adjusting osd_memory_target on smithi152 to 21184M 2024-09-17T08:10:53.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:53 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:53.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:53 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:10:53.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:53 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:10:53.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:53 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:54.002 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:53 smithi145 ceph-mon[32346]: osdmap e35: 5 total, 5 up, 5 in 2024-09-17T08:10:54.002 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:53 smithi145 ceph-mon[32346]: Detected new or changed devices on smithi152 2024-09-17T08:10:54.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:53 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:54.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:53 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:54.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:53 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:10:54.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:53 smithi145 ceph-mon[32346]: Adjusting osd_memory_target on smithi152 to 21184M 2024-09-17T08:10:54.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:53 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:54.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:53 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:10:54.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:53 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:10:54.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:53 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:10:54.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:54 smithi152 ceph-mon[32920]: osdmap e36: 5 total, 5 up, 5 in 2024-09-17T08:10:54.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:54 smithi152 ceph-mon[32920]: pgmap v118: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-09-17T08:10:54.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:54 smithi044 ceph-mon[29204]: osdmap e36: 5 total, 5 up, 5 in 2024-09-17T08:10:54.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:54 smithi044 ceph-mon[29204]: pgmap v118: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-09-17T08:10:55.002 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:54 smithi145 ceph-mon[32346]: osdmap e36: 5 total, 5 up, 5 in 2024-09-17T08:10:55.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:54 smithi145 ceph-mon[32346]: pgmap v118: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-09-17T08:10:55.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:55 smithi152 ceph-mon[32920]: osdmap e37: 5 total, 5 up, 5 in 2024-09-17T08:10:55.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:55 smithi152 ceph-mon[32920]: from='client.24187 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi152:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:10:55.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:55 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T08:10:55.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:55 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T08:10:55.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:55 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:10:55.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:55 smithi044 ceph-mon[29204]: osdmap e37: 5 total, 5 up, 5 in 2024-09-17T08:10:55.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:55 smithi044 ceph-mon[29204]: from='client.24187 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi152:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:10:55.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:55 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T08:10:55.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:55 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T08:10:55.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:55 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:10:56.002 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:55 smithi145 ceph-mon[32346]: osdmap e37: 5 total, 5 up, 5 in 2024-09-17T08:10:56.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:55 smithi145 ceph-mon[32346]: from='client.24187 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi152:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:10:56.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:55 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T08:10:56.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:55 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T08:10:56.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:55 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:10:56.727 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:56 smithi152 ceph-mon[32920]: pgmap v120: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 119 KiB/s, 0 objects/s recovering 2024-09-17T08:10:56.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:56 smithi044 ceph-mon[29204]: pgmap v120: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 119 KiB/s, 0 objects/s recovering 2024-09-17T08:10:57.002 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:56 smithi145 ceph-mon[32346]: pgmap v120: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 119 KiB/s, 0 objects/s recovering 2024-09-17T08:10:57.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:57 smithi044 ceph-mon[29204]: from='client.? 172.21.15.152:0/2380854958' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ade81a47-05e1-4f47-8259-ae292139fa40"}]: dispatch 2024-09-17T08:10:57.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:57 smithi044 ceph-mon[29204]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ade81a47-05e1-4f47-8259-ae292139fa40"}]: dispatch 2024-09-17T08:10:57.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:57 smithi044 ceph-mon[29204]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ade81a47-05e1-4f47-8259-ae292139fa40"}]': finished 2024-09-17T08:10:57.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:57 smithi044 ceph-mon[29204]: osdmap e38: 6 total, 5 up, 6 in 2024-09-17T08:10:57.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:57 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:10:58.002 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:57 smithi145 ceph-mon[32346]: from='client.? 172.21.15.152:0/2380854958' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ade81a47-05e1-4f47-8259-ae292139fa40"}]: dispatch 2024-09-17T08:10:58.002 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:57 smithi145 ceph-mon[32346]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ade81a47-05e1-4f47-8259-ae292139fa40"}]: dispatch 2024-09-17T08:10:58.002 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:57 smithi145 ceph-mon[32346]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ade81a47-05e1-4f47-8259-ae292139fa40"}]': finished 2024-09-17T08:10:58.002 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:57 smithi145 ceph-mon[32346]: osdmap e38: 6 total, 5 up, 6 in 2024-09-17T08:10:58.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:57 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:10:58.025 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:57 smithi152 ceph-mon[32920]: from='client.? 172.21.15.152:0/2380854958' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ade81a47-05e1-4f47-8259-ae292139fa40"}]: dispatch 2024-09-17T08:10:58.025 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:57 smithi152 ceph-mon[32920]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ade81a47-05e1-4f47-8259-ae292139fa40"}]: dispatch 2024-09-17T08:10:58.025 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:57 smithi152 ceph-mon[32920]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ade81a47-05e1-4f47-8259-ae292139fa40"}]': finished 2024-09-17T08:10:58.025 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:57 smithi152 ceph-mon[32920]: osdmap e38: 6 total, 5 up, 6 in 2024-09-17T08:10:58.025 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:57 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:10:58.914 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:58 smithi044 ceph-mon[29204]: from='client.? 172.21.15.152:0/52142402' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T08:10:58.914 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:10:58 smithi044 ceph-mon[29204]: pgmap v122: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 99 KiB/s, 0 objects/s recovering 2024-09-17T08:10:59.002 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:58 smithi145 ceph-mon[32346]: from='client.? 172.21.15.152:0/52142402' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T08:10:59.002 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:10:58 smithi145 ceph-mon[32346]: pgmap v122: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 99 KiB/s, 0 objects/s recovering 2024-09-17T08:10:59.025 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:58 smithi152 ceph-mon[32920]: from='client.? 172.21.15.152:0/52142402' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T08:10:59.025 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:10:58 smithi152 ceph-mon[32920]: pgmap v122: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 99 KiB/s, 0 objects/s recovering 2024-09-17T08:11:01.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:01 smithi044 ceph-mon[29204]: pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:11:01.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:01 smithi145 ceph-mon[32346]: pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:11:01.764 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:01 smithi152 ceph-mon[32920]: pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:11:03.591 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:03 smithi152 ceph-mon[32920]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:11:03.592 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:03 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-17T08:11:03.592 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:03 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:11:03.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:03 smithi044 ceph-mon[29204]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:11:03.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:03 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-17T08:11:03.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:03 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:11:03.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:03 smithi145 ceph-mon[32346]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:11:03.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:03 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-17T08:11:03.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:03 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:11:04.513 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:04 smithi152 ceph-mon[32920]: Deploying daemon osd.5 on smithi152 2024-09-17T08:11:04.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:04 smithi044 ceph-mon[29204]: Deploying daemon osd.5 on smithi152 2024-09-17T08:11:04.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:04 smithi145 ceph-mon[32346]: Deploying daemon osd.5 on smithi152 2024-09-17T08:11:05.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:05 smithi044 ceph-mon[29204]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:11:05.748 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:05 smithi152 ceph-mon[32920]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:11:05.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:05 smithi145 ceph-mon[32346]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:11:07.606 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:07 smithi152 ceph-mon[32920]: pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:11:07.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:07 smithi044 ceph-mon[29204]: pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:11:07.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:07 smithi145 ceph-mon[32346]: pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:11:08.521 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:08 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:11:08.522 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:08 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:11:08.522 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:08 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:11:08.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:08 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:11:08.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:08 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:11:08.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:08 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:11:08.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:08 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:11:08.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:08 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:11:08.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:08 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:11:09.676 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:09 smithi152 ceph-mon[32920]: pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:11:09.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:09 smithi145 ceph-mon[32346]: pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:11:09.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:09 smithi044 ceph-mon[29204]: pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:11:10.679 INFO:teuthology.orchestra.run.smithi152.stdout:Created osd(s) 5 on host 'smithi152' 2024-09-17T08:11:11.612 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:11 smithi152 ceph-mon[32920]: pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:11:11.613 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:11 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:11:11.616 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:11 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:11:11.616 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:11 smithi152 ceph-mon[32920]: from='osd.5 [v2:172.21.15.152:6808/3620373008,v1:172.21.15.152:6809/3620373008]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-17T08:11:11.616 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:11 smithi152 ceph-mon[32920]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-17T08:11:11.617 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:11 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:11:11.617 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:11 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:11:11.635 DEBUG:teuthology.orchestra.run.smithi152:osd.5> sudo journalctl -f -n 0 -u ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@osd.5.service 2024-09-17T08:11:11.638 INFO:tasks.cephadm:Waiting for 6 OSDs to come up... 2024-09-17T08:11:11.638 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T08:11:11.668 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:11 smithi044 ceph-mon[29204]: pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:11:11.668 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:11 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:11:11.668 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:11 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:11:11.668 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:11 smithi044 ceph-mon[29204]: from='osd.5 [v2:172.21.15.152:6808/3620373008,v1:172.21.15.152:6809/3620373008]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-17T08:11:11.668 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:11 smithi044 ceph-mon[29204]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-17T08:11:11.668 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:11 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:11:11.668 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:11 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:11:11.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:11 smithi145 ceph-mon[32346]: pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:11:11.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:11 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:11:11.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:11 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:11:11.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:11 smithi145 ceph-mon[32346]: from='osd.5 [v2:172.21.15.152:6808/3620373008,v1:172.21.15.152:6809/3620373008]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-17T08:11:11.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:11 smithi145 ceph-mon[32346]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-17T08:11:11.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:11 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:11:11.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:11 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:11:11.854 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T08:11:12.745 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:12 smithi152 ceph-mon[32920]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-17T08:11:12.745 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:12 smithi152 ceph-mon[32920]: osdmap e39: 6 total, 5 up, 6 in 2024-09-17T08:11:12.745 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:12 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:11:12.745 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:12 smithi152 ceph-mon[32920]: from='osd.5 [v2:172.21.15.152:6808/3620373008,v1:172.21.15.152:6809/3620373008]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi152", "root=default"]}]: dispatch 2024-09-17T08:11:12.745 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:12 smithi152 ceph-mon[32920]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi152", "root=default"]}]: dispatch 2024-09-17T08:11:12.745 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:12 smithi152 ceph-mon[32920]: pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:11:13.002 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:12 smithi145 ceph-mon[32346]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-17T08:11:13.002 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:12 smithi145 ceph-mon[32346]: osdmap e39: 6 total, 5 up, 6 in 2024-09-17T08:11:13.002 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:12 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:11:13.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:12 smithi145 ceph-mon[32346]: from='osd.5 [v2:172.21.15.152:6808/3620373008,v1:172.21.15.152:6809/3620373008]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi152", "root=default"]}]: dispatch 2024-09-17T08:11:13.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:12 smithi145 ceph-mon[32346]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi152", "root=default"]}]: dispatch 2024-09-17T08:11:13.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:12 smithi145 ceph-mon[32346]: pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:11:13.025 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:12 smithi044 ceph-mon[29204]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-17T08:11:13.025 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:12 smithi044 ceph-mon[29204]: osdmap e39: 6 total, 5 up, 6 in 2024-09-17T08:11:13.025 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:12 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:11:13.025 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:12 smithi044 ceph-mon[29204]: from='osd.5 [v2:172.21.15.152:6808/3620373008,v1:172.21.15.152:6809/3620373008]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi152", "root=default"]}]: dispatch 2024-09-17T08:11:13.026 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:12 smithi044 ceph-mon[29204]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi152", "root=default"]}]: dispatch 2024-09-17T08:11:13.026 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:12 smithi044 ceph-mon[29204]: pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:11:13.526 INFO:journalctl@ceph.osd.5.smithi152.stdout:Sep 17 08:11:13 smithi152 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-5[42673]: 2024-09-17T08:11:13.155+0000 7ffbabf41640 -1 osd.5 0 waiting for initial osdmap 2024-09-17T08:11:13.526 INFO:journalctl@ceph.osd.5.smithi152.stdout:Sep 17 08:11:13 smithi152 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-5[42673]: 2024-09-17T08:11:13.160+0000 7ffba354b640 -1 osd.5 40 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-17T08:11:13.690 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:11:14.002 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:13 smithi145 ceph-mon[32346]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi152", "root=default"]}]': finished 2024-09-17T08:11:14.002 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:13 smithi145 ceph-mon[32346]: osdmap e40: 6 total, 5 up, 6 in 2024-09-17T08:11:14.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:13 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:11:14.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:13 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:11:14.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:13 smithi145 ceph-mon[32346]: from='osd.5 ' entity='osd.5' 2024-09-17T08:11:14.025 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:13 smithi152 ceph-mon[32920]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi152", "root=default"]}]': finished 2024-09-17T08:11:14.025 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:13 smithi152 ceph-mon[32920]: osdmap e40: 6 total, 5 up, 6 in 2024-09-17T08:11:14.025 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:13 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:11:14.025 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:13 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:11:14.025 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:13 smithi152 ceph-mon[32920]: from='osd.5 ' entity='osd.5' 2024-09-17T08:11:14.123 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:13 smithi044 ceph-mon[29204]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi152", "root=default"]}]': finished 2024-09-17T08:11:14.123 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:13 smithi044 ceph-mon[29204]: osdmap e40: 6 total, 5 up, 6 in 2024-09-17T08:11:14.123 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:13 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:11:14.123 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:13 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:11:14.123 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:13 smithi044 ceph-mon[29204]: from='osd.5 ' entity='osd.5' 2024-09-17T08:11:14.316 INFO:teuthology.orchestra.run.smithi044.stdout:{"epoch":41,"num_osds":6,"num_up_osds":6,"osd_up_since":1726560673,"num_in_osds":6,"osd_in_since":1726560657,"num_remapped_pgs":1} 2024-09-17T08:11:14.317 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-17T08:11:14.575 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T08:11:14.969 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:14 smithi044 ceph-mon[29204]: purged_snaps scrub starts 2024-09-17T08:11:14.969 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:14 smithi044 ceph-mon[29204]: purged_snaps scrub ok 2024-09-17T08:11:14.969 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:14 smithi044 ceph-mon[29204]: osd.5 [v2:172.21.15.152:6808/3620373008,v1:172.21.15.152:6809/3620373008] boot 2024-09-17T08:11:14.970 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:14 smithi044 ceph-mon[29204]: osdmap e41: 6 total, 6 up, 6 in 2024-09-17T08:11:14.970 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:14 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:11:14.970 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:14 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/2062841435' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:11:14.970 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:14 smithi044 ceph-mon[29204]: osdmap e42: 6 total, 6 up, 6 in 2024-09-17T08:11:14.970 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:14 smithi044 ceph-mon[29204]: pgmap v134: 1 pgs: 1 peering; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:11:14.970 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:14 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:11:14.970 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:14 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:11:14.970 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:14 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:11:14.970 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:14 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:11:14.970 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:14 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:11:14.970 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:14 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:11:14.970 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:14 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:11:14.970 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:14 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:11:14.971 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:14 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:11:14.971 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:14 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:11:14.971 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:14 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:11:14.971 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:14 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:11:15.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:14 smithi145 ceph-mon[32346]: purged_snaps scrub starts 2024-09-17T08:11:15.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:14 smithi145 ceph-mon[32346]: purged_snaps scrub ok 2024-09-17T08:11:15.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:14 smithi145 ceph-mon[32346]: osd.5 [v2:172.21.15.152:6808/3620373008,v1:172.21.15.152:6809/3620373008] boot 2024-09-17T08:11:15.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:14 smithi145 ceph-mon[32346]: osdmap e41: 6 total, 6 up, 6 in 2024-09-17T08:11:15.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:14 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:11:15.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:14 smithi145 ceph-mon[32346]: from='client.? 172.21.15.44:0/2062841435' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:11:15.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:14 smithi145 ceph-mon[32346]: osdmap e42: 6 total, 6 up, 6 in 2024-09-17T08:11:15.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:14 smithi145 ceph-mon[32346]: pgmap v134: 1 pgs: 1 peering; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:11:15.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:14 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:11:15.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:14 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:11:15.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:14 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:11:15.004 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:14 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:11:15.004 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:14 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:11:15.004 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:14 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:11:15.004 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:14 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:11:15.004 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:14 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:11:15.004 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:14 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:11:15.004 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:14 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:11:15.004 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:14 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:11:15.004 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:14 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:11:15.025 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:14 smithi152 ceph-mon[32920]: purged_snaps scrub starts 2024-09-17T08:11:15.025 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:14 smithi152 ceph-mon[32920]: purged_snaps scrub ok 2024-09-17T08:11:15.025 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:14 smithi152 ceph-mon[32920]: osd.5 [v2:172.21.15.152:6808/3620373008,v1:172.21.15.152:6809/3620373008] boot 2024-09-17T08:11:15.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:14 smithi152 ceph-mon[32920]: osdmap e41: 6 total, 6 up, 6 in 2024-09-17T08:11:15.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:14 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:11:15.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:14 smithi152 ceph-mon[32920]: from='client.? 172.21.15.44:0/2062841435' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:11:15.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:14 smithi152 ceph-mon[32920]: osdmap e42: 6 total, 6 up, 6 in 2024-09-17T08:11:15.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:14 smithi152 ceph-mon[32920]: pgmap v134: 1 pgs: 1 peering; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:11:15.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:14 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:11:15.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:14 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:11:15.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:14 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:11:15.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:14 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:11:15.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:14 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:11:15.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:14 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:11:15.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:14 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:11:15.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:14 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:11:15.026 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:14 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:11:15.027 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:14 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:11:15.027 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:14 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:11:15.027 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:14 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:11:16.283 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:11:16.283 INFO:teuthology.orchestra.run.smithi044.stdout:{"epoch":44,"fsid":"ad90ed3e-74cb-11ef-bceb-c7b262605968","created":"2024-09-17T08:07:03.825523+0000","modified":"2024-09-17T08:11:16.218516+0000","last_up_change":"2024-09-17T08:11:13.685417+0000","last_in_change":"2024-09-17T08:10:57.034601+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-17T08:10:06.826586+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":"620fc6f4-529d-46e1-8540-2577304d82d3","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.44:6802","nonce":1421261021},{"type":"v1","addr":"172.21.15.44:6803","nonce":1421261021}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6804","nonce":1421261021},{"type":"v1","addr":"172.21.15.44:6805","nonce":1421261021}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6808","nonce":1421261021},{"type":"v1","addr":"172.21.15.44:6809","nonce":1421261021}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6806","nonce":1421261021},{"type":"v1","addr":"172.21.15.44:6807","nonce":1421261021}]},"public_addr":"172.21.15.44:6803/1421261021","cluster_addr":"172.21.15.44:6805/1421261021","heartbeat_back_addr":"172.21.15.44:6809/1421261021","heartbeat_front_addr":"172.21.15.44:6807/1421261021","state":["exists","up"]},{"osd":1,"uuid":"44f09a8e-2cc8-4e9b-a875-3d86b73401cd","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.44:6810","nonce":2391321073},{"type":"v1","addr":"172.21.15.44:6811","nonce":2391321073}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6812","nonce":2391321073},{"type":"v1","addr":"172.21.15.44:6813","nonce":2391321073}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6816","nonce":2391321073},{"type":"v1","addr":"172.21.15.44:6817","nonce":2391321073}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6814","nonce":2391321073},{"type":"v1","addr":"172.21.15.44:6815","nonce":2391321073}]},"public_addr":"172.21.15.44:6811/2391321073","cluster_addr":"172.21.15.44:6813/2391321073","heartbeat_back_addr":"172.21.15.44:6817/2391321073","heartbeat_front_addr":"172.21.15.44:6815/2391321073","state":["exists","up"]},{"osd":2,"uuid":"e7911767-44c0-4d98-b89f-86643f2162eb","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.145:6800","nonce":439629966},{"type":"v1","addr":"172.21.15.145:6801","nonce":439629966}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6802","nonce":439629966},{"type":"v1","addr":"172.21.15.145:6803","nonce":439629966}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6806","nonce":439629966},{"type":"v1","addr":"172.21.15.145:6807","nonce":439629966}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6804","nonce":439629966},{"type":"v1","addr":"172.21.15.145:6805","nonce":439629966}]},"public_addr":"172.21.15.145:6801/439629966","cluster_addr":"172.21.15.145:6803/439629966","heartbeat_back_addr":"172.21.15.145:6807/439629966","heartbeat_front_addr":"172.21.15.145:6805/439629966","state":["exists","up"]},{"osd":3,"uuid":"87446aa8-31d0-4f15-bde1-80015ea91d54","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":43,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6808","nonce":3219161798},{"type":"v1","addr":"172.21.15.145:6809","nonce":3219161798}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6810","nonce":3219161798},{"type":"v1","addr":"172.21.15.145:6811","nonce":3219161798}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6814","nonce":3219161798},{"type":"v1","addr":"172.21.15.145:6815","nonce":3219161798}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6812","nonce":3219161798},{"type":"v1","addr":"172.21.15.145:6813","nonce":3219161798}]},"public_addr":"172.21.15.145:6809/3219161798","cluster_addr":"172.21.15.145:6811/3219161798","heartbeat_back_addr":"172.21.15.145:6815/3219161798","heartbeat_front_addr":"172.21.15.145:6813/3219161798","state":["exists","up"]},{"osd":4,"uuid":"5da8d7a8-4061-4a7a-bea1-8d623f19be30","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.152:6800","nonce":2667402213},{"type":"v1","addr":"172.21.15.152:6801","nonce":2667402213}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6802","nonce":2667402213},{"type":"v1","addr":"172.21.15.152:6803","nonce":2667402213}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6806","nonce":2667402213},{"type":"v1","addr":"172.21.15.152:6807","nonce":2667402213}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6804","nonce":2667402213},{"type":"v1","addr":"172.21.15.152:6805","nonce":2667402213}]},"public_addr":"172.21.15.152:6801/2667402213","cluster_addr":"172.21.15.152:6803/2667402213","heartbeat_back_addr":"172.21.15.152:6807/2667402213","heartbeat_front_addr":"172.21.15.152:6805/2667402213","state":["exists","up"]},{"osd":5,"uuid":"ade81a47-05e1-4f47-8259-ae292139fa40","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.152:6808","nonce":3620373008},{"type":"v1","addr":"172.21.15.152:6809","nonce":3620373008}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6810","nonce":3620373008},{"type":"v1","addr":"172.21.15.152:6811","nonce":3620373008}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6814","nonce":3620373008},{"type":"v1","addr":"172.21.15.152:6815","nonce":3620373008}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6812","nonce":3620373008},{"type":"v1","addr":"172.21.15.152:6813","nonce":3620373008}]},"public_addr":"172.21.15.152:6809/3620373008","cluster_addr":"172.21.15.152:6811/3620373008","heartbeat_back_addr":"172.21.15.152:6815/3620373008","heartbeat_front_addr":"172.21.15.152:6813/3620373008","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-17T08:09:19.189662+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-17T08:09:42.838098+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-17T08:10:03.906845+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-17T08:10:27.361040+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-17T08:10:48.851620+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-17T08:11:11.993825+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.44:6801/1497028094":"2024-09-18T08:07:50.307241+0000","172.21.15.44:6800/1497028094":"2024-09-18T08:07:50.307241+0000","172.21.15.44:0/223426067":"2024-09-18T08:07:50.307241+0000","172.21.15.44:0/1021358994":"2024-09-18T08:07:50.307241+0000","172.21.15.44:6801/3813119073":"2024-09-18T08:07:26.161782+0000","172.21.15.44:0/1949569178":"2024-09-18T08:07:26.161782+0000","172.21.15.44:6800/3813119073":"2024-09-18T08:07:26.161782+0000","172.21.15.44:0/1378187922":"2024-09-18T08:07:50.307241+0000","172.21.15.44:0/2495103177":"2024-09-18T08:07:26.161782+0000","172.21.15.44:0/1758111037":"2024-09-18T08:07:26.161782+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-17T08:11:16.502 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:16 smithi145 ceph-mon[32346]: Detected new or changed devices on smithi152 2024-09-17T08:11:16.502 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:16 smithi145 ceph-mon[32346]: Adjusting osd_memory_target on smithi152 to 10592M 2024-09-17T08:11:16.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:16 smithi145 ceph-mon[32346]: osdmap e43: 6 total, 6 up, 6 in 2024-09-17T08:11:16.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:16 smithi152 ceph-mon[32920]: Detected new or changed devices on smithi152 2024-09-17T08:11:16.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:16 smithi152 ceph-mon[32920]: Adjusting osd_memory_target on smithi152 to 10592M 2024-09-17T08:11:16.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:16 smithi152 ceph-mon[32920]: osdmap e43: 6 total, 6 up, 6 in 2024-09-17T08:11:16.604 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:16 smithi044 ceph-mon[29204]: Detected new or changed devices on smithi152 2024-09-17T08:11:16.604 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:16 smithi044 ceph-mon[29204]: Adjusting osd_memory_target on smithi152 to 10592M 2024-09-17T08:11:16.604 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:16 smithi044 ceph-mon[29204]: osdmap e43: 6 total, 6 up, 6 in 2024-09-17T08:11:16.929 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-09-17T08:10:06.826586+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-17T08:11:16.930 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph osd pool get .mgr pg_num 2024-09-17T08:11:17.137 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T08:11:17.490 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:17 smithi044 ceph-mon[29204]: osdmap e44: 6 total, 6 up, 6 in 2024-09-17T08:11:17.491 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:17 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/1044066391' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T08:11:17.491 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:17 smithi044 ceph-mon[29204]: pgmap v137: 1 pgs: 1 peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:17.502 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:17 smithi145 ceph-mon[32346]: osdmap e44: 6 total, 6 up, 6 in 2024-09-17T08:11:17.502 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:17 smithi145 ceph-mon[32346]: from='client.? 172.21.15.44:0/1044066391' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T08:11:17.502 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:17 smithi145 ceph-mon[32346]: pgmap v137: 1 pgs: 1 peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:17.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:17 smithi152 ceph-mon[32920]: osdmap e44: 6 total, 6 up, 6 in 2024-09-17T08:11:17.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:17 smithi152 ceph-mon[32920]: from='client.? 172.21.15.44:0/1044066391' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T08:11:17.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:17 smithi152 ceph-mon[32920]: pgmap v137: 1 pgs: 1 peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:18.411 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:18 smithi044 ceph-mon[29204]: osdmap e45: 6 total, 6 up, 6 in 2024-09-17T08:11:18.502 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:18 smithi145 ceph-mon[32346]: osdmap e45: 6 total, 6 up, 6 in 2024-09-17T08:11:18.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:18 smithi152 ceph-mon[32920]: osdmap e45: 6 total, 6 up, 6 in 2024-09-17T08:11:18.869 INFO:teuthology.orchestra.run.smithi044.stdout:pg_num: 1 2024-09-17T08:11:19.484 INFO:tasks.cephadm:Setting up client nodes... 2024-09-17T08:11:19.485 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-09-17T08:11:19.485 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-09-17T08:11:19.485 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph mgr dump --format=json 2024-09-17T08:11:19.502 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:19 smithi145 ceph-mon[32346]: pgmap v139: 1 pgs: 1 peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:19.502 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:19 smithi145 ceph-mon[32346]: from='client.? 172.21.15.44:0/2468234112' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-17T08:11:19.510 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:19 smithi044 ceph-mon[29204]: pgmap v139: 1 pgs: 1 peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:19.510 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:19 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/2468234112' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-17T08:11:19.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:19 smithi152 ceph-mon[32920]: pgmap v139: 1 pgs: 1 peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:19.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:19 smithi152 ceph-mon[32920]: from='client.? 172.21.15.44:0/2468234112' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-17T08:11:19.690 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T08:11:21.494 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:11:21.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:21 smithi044 ceph-mon[29204]: pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 163 MiB used, 536 GiB / 536 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-17T08:11:21.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:21 smithi145 ceph-mon[32346]: pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 163 MiB used, 536 GiB / 536 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-17T08:11:21.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:21 smithi152 ceph-mon[32920]: pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 163 MiB used, 536 GiB / 536 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-17T08:11:22.069 INFO:teuthology.orchestra.run.smithi044.stdout:{"epoch":15,"flags":0,"active_gid":14150,"active_name":"a","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6800","nonce":280116653},{"type":"v1","addr":"172.21.15.44:6801","nonce":280116653}]},"active_addr":"172.21.15.44:6801/280116653","active_change":"2024-09-17T08:07:50.307344+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.44: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.44:0","nonce":1712189496}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.44:0","nonce":4251823619}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.44:0","nonce":1758691063}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.44:0","nonce":396443641}]}]} 2024-09-17T08:11:22.074 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-09-17T08:11:22.074 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-09-17T08:11:22.074 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-17T08:11:22.311 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T08:11:22.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:22 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/3404680677' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-17T08:11:22.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:22 smithi145 ceph-mon[32346]: from='client.? 172.21.15.44:0/3404680677' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-17T08:11:22.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:22 smithi152 ceph-mon[32920]: from='client.? 172.21.15.44:0/3404680677' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-17T08:11:23.625 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:23 smithi044 ceph-mon[29204]: pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 81 KiB/s, 0 objects/s recovering 2024-09-17T08:11:23.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:23 smithi145 ceph-mon[32346]: pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 81 KiB/s, 0 objects/s recovering 2024-09-17T08:11:23.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:23 smithi152 ceph-mon[32920]: pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 81 KiB/s, 0 objects/s recovering 2024-09-17T08:11:24.022 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:11:24.023 INFO:teuthology.orchestra.run.smithi044.stdout:{"epoch":45,"fsid":"ad90ed3e-74cb-11ef-bceb-c7b262605968","created":"2024-09-17T08:07:03.825523+0000","modified":"2024-09-17T08:11:17.223774+0000","last_up_change":"2024-09-17T08:11:13.685417+0000","last_in_change":"2024-09-17T08:10:57.034601+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-17T08:10:06.826586+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":"620fc6f4-529d-46e1-8540-2577304d82d3","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.44:6802","nonce":1421261021},{"type":"v1","addr":"172.21.15.44:6803","nonce":1421261021}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6804","nonce":1421261021},{"type":"v1","addr":"172.21.15.44:6805","nonce":1421261021}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6808","nonce":1421261021},{"type":"v1","addr":"172.21.15.44:6809","nonce":1421261021}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6806","nonce":1421261021},{"type":"v1","addr":"172.21.15.44:6807","nonce":1421261021}]},"public_addr":"172.21.15.44:6803/1421261021","cluster_addr":"172.21.15.44:6805/1421261021","heartbeat_back_addr":"172.21.15.44:6809/1421261021","heartbeat_front_addr":"172.21.15.44:6807/1421261021","state":["exists","up"]},{"osd":1,"uuid":"44f09a8e-2cc8-4e9b-a875-3d86b73401cd","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.44:6810","nonce":2391321073},{"type":"v1","addr":"172.21.15.44:6811","nonce":2391321073}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6812","nonce":2391321073},{"type":"v1","addr":"172.21.15.44:6813","nonce":2391321073}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6816","nonce":2391321073},{"type":"v1","addr":"172.21.15.44:6817","nonce":2391321073}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6814","nonce":2391321073},{"type":"v1","addr":"172.21.15.44:6815","nonce":2391321073}]},"public_addr":"172.21.15.44:6811/2391321073","cluster_addr":"172.21.15.44:6813/2391321073","heartbeat_back_addr":"172.21.15.44:6817/2391321073","heartbeat_front_addr":"172.21.15.44:6815/2391321073","state":["exists","up"]},{"osd":2,"uuid":"e7911767-44c0-4d98-b89f-86643f2162eb","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.145:6800","nonce":439629966},{"type":"v1","addr":"172.21.15.145:6801","nonce":439629966}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6802","nonce":439629966},{"type":"v1","addr":"172.21.15.145:6803","nonce":439629966}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6806","nonce":439629966},{"type":"v1","addr":"172.21.15.145:6807","nonce":439629966}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6804","nonce":439629966},{"type":"v1","addr":"172.21.15.145:6805","nonce":439629966}]},"public_addr":"172.21.15.145:6801/439629966","cluster_addr":"172.21.15.145:6803/439629966","heartbeat_back_addr":"172.21.15.145:6807/439629966","heartbeat_front_addr":"172.21.15.145:6805/439629966","state":["exists","up"]},{"osd":3,"uuid":"87446aa8-31d0-4f15-bde1-80015ea91d54","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.145:6808","nonce":3219161798},{"type":"v1","addr":"172.21.15.145:6809","nonce":3219161798}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6810","nonce":3219161798},{"type":"v1","addr":"172.21.15.145:6811","nonce":3219161798}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6814","nonce":3219161798},{"type":"v1","addr":"172.21.15.145:6815","nonce":3219161798}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6812","nonce":3219161798},{"type":"v1","addr":"172.21.15.145:6813","nonce":3219161798}]},"public_addr":"172.21.15.145:6809/3219161798","cluster_addr":"172.21.15.145:6811/3219161798","heartbeat_back_addr":"172.21.15.145:6815/3219161798","heartbeat_front_addr":"172.21.15.145:6813/3219161798","state":["exists","up"]},{"osd":4,"uuid":"5da8d7a8-4061-4a7a-bea1-8d623f19be30","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.152:6800","nonce":2667402213},{"type":"v1","addr":"172.21.15.152:6801","nonce":2667402213}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6802","nonce":2667402213},{"type":"v1","addr":"172.21.15.152:6803","nonce":2667402213}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6806","nonce":2667402213},{"type":"v1","addr":"172.21.15.152:6807","nonce":2667402213}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6804","nonce":2667402213},{"type":"v1","addr":"172.21.15.152:6805","nonce":2667402213}]},"public_addr":"172.21.15.152:6801/2667402213","cluster_addr":"172.21.15.152:6803/2667402213","heartbeat_back_addr":"172.21.15.152:6807/2667402213","heartbeat_front_addr":"172.21.15.152:6805/2667402213","state":["exists","up"]},{"osd":5,"uuid":"ade81a47-05e1-4f47-8259-ae292139fa40","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.152:6808","nonce":3620373008},{"type":"v1","addr":"172.21.15.152:6809","nonce":3620373008}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6810","nonce":3620373008},{"type":"v1","addr":"172.21.15.152:6811","nonce":3620373008}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6814","nonce":3620373008},{"type":"v1","addr":"172.21.15.152:6815","nonce":3620373008}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6812","nonce":3620373008},{"type":"v1","addr":"172.21.15.152:6813","nonce":3620373008}]},"public_addr":"172.21.15.152:6809/3620373008","cluster_addr":"172.21.15.152:6811/3620373008","heartbeat_back_addr":"172.21.15.152:6815/3620373008","heartbeat_front_addr":"172.21.15.152:6813/3620373008","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-17T08:09:19.189662+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-17T08:09:42.838098+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-17T08:10:03.906845+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-17T08:10:27.361040+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-17T08:10:48.851620+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-17T08:11:11.993825+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.44:6801/1497028094":"2024-09-18T08:07:50.307241+0000","172.21.15.44:6800/1497028094":"2024-09-18T08:07:50.307241+0000","172.21.15.44:0/223426067":"2024-09-18T08:07:50.307241+0000","172.21.15.44:0/1021358994":"2024-09-18T08:07:50.307241+0000","172.21.15.44:6801/3813119073":"2024-09-18T08:07:26.161782+0000","172.21.15.44:0/1949569178":"2024-09-18T08:07:26.161782+0000","172.21.15.44:6800/3813119073":"2024-09-18T08:07:26.161782+0000","172.21.15.44:0/1378187922":"2024-09-18T08:07:50.307241+0000","172.21.15.44:0/2495103177":"2024-09-18T08:07:26.161782+0000","172.21.15.44:0/1758111037":"2024-09-18T08:07:26.161782+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-17T08:11:24.608 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-09-17T08:11:24.608 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-17T08:11:24.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:24 smithi145 ceph-mon[32346]: from='client.? 172.21.15.44:0/2606535833' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T08:11:24.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:24 smithi152 ceph-mon[32920]: from='client.? 172.21.15.44:0/2606535833' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T08:11:24.809 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T08:11:24.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:24 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/2606535833' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T08:11:25.608 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:25 smithi044 ceph-mon[29204]: pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 71 KiB/s, 0 objects/s recovering 2024-09-17T08:11:25.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:25 smithi145 ceph-mon[32346]: pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 71 KiB/s, 0 objects/s recovering 2024-09-17T08:11:25.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:25 smithi152 ceph-mon[32920]: pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 71 KiB/s, 0 objects/s recovering 2024-09-17T08:11:26.551 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:11:26.552 INFO:teuthology.orchestra.run.smithi044.stdout:{"epoch":45,"fsid":"ad90ed3e-74cb-11ef-bceb-c7b262605968","created":"2024-09-17T08:07:03.825523+0000","modified":"2024-09-17T08:11:17.223774+0000","last_up_change":"2024-09-17T08:11:13.685417+0000","last_in_change":"2024-09-17T08:10:57.034601+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-17T08:10:06.826586+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":"620fc6f4-529d-46e1-8540-2577304d82d3","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.44:6802","nonce":1421261021},{"type":"v1","addr":"172.21.15.44:6803","nonce":1421261021}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6804","nonce":1421261021},{"type":"v1","addr":"172.21.15.44:6805","nonce":1421261021}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6808","nonce":1421261021},{"type":"v1","addr":"172.21.15.44:6809","nonce":1421261021}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6806","nonce":1421261021},{"type":"v1","addr":"172.21.15.44:6807","nonce":1421261021}]},"public_addr":"172.21.15.44:6803/1421261021","cluster_addr":"172.21.15.44:6805/1421261021","heartbeat_back_addr":"172.21.15.44:6809/1421261021","heartbeat_front_addr":"172.21.15.44:6807/1421261021","state":["exists","up"]},{"osd":1,"uuid":"44f09a8e-2cc8-4e9b-a875-3d86b73401cd","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.44:6810","nonce":2391321073},{"type":"v1","addr":"172.21.15.44:6811","nonce":2391321073}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6812","nonce":2391321073},{"type":"v1","addr":"172.21.15.44:6813","nonce":2391321073}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6816","nonce":2391321073},{"type":"v1","addr":"172.21.15.44:6817","nonce":2391321073}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6814","nonce":2391321073},{"type":"v1","addr":"172.21.15.44:6815","nonce":2391321073}]},"public_addr":"172.21.15.44:6811/2391321073","cluster_addr":"172.21.15.44:6813/2391321073","heartbeat_back_addr":"172.21.15.44:6817/2391321073","heartbeat_front_addr":"172.21.15.44:6815/2391321073","state":["exists","up"]},{"osd":2,"uuid":"e7911767-44c0-4d98-b89f-86643f2162eb","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.145:6800","nonce":439629966},{"type":"v1","addr":"172.21.15.145:6801","nonce":439629966}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6802","nonce":439629966},{"type":"v1","addr":"172.21.15.145:6803","nonce":439629966}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6806","nonce":439629966},{"type":"v1","addr":"172.21.15.145:6807","nonce":439629966}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6804","nonce":439629966},{"type":"v1","addr":"172.21.15.145:6805","nonce":439629966}]},"public_addr":"172.21.15.145:6801/439629966","cluster_addr":"172.21.15.145:6803/439629966","heartbeat_back_addr":"172.21.15.145:6807/439629966","heartbeat_front_addr":"172.21.15.145:6805/439629966","state":["exists","up"]},{"osd":3,"uuid":"87446aa8-31d0-4f15-bde1-80015ea91d54","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.145:6808","nonce":3219161798},{"type":"v1","addr":"172.21.15.145:6809","nonce":3219161798}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6810","nonce":3219161798},{"type":"v1","addr":"172.21.15.145:6811","nonce":3219161798}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6814","nonce":3219161798},{"type":"v1","addr":"172.21.15.145:6815","nonce":3219161798}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6812","nonce":3219161798},{"type":"v1","addr":"172.21.15.145:6813","nonce":3219161798}]},"public_addr":"172.21.15.145:6809/3219161798","cluster_addr":"172.21.15.145:6811/3219161798","heartbeat_back_addr":"172.21.15.145:6815/3219161798","heartbeat_front_addr":"172.21.15.145:6813/3219161798","state":["exists","up"]},{"osd":4,"uuid":"5da8d7a8-4061-4a7a-bea1-8d623f19be30","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.152:6800","nonce":2667402213},{"type":"v1","addr":"172.21.15.152:6801","nonce":2667402213}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6802","nonce":2667402213},{"type":"v1","addr":"172.21.15.152:6803","nonce":2667402213}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6806","nonce":2667402213},{"type":"v1","addr":"172.21.15.152:6807","nonce":2667402213}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6804","nonce":2667402213},{"type":"v1","addr":"172.21.15.152:6805","nonce":2667402213}]},"public_addr":"172.21.15.152:6801/2667402213","cluster_addr":"172.21.15.152:6803/2667402213","heartbeat_back_addr":"172.21.15.152:6807/2667402213","heartbeat_front_addr":"172.21.15.152:6805/2667402213","state":["exists","up"]},{"osd":5,"uuid":"ade81a47-05e1-4f47-8259-ae292139fa40","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.152:6808","nonce":3620373008},{"type":"v1","addr":"172.21.15.152:6809","nonce":3620373008}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6810","nonce":3620373008},{"type":"v1","addr":"172.21.15.152:6811","nonce":3620373008}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6814","nonce":3620373008},{"type":"v1","addr":"172.21.15.152:6815","nonce":3620373008}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.152:6812","nonce":3620373008},{"type":"v1","addr":"172.21.15.152:6813","nonce":3620373008}]},"public_addr":"172.21.15.152:6809/3620373008","cluster_addr":"172.21.15.152:6811/3620373008","heartbeat_back_addr":"172.21.15.152:6815/3620373008","heartbeat_front_addr":"172.21.15.152:6813/3620373008","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-17T08:09:19.189662+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-17T08:09:42.838098+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-17T08:10:03.906845+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-17T08:10:27.361040+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-17T08:10:48.851620+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-17T08:11:11.993825+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.44:6801/1497028094":"2024-09-18T08:07:50.307241+0000","172.21.15.44:6800/1497028094":"2024-09-18T08:07:50.307241+0000","172.21.15.44:0/223426067":"2024-09-18T08:07:50.307241+0000","172.21.15.44:0/1021358994":"2024-09-18T08:07:50.307241+0000","172.21.15.44:6801/3813119073":"2024-09-18T08:07:26.161782+0000","172.21.15.44:0/1949569178":"2024-09-18T08:07:26.161782+0000","172.21.15.44:6800/3813119073":"2024-09-18T08:07:26.161782+0000","172.21.15.44:0/1378187922":"2024-09-18T08:07:50.307241+0000","172.21.15.44:0/2495103177":"2024-09-18T08:07:26.161782+0000","172.21.15.44:0/1758111037":"2024-09-18T08:07:26.161782+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-17T08:11:27.158 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph tell osd.0 flush_pg_stats 2024-09-17T08:11:27.159 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph tell osd.1 flush_pg_stats 2024-09-17T08:11:27.159 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph tell osd.2 flush_pg_stats 2024-09-17T08:11:27.160 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph tell osd.3 flush_pg_stats 2024-09-17T08:11:27.160 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph tell osd.4 flush_pg_stats 2024-09-17T08:11:27.161 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph tell osd.5 flush_pg_stats 2024-09-17T08:11:27.416 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T08:11:27.425 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T08:11:27.708 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:27 smithi044 ceph-mon[29204]: pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-17T08:11:27.708 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:27 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/2994790295' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T08:11:27.708 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T08:11:27.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:27 smithi145 ceph-mon[32346]: pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-17T08:11:27.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:27 smithi145 ceph-mon[32346]: from='client.? 172.21.15.44:0/2994790295' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T08:11:27.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:27 smithi152 ceph-mon[32920]: pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-17T08:11:27.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:27 smithi152 ceph-mon[32920]: from='client.? 172.21.15.44:0/2994790295' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T08:11:28.795 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T08:11:28.806 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T08:11:28.807 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T08:11:29.537 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:29 smithi044 ceph-mon[29204]: pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-09-17T08:11:29.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:29 smithi145 ceph-mon[32346]: pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-09-17T08:11:29.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:29 smithi152 ceph-mon[32920]: pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-09-17T08:11:31.687 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:31 smithi044 ceph-mon[29204]: pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-17T08:11:31.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:31 smithi145 ceph-mon[32346]: pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-17T08:11:31.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:31 smithi152 ceph-mon[32920]: pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-17T08:11:33.674 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:33 smithi044 ceph-mon[29204]: pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:33.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:33 smithi145 ceph-mon[32346]: pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:33.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:33 smithi152 ceph-mon[32920]: pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:34.026 INFO:teuthology.orchestra.run.smithi044.stdout:34359738397 2024-09-17T08:11:34.026 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.0 2024-09-17T08:11:34.644 INFO:teuthology.orchestra.run.smithi044.stdout:77309411348 2024-09-17T08:11:34.644 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.2 2024-09-17T08:11:35.727 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:35 smithi044 ceph-mon[29204]: pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:35.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:35 smithi145 ceph-mon[32346]: pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:35.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:35 smithi152 ceph-mon[32920]: pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:37.642 INFO:teuthology.orchestra.run.smithi044.stdout:107374182415 2024-09-17T08:11:37.642 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.3 2024-09-17T08:11:37.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:37 smithi145 ceph-mon[32346]: pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:37.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:37 smithi152 ceph-mon[32920]: pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:37.793 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:37 smithi044 ceph-mon[29204]: pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:38.571 INFO:teuthology.orchestra.run.smithi044.stdout:141733920779 2024-09-17T08:11:38.571 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.4 2024-09-17T08:11:38.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:38 smithi145 ceph-mon[32346]: pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:38.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:38 smithi152 ceph-mon[32920]: pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:38.808 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:38 smithi044 ceph-mon[29204]: pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:39.421 INFO:teuthology.orchestra.run.smithi044.stdout:55834574874 2024-09-17T08:11:39.421 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.1 2024-09-17T08:11:40.138 INFO:teuthology.orchestra.run.smithi044.stdout:176093659144 2024-09-17T08:11:40.139 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.5 2024-09-17T08:11:40.198 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T08:11:40.198 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T08:11:40.256 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T08:11:40.256 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T08:11:41.523 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:41 smithi044 ceph-mon[29204]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:41.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:41 smithi145 ceph-mon[32346]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:41.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:41 smithi152 ceph-mon[32920]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:42.987 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T08:11:43.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:43 smithi044 ceph-mon[29204]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:43.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:43 smithi145 ceph-mon[32346]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:43.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:43 smithi152 ceph-mon[32920]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:44.539 INFO:teuthology.orchestra.run.smithi044.stdout:107374182417 2024-09-17T08:11:45.595 INFO:teuthology.orchestra.run.smithi044.stdout:34359738399 2024-09-17T08:11:45.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:45 smithi044 ceph-mon[29204]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:45.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:45 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/732954130' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-17T08:11:45.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:45 smithi145 ceph-mon[32346]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:45.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:45 smithi145 ceph-mon[32346]: from='client.? 172.21.15.44:0/732954130' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-17T08:11:45.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:45 smithi152 ceph-mon[32920]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:45.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:45 smithi152 ceph-mon[32920]: from='client.? 172.21.15.44:0/732954130' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-17T08:11:46.057 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T08:11:46.064 INFO:tasks.cephadm.ceph_manager.ceph:need seq 107374182415 got 107374182417 for osd.3 2024-09-17T08:11:46.065 DEBUG:teuthology.parallel:result is None 2024-09-17T08:11:46.707 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:46 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/1934267369' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-17T08:11:46.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:46 smithi145 ceph-mon[32346]: from='client.? 172.21.15.44:0/1934267369' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-17T08:11:46.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:46 smithi152 ceph-mon[32920]: from='client.? 172.21.15.44:0/1934267369' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-17T08:11:47.204 INFO:teuthology.orchestra.run.smithi044.stdout:141733920780 2024-09-17T08:11:47.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:47 smithi044 ceph-mon[29204]: pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:47.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:47 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/592950554' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-17T08:11:47.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:47 smithi145 ceph-mon[32346]: pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:47.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:47 smithi145 ceph-mon[32346]: from='client.? 172.21.15.44:0/592950554' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-17T08:11:47.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:47 smithi152 ceph-mon[32920]: pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:47.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:47 smithi152 ceph-mon[32920]: from='client.? 172.21.15.44:0/592950554' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-17T08:11:48.332 INFO:tasks.cephadm.ceph_manager.ceph:need seq 34359738397 got 34359738399 for osd.0 2024-09-17T08:11:48.333 DEBUG:teuthology.parallel:result is None 2024-09-17T08:11:49.448 INFO:teuthology.orchestra.run.smithi044.stdout:77309411351 2024-09-17T08:11:49.620 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:49 smithi044 ceph-mon[29204]: pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:49.640 INFO:tasks.cephadm.ceph_manager.ceph:need seq 141733920779 got 141733920780 for osd.4 2024-09-17T08:11:49.641 DEBUG:teuthology.parallel:result is None 2024-09-17T08:11:49.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:49 smithi145 ceph-mon[32346]: pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:49.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:49 smithi152 ceph-mon[32920]: pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:50.248 INFO:teuthology.orchestra.run.smithi044.stdout:55834574876 2024-09-17T08:11:50.517 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:50 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/2206629299' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-17T08:11:50.517 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:50 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/28003729' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-17T08:11:50.537 INFO:tasks.cephadm.ceph_manager.ceph:need seq 77309411348 got 77309411351 for osd.2 2024-09-17T08:11:50.537 DEBUG:teuthology.parallel:result is None 2024-09-17T08:11:50.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:50 smithi145 ceph-mon[32346]: from='client.? 172.21.15.44:0/2206629299' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-17T08:11:50.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:50 smithi145 ceph-mon[32346]: from='client.? 172.21.15.44:0/28003729' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-17T08:11:50.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:50 smithi152 ceph-mon[32920]: from='client.? 172.21.15.44:0/2206629299' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-17T08:11:50.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:50 smithi152 ceph-mon[32920]: from='client.? 172.21.15.44:0/28003729' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-17T08:11:51.465 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:51 smithi044 ceph-mon[29204]: pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:51.728 INFO:teuthology.orchestra.run.smithi044.stdout:176093659147 2024-09-17T08:11:51.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:51 smithi145 ceph-mon[32346]: pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:51.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:51 smithi152 ceph-mon[32920]: pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:52.013 INFO:tasks.cephadm.ceph_manager.ceph:need seq 55834574874 got 55834574876 for osd.1 2024-09-17T08:11:52.013 DEBUG:teuthology.parallel:result is None 2024-09-17T08:11:52.623 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:52 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/2613354138' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-17T08:11:52.649 INFO:tasks.cephadm.ceph_manager.ceph:need seq 176093659144 got 176093659147 for osd.5 2024-09-17T08:11:52.649 DEBUG:teuthology.parallel:result is None 2024-09-17T08:11:52.649 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-09-17T08:11:52.649 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph pg dump --format=json 2024-09-17T08:11:52.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:52 smithi145 ceph-mon[32346]: from='client.? 172.21.15.44:0/2613354138' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-17T08:11:52.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:52 smithi152 ceph-mon[32920]: from='client.? 172.21.15.44:0/2613354138' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-17T08:11:52.856 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T08:11:53.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:53 smithi044 ceph-mon[29204]: pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:53.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:53 smithi145 ceph-mon[32346]: pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:53.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:53 smithi152 ceph-mon[32920]: pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:54.710 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:11:54.710 INFO:teuthology.orchestra.run.smithi044.stderr:dumped all 2024-09-17T08:11:55.252 INFO:teuthology.orchestra.run.smithi044.stdout:{"pg_ready":true,"pg_map":{"version":157,"stamp":"2024-09-17T08:11:54.352105+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":166264,"kb_used_data":4140,"kb_used_omap":9,"kb_used_meta":162038,"kb_avail":562304648,"statfs":{"total":575970213888,"available":575799959552,"internally_reserved":0,"allocated":4239360,"data_stored":2731764,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9562,"internal_metadata":165927590},"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.002127"},"pg_stats":[{"pgid":"1.0","version":"22'137","reported_seq":266,"reported_epoch":45,"state":"active+clean","last_fresh":"2024-09-17T08:11:17.232481+0000","last_change":"2024-09-17T08:11:17.232481+0000","last_active":"2024-09-17T08:11:17.232481+0000","last_peered":"2024-09-17T08:11:17.232481+0000","last_clean":"2024-09-17T08:11:17.232481+0000","last_became_active":"2024-09-17T08:11:17.232135+0000","last_became_peered":"2024-09-17T08:11:17.232135+0000","last_unstale":"2024-09-17T08:11:17.232481+0000","last_undegraded":"2024-09-17T08:11:17.232481+0000","last_fullsized":"2024-09-17T08:11:17.232481+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-17T08:10:07.195356+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-17T08:10:07.195356+0000","last_clean_scrub_stamp":"2024-09-17T08:10:07.195356+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-18T16:14:52.355293+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":176093659147,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28004,"kb_used_data":980,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717148,"statfs":{"total":95995035648,"available":95966359552,"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.58499999999999996}]},{"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.57399999999999995}]},{"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.51000000000000001}]},{"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.28299999999999997}]}]},{"osd":4,"up_from":33,"seq":141733920782,"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":"Tue Sep 17 08:11:50 2024","interfaces":[{"interface":"back","average":{"1min":0.46600000000000003,"5min":0.46600000000000003,"15min":0.46600000000000003},"min":{"1min":0.33900000000000002,"5min":0.33900000000000002,"15min":0.33900000000000002},"max":{"1min":0.61599999999999999,"5min":0.61599999999999999,"15min":0.61599999999999999},"last":0.45100000000000001},{"interface":"front","average":{"1min":0.47899999999999998,"5min":0.47899999999999998,"15min":0.47899999999999998},"min":{"1min":0.33400000000000002,"5min":0.33400000000000002,"15min":0.33400000000000002},"max":{"1min":0.64600000000000002,"5min":0.64600000000000002,"15min":0.64600000000000002},"last":0.433}]},{"osd":1,"last update":"Tue Sep 17 08:11:50 2024","interfaces":[{"interface":"back","average":{"1min":0.46000000000000002,"5min":0.46000000000000002,"15min":0.46000000000000002},"min":{"1min":0.315,"5min":0.315,"15min":0.315},"max":{"1min":0.60199999999999998,"5min":0.60199999999999998,"15min":0.60199999999999998},"last":0.40999999999999998},{"interface":"front","average":{"1min":0.47899999999999998,"5min":0.47899999999999998,"15min":0.47899999999999998},"min":{"1min":0.29999999999999999,"5min":0.29999999999999999,"15min":0.29999999999999999},"max":{"1min":0.67600000000000005,"5min":0.67600000000000005,"15min":0.67600000000000005},"last":0.376}]},{"osd":2,"last update":"Tue Sep 17 08:11:50 2024","interfaces":[{"interface":"back","average":{"1min":0.53300000000000003,"5min":0.53300000000000003,"15min":0.53300000000000003},"min":{"1min":0.46600000000000003,"5min":0.46600000000000003,"15min":0.46600000000000003},"max":{"1min":0.65100000000000002,"5min":0.65100000000000002,"15min":0.65100000000000002},"last":0.56999999999999995},{"interface":"front","average":{"1min":0.52200000000000002,"5min":0.52200000000000002,"15min":0.52200000000000002},"min":{"1min":0.38800000000000001,"5min":0.38800000000000001,"15min":0.38800000000000001},"max":{"1min":0.626,"5min":0.626,"15min":0.626},"last":0.626}]},{"osd":3,"last update":"Tue Sep 17 08:11:50 2024","interfaces":[{"interface":"back","average":{"1min":0.50900000000000001,"5min":0.50900000000000001,"15min":0.50900000000000001},"min":{"1min":0.40899999999999997,"5min":0.40899999999999997,"15min":0.40899999999999997},"max":{"1min":0.64600000000000002,"5min":0.64600000000000002,"15min":0.64600000000000002},"last":0.54800000000000004},{"interface":"front","average":{"1min":0.55400000000000005,"5min":0.55400000000000005,"15min":0.55400000000000005},"min":{"1min":0.44,"5min":0.44,"15min":0.44},"max":{"1min":0.70699999999999996,"5min":0.70699999999999996,"15min":0.70699999999999996},"last":0.59299999999999997}]},{"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.504}]}]},{"osd":3,"up_from":25,"seq":107374182419,"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":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":"Tue Sep 17 08:11:30 2024","interfaces":[{"interface":"back","average":{"1min":0.49099999999999999,"5min":0.49099999999999999,"15min":0.49099999999999999},"min":{"1min":0.308,"5min":0.308,"15min":0.308},"max":{"1min":0.70699999999999996,"5min":0.70699999999999996,"15min":0.70699999999999996},"last":0.379},{"interface":"front","average":{"1min":0.51800000000000002,"5min":0.51800000000000002,"15min":0.51800000000000002},"min":{"1min":0.375,"5min":0.375,"15min":0.375},"max":{"1min":0.78600000000000003,"5min":0.78600000000000003,"15min":0.78600000000000003},"last":0.36199999999999999}]},{"osd":1,"last update":"Tue Sep 17 08:11:30 2024","interfaces":[{"interface":"back","average":{"1min":0.52700000000000002,"5min":0.52700000000000002,"15min":0.52700000000000002},"min":{"1min":0.32200000000000001,"5min":0.32200000000000001,"15min":0.32200000000000001},"max":{"1min":0.76900000000000002,"5min":0.76900000000000002,"15min":0.76900000000000002},"last":0.42899999999999999},{"interface":"front","average":{"1min":0.51800000000000002,"5min":0.51800000000000002,"15min":0.51800000000000002},"min":{"1min":0.33100000000000002,"5min":0.33100000000000002,"15min":0.33100000000000002},"max":{"1min":0.80000000000000004,"5min":0.80000000000000004,"15min":0.80000000000000004},"last":0.41399999999999998}]},{"osd":2,"last update":"Tue Sep 17 08:11:30 2024","interfaces":[{"interface":"back","average":{"1min":0.38700000000000001,"5min":0.38700000000000001,"15min":0.38700000000000001},"min":{"1min":0.27300000000000002,"5min":0.27300000000000002,"15min":0.27300000000000002},"max":{"1min":0.54700000000000004,"5min":0.54700000000000004,"15min":0.54700000000000004},"last":0.33000000000000002},{"interface":"front","average":{"1min":0.39600000000000002,"5min":0.39600000000000002,"15min":0.39600000000000002},"min":{"1min":0.29899999999999999,"5min":0.29899999999999999,"15min":0.29899999999999999},"max":{"1min":0.52200000000000002,"5min":0.52200000000000002,"15min":0.52200000000000002},"last":0.40000000000000002}]},{"osd":4,"last update":"Tue Sep 17 08:11:53 2024","interfaces":[{"interface":"back","average":{"1min":0.53200000000000003,"5min":0.53200000000000003,"15min":0.53200000000000003},"min":{"1min":0.40799999999999997,"5min":0.40799999999999997,"15min":0.40799999999999997},"max":{"1min":0.754,"5min":0.754,"15min":0.754},"last":0.496},{"interface":"front","average":{"1min":0.56000000000000005,"5min":0.56000000000000005,"15min":0.56000000000000005},"min":{"1min":0.45300000000000001,"5min":0.45300000000000001,"15min":0.45300000000000001},"max":{"1min":0.70899999999999996,"5min":0.70899999999999996,"15min":0.70899999999999996},"last":0.53800000000000003}]},{"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.56999999999999995}]}]},{"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":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,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":"Tue Sep 17 08:11:10 2024","interfaces":[{"interface":"back","average":{"1min":0.54000000000000004,"5min":0.54000000000000004,"15min":0.54000000000000004},"min":{"1min":0.38500000000000001,"5min":0.38500000000000001,"15min":0.38500000000000001},"max":{"1min":0.90400000000000003,"5min":0.90400000000000003,"15min":0.90400000000000003},"last":0.41099999999999998},{"interface":"front","average":{"1min":0.52700000000000002,"5min":0.52700000000000002,"15min":0.52700000000000002},"min":{"1min":0.34699999999999998,"5min":0.34699999999999998,"15min":0.34699999999999998},"max":{"1min":0.84499999999999997,"5min":0.84499999999999997,"15min":0.84499999999999997},"last":0.307}]},{"osd":1,"last update":"Tue Sep 17 08:11:10 2024","interfaces":[{"interface":"back","average":{"1min":0.52900000000000003,"5min":0.52900000000000003,"15min":0.52900000000000003},"min":{"1min":0.33600000000000002,"5min":0.33600000000000002,"15min":0.33600000000000002},"max":{"1min":0.88900000000000001,"5min":0.88900000000000001,"15min":0.88900000000000001},"last":0.35699999999999998},{"interface":"front","average":{"1min":0.53500000000000003,"5min":0.53500000000000003,"15min":0.53500000000000003},"min":{"1min":0.35499999999999998,"5min":0.35499999999999998,"15min":0.35499999999999998},"max":{"1min":0.94599999999999995,"5min":0.94599999999999995,"15min":0.94599999999999995},"last":0.37}]},{"osd":3,"last update":"Tue Sep 17 08:11:29 2024","interfaces":[{"interface":"back","average":{"1min":0.34200000000000003,"5min":0.34200000000000003,"15min":0.34200000000000003},"min":{"1min":0.27200000000000002,"5min":0.27200000000000002,"15min":0.27200000000000002},"max":{"1min":0.45100000000000001,"5min":0.45100000000000001,"15min":0.45100000000000001},"last":0.32200000000000001},{"interface":"front","average":{"1min":0.35199999999999998,"5min":0.35199999999999998,"15min":0.35199999999999998},"min":{"1min":0.28399999999999997,"5min":0.28399999999999997,"15min":0.28399999999999997},"max":{"1min":0.46700000000000003,"5min":0.46700000000000003,"15min":0.46700000000000003},"last":0.34000000000000002}]},{"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.49099999999999999}]},{"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":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":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,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":"Tue Sep 17 08:11:49 2024","interfaces":[{"interface":"back","average":{"1min":0.32200000000000001,"5min":0.32100000000000001,"15min":0.32100000000000001},"min":{"1min":0.20399999999999999,"5min":0.20399999999999999,"15min":0.20399999999999999},"max":{"1min":0.42799999999999999,"5min":0.53800000000000003,"15min":0.53800000000000003},"last":0.315},{"interface":"front","average":{"1min":0.318,"5min":0.33900000000000002,"15min":0.34300000000000003},"min":{"1min":0.22900000000000001,"5min":0.22900000000000001,"15min":0.22900000000000001},"max":{"1min":0.45300000000000001,"5min":0.625,"15min":0.625},"last":0.29999999999999999}]},{"osd":2,"last update":"Tue Sep 17 08:11:06 2024","interfaces":[{"interface":"back","average":{"1min":0.53100000000000003,"5min":0.53100000000000003,"15min":0.53100000000000003},"min":{"1min":0.38100000000000001,"5min":0.38100000000000001,"15min":0.38100000000000001},"max":{"1min":0.66000000000000003,"5min":0.66000000000000003,"15min":0.66000000000000003},"last":0.52600000000000002},{"interface":"front","average":{"1min":0.53100000000000003,"5min":0.53100000000000003,"15min":0.53100000000000003},"min":{"1min":0.38800000000000001,"5min":0.38800000000000001,"15min":0.38800000000000001},"max":{"1min":0.70899999999999996,"5min":0.70899999999999996,"15min":0.70899999999999996},"last":0.5}]},{"osd":3,"last update":"Tue Sep 17 08:11:30 2024","interfaces":[{"interface":"back","average":{"1min":0.58599999999999997,"5min":0.58599999999999997,"15min":0.58599999999999997},"min":{"1min":0.38400000000000001,"5min":0.38400000000000001,"15min":0.38400000000000001},"max":{"1min":0.70699999999999996,"5min":0.70699999999999996,"15min":0.70699999999999996},"last":0.54200000000000004},{"interface":"front","average":{"1min":0.56100000000000005,"5min":0.56100000000000005,"15min":0.56100000000000005},"min":{"1min":0.35699999999999998,"5min":0.35699999999999998,"15min":0.35699999999999998},"max":{"1min":0.67700000000000005,"5min":0.67700000000000005,"15min":0.67700000000000005},"last":0.55200000000000005}]},{"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.51400000000000001}]},{"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.60699999999999998}]}]},{"osd":0,"up_from":8,"seq":34359738401,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":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":[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":"Tue Sep 17 08:11:50 2024","interfaces":[{"interface":"back","average":{"1min":0.32600000000000001,"5min":0.34499999999999997,"15min":0.34799999999999998},"min":{"1min":0.27300000000000002,"5min":0.23400000000000001,"15min":0.23400000000000001},"max":{"1min":0.48299999999999998,"5min":0.58399999999999996,"15min":0.58399999999999996},"last":0.32100000000000001},{"interface":"front","average":{"1min":0.33600000000000002,"5min":0.35399999999999998,"15min":0.35699999999999998},"min":{"1min":0.24199999999999999,"5min":0.24199999999999999,"15min":0.24199999999999999},"max":{"1min":0.51200000000000001,"5min":0.55000000000000004,"15min":0.55000000000000004},"last":0.34999999999999998}]},{"osd":2,"last update":"Tue Sep 17 08:11:07 2024","interfaces":[{"interface":"back","average":{"1min":0.51500000000000001,"5min":0.51500000000000001,"15min":0.51500000000000001},"min":{"1min":0.38900000000000001,"5min":0.38900000000000001,"15min":0.38900000000000001},"max":{"1min":0.68400000000000005,"5min":0.68400000000000005,"15min":0.68400000000000005},"last":0.55400000000000005},{"interface":"front","average":{"1min":0.54300000000000004,"5min":0.54300000000000004,"15min":0.54300000000000004},"min":{"1min":0.41099999999999998,"5min":0.41099999999999998,"15min":0.41099999999999998},"max":{"1min":0.71599999999999997,"5min":0.71599999999999997,"15min":0.71599999999999997},"last":0.66800000000000004}]},{"osd":3,"last update":"Tue Sep 17 08:11:31 2024","interfaces":[{"interface":"back","average":{"1min":0.54100000000000004,"5min":0.54100000000000004,"15min":0.54100000000000004},"min":{"1min":0.41399999999999998,"5min":0.41399999999999998,"15min":0.41399999999999998},"max":{"1min":0.68799999999999994,"5min":0.68799999999999994,"15min":0.68799999999999994},"last":0.65400000000000003},{"interface":"front","average":{"1min":0.52400000000000002,"5min":0.52400000000000002,"15min":0.52400000000000002},"min":{"1min":0.41499999999999998,"5min":0.41499999999999998,"15min":0.41499999999999998},"max":{"1min":0.748,"5min":0.748,"15min":0.748},"last":0.56699999999999995}]},{"osd":4,"last update":"Tue Sep 17 08:11:50 2024","interfaces":[{"interface":"back","average":{"1min":0.52000000000000002,"5min":0.52000000000000002,"15min":0.52000000000000002},"min":{"1min":0.41499999999999998,"5min":0.41499999999999998,"15min":0.41499999999999998},"max":{"1min":0.68300000000000005,"5min":0.68300000000000005,"15min":0.68300000000000005},"last":0.624},{"interface":"front","average":{"1min":0.53600000000000003,"5min":0.53600000000000003,"15min":0.53600000000000003},"min":{"1min":0.433,"5min":0.433,"15min":0.433},"max":{"1min":0.69299999999999995,"5min":0.69299999999999995,"15min":0.69299999999999995},"last":0.59399999999999997}]},{"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.60799999999999998}]}]}],"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-17T08:11:55.253 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph pg dump --format=json 2024-09-17T08:11:55.460 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T08:11:55.581 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:55 smithi044 ceph-mon[29204]: pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:55.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:55 smithi145 ceph-mon[32346]: pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:55.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:55 smithi152 ceph-mon[32920]: pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:56.534 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:56 smithi044 ceph-mon[29204]: from='client.14451 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:11:56.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:56 smithi145 ceph-mon[32346]: from='client.14451 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:11:56.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:56 smithi152 ceph-mon[32920]: from='client.14451 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:11:57.215 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:11:57.215 INFO:teuthology.orchestra.run.smithi044.stderr:dumped all 2024-09-17T08:11:57.565 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:57 smithi044 ceph-mon[29204]: pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:57.565 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:57 smithi044 ceph-mon[29204]: from='client.14457 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:11:57.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:57 smithi145 ceph-mon[32346]: pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:57.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:57 smithi145 ceph-mon[32346]: from='client.14457 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:11:57.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:57 smithi152 ceph-mon[32920]: pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:57.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:57 smithi152 ceph-mon[32920]: from='client.14457 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:11:57.863 INFO:teuthology.orchestra.run.smithi044.stdout:{"pg_ready":true,"pg_map":{"version":158,"stamp":"2024-09-17T08:11:56.352453+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":166264,"kb_used_data":4140,"kb_used_omap":9,"kb_used_meta":162038,"kb_avail":562304648,"statfs":{"total":575970213888,"available":575799959552,"internally_reserved":0,"allocated":4239360,"data_stored":2731764,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9562,"internal_metadata":165927590},"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.002114"},"pg_stats":[{"pgid":"1.0","version":"22'137","reported_seq":266,"reported_epoch":45,"state":"active+clean","last_fresh":"2024-09-17T08:11:17.232481+0000","last_change":"2024-09-17T08:11:17.232481+0000","last_active":"2024-09-17T08:11:17.232481+0000","last_peered":"2024-09-17T08:11:17.232481+0000","last_clean":"2024-09-17T08:11:17.232481+0000","last_became_active":"2024-09-17T08:11:17.232135+0000","last_became_peered":"2024-09-17T08:11:17.232135+0000","last_unstale":"2024-09-17T08:11:17.232481+0000","last_undegraded":"2024-09-17T08:11:17.232481+0000","last_fullsized":"2024-09-17T08:11:17.232481+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-17T08:10:07.195356+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-17T08:10:07.195356+0000","last_clean_scrub_stamp":"2024-09-17T08:10:07.195356+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-18T16:14:52.355293+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":28004,"kb_used_data":980,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717148,"statfs":{"total":95995035648,"available":95966359552,"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.51800000000000002}]},{"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.45700000000000002}]},{"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.55000000000000004}]},{"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.502}]},{"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.313}]}]},{"osd":4,"up_from":33,"seq":141733920782,"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":"Tue Sep 17 08:11:50 2024","interfaces":[{"interface":"back","average":{"1min":0.46600000000000003,"5min":0.46600000000000003,"15min":0.46600000000000003},"min":{"1min":0.33900000000000002,"5min":0.33900000000000002,"15min":0.33900000000000002},"max":{"1min":0.61599999999999999,"5min":0.61599999999999999,"15min":0.61599999999999999},"last":0.45100000000000001},{"interface":"front","average":{"1min":0.47899999999999998,"5min":0.47899999999999998,"15min":0.47899999999999998},"min":{"1min":0.33400000000000002,"5min":0.33400000000000002,"15min":0.33400000000000002},"max":{"1min":0.64600000000000002,"5min":0.64600000000000002,"15min":0.64600000000000002},"last":0.433}]},{"osd":1,"last update":"Tue Sep 17 08:11:50 2024","interfaces":[{"interface":"back","average":{"1min":0.46000000000000002,"5min":0.46000000000000002,"15min":0.46000000000000002},"min":{"1min":0.315,"5min":0.315,"15min":0.315},"max":{"1min":0.60199999999999998,"5min":0.60199999999999998,"15min":0.60199999999999998},"last":0.40999999999999998},{"interface":"front","average":{"1min":0.47899999999999998,"5min":0.47899999999999998,"15min":0.47899999999999998},"min":{"1min":0.29999999999999999,"5min":0.29999999999999999,"15min":0.29999999999999999},"max":{"1min":0.67600000000000005,"5min":0.67600000000000005,"15min":0.67600000000000005},"last":0.376}]},{"osd":2,"last update":"Tue Sep 17 08:11:50 2024","interfaces":[{"interface":"back","average":{"1min":0.53300000000000003,"5min":0.53300000000000003,"15min":0.53300000000000003},"min":{"1min":0.46600000000000003,"5min":0.46600000000000003,"15min":0.46600000000000003},"max":{"1min":0.65100000000000002,"5min":0.65100000000000002,"15min":0.65100000000000002},"last":0.56999999999999995},{"interface":"front","average":{"1min":0.52200000000000002,"5min":0.52200000000000002,"15min":0.52200000000000002},"min":{"1min":0.38800000000000001,"5min":0.38800000000000001,"15min":0.38800000000000001},"max":{"1min":0.626,"5min":0.626,"15min":0.626},"last":0.626}]},{"osd":3,"last update":"Tue Sep 17 08:11:50 2024","interfaces":[{"interface":"back","average":{"1min":0.50900000000000001,"5min":0.50900000000000001,"15min":0.50900000000000001},"min":{"1min":0.40899999999999997,"5min":0.40899999999999997,"15min":0.40899999999999997},"max":{"1min":0.64600000000000002,"5min":0.64600000000000002,"15min":0.64600000000000002},"last":0.54800000000000004},{"interface":"front","average":{"1min":0.55400000000000005,"5min":0.55400000000000005,"15min":0.55400000000000005},"min":{"1min":0.44,"5min":0.44,"15min":0.44},"max":{"1min":0.70699999999999996,"5min":0.70699999999999996,"15min":0.70699999999999996},"last":0.59299999999999997}]},{"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.504}]}]},{"osd":3,"up_from":25,"seq":107374182419,"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":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":"Tue Sep 17 08:11:30 2024","interfaces":[{"interface":"back","average":{"1min":0.49099999999999999,"5min":0.49099999999999999,"15min":0.49099999999999999},"min":{"1min":0.308,"5min":0.308,"15min":0.308},"max":{"1min":0.70699999999999996,"5min":0.70699999999999996,"15min":0.70699999999999996},"last":0.379},{"interface":"front","average":{"1min":0.51800000000000002,"5min":0.51800000000000002,"15min":0.51800000000000002},"min":{"1min":0.375,"5min":0.375,"15min":0.375},"max":{"1min":0.78600000000000003,"5min":0.78600000000000003,"15min":0.78600000000000003},"last":0.36199999999999999}]},{"osd":1,"last update":"Tue Sep 17 08:11:30 2024","interfaces":[{"interface":"back","average":{"1min":0.52700000000000002,"5min":0.52700000000000002,"15min":0.52700000000000002},"min":{"1min":0.32200000000000001,"5min":0.32200000000000001,"15min":0.32200000000000001},"max":{"1min":0.76900000000000002,"5min":0.76900000000000002,"15min":0.76900000000000002},"last":0.42899999999999999},{"interface":"front","average":{"1min":0.51800000000000002,"5min":0.51800000000000002,"15min":0.51800000000000002},"min":{"1min":0.33100000000000002,"5min":0.33100000000000002,"15min":0.33100000000000002},"max":{"1min":0.80000000000000004,"5min":0.80000000000000004,"15min":0.80000000000000004},"last":0.41399999999999998}]},{"osd":2,"last update":"Tue Sep 17 08:11:30 2024","interfaces":[{"interface":"back","average":{"1min":0.38700000000000001,"5min":0.38700000000000001,"15min":0.38700000000000001},"min":{"1min":0.27300000000000002,"5min":0.27300000000000002,"15min":0.27300000000000002},"max":{"1min":0.54700000000000004,"5min":0.54700000000000004,"15min":0.54700000000000004},"last":0.33000000000000002},{"interface":"front","average":{"1min":0.39600000000000002,"5min":0.39600000000000002,"15min":0.39600000000000002},"min":{"1min":0.29899999999999999,"5min":0.29899999999999999,"15min":0.29899999999999999},"max":{"1min":0.52200000000000002,"5min":0.52200000000000002,"15min":0.52200000000000002},"last":0.40000000000000002}]},{"osd":4,"last update":"Tue Sep 17 08:11:53 2024","interfaces":[{"interface":"back","average":{"1min":0.53200000000000003,"5min":0.53200000000000003,"15min":0.53200000000000003},"min":{"1min":0.40799999999999997,"5min":0.40799999999999997,"15min":0.40799999999999997},"max":{"1min":0.754,"5min":0.754,"15min":0.754},"last":0.496},{"interface":"front","average":{"1min":0.56000000000000005,"5min":0.56000000000000005,"15min":0.56000000000000005},"min":{"1min":0.45300000000000001,"5min":0.45300000000000001,"15min":0.45300000000000001},"max":{"1min":0.70899999999999996,"5min":0.70899999999999996,"15min":0.70899999999999996},"last":0.53800000000000003}]},{"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.56999999999999995}]}]},{"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":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,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":"Tue Sep 17 08:11:10 2024","interfaces":[{"interface":"back","average":{"1min":0.54000000000000004,"5min":0.54000000000000004,"15min":0.54000000000000004},"min":{"1min":0.38500000000000001,"5min":0.38500000000000001,"15min":0.38500000000000001},"max":{"1min":0.90400000000000003,"5min":0.90400000000000003,"15min":0.90400000000000003},"last":0.41099999999999998},{"interface":"front","average":{"1min":0.52700000000000002,"5min":0.52700000000000002,"15min":0.52700000000000002},"min":{"1min":0.34699999999999998,"5min":0.34699999999999998,"15min":0.34699999999999998},"max":{"1min":0.84499999999999997,"5min":0.84499999999999997,"15min":0.84499999999999997},"last":0.307}]},{"osd":1,"last update":"Tue Sep 17 08:11:10 2024","interfaces":[{"interface":"back","average":{"1min":0.52900000000000003,"5min":0.52900000000000003,"15min":0.52900000000000003},"min":{"1min":0.33600000000000002,"5min":0.33600000000000002,"15min":0.33600000000000002},"max":{"1min":0.88900000000000001,"5min":0.88900000000000001,"15min":0.88900000000000001},"last":0.35699999999999998},{"interface":"front","average":{"1min":0.53500000000000003,"5min":0.53500000000000003,"15min":0.53500000000000003},"min":{"1min":0.35499999999999998,"5min":0.35499999999999998,"15min":0.35499999999999998},"max":{"1min":0.94599999999999995,"5min":0.94599999999999995,"15min":0.94599999999999995},"last":0.37}]},{"osd":3,"last update":"Tue Sep 17 08:11:29 2024","interfaces":[{"interface":"back","average":{"1min":0.34200000000000003,"5min":0.34200000000000003,"15min":0.34200000000000003},"min":{"1min":0.27200000000000002,"5min":0.27200000000000002,"15min":0.27200000000000002},"max":{"1min":0.45100000000000001,"5min":0.45100000000000001,"15min":0.45100000000000001},"last":0.32200000000000001},{"interface":"front","average":{"1min":0.35199999999999998,"5min":0.35199999999999998,"15min":0.35199999999999998},"min":{"1min":0.28399999999999997,"5min":0.28399999999999997,"15min":0.28399999999999997},"max":{"1min":0.46700000000000003,"5min":0.46700000000000003,"15min":0.46700000000000003},"last":0.34000000000000002}]},{"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.49099999999999999}]},{"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":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":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,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":"Tue Sep 17 08:11:49 2024","interfaces":[{"interface":"back","average":{"1min":0.32200000000000001,"5min":0.32100000000000001,"15min":0.32100000000000001},"min":{"1min":0.20399999999999999,"5min":0.20399999999999999,"15min":0.20399999999999999},"max":{"1min":0.42799999999999999,"5min":0.53800000000000003,"15min":0.53800000000000003},"last":0.27600000000000002},{"interface":"front","average":{"1min":0.318,"5min":0.33900000000000002,"15min":0.34300000000000003},"min":{"1min":0.22900000000000001,"5min":0.22900000000000001,"15min":0.22900000000000001},"max":{"1min":0.45300000000000001,"5min":0.625,"15min":0.625},"last":0.22}]},{"osd":2,"last update":"Tue Sep 17 08:11:06 2024","interfaces":[{"interface":"back","average":{"1min":0.53100000000000003,"5min":0.53100000000000003,"15min":0.53100000000000003},"min":{"1min":0.38100000000000001,"5min":0.38100000000000001,"15min":0.38100000000000001},"max":{"1min":0.66000000000000003,"5min":0.66000000000000003,"15min":0.66000000000000003},"last":0.54400000000000004},{"interface":"front","average":{"1min":0.53100000000000003,"5min":0.53100000000000003,"15min":0.53100000000000003},"min":{"1min":0.38800000000000001,"5min":0.38800000000000001,"15min":0.38800000000000001},"max":{"1min":0.70899999999999996,"5min":0.70899999999999996,"15min":0.70899999999999996},"last":0.51500000000000001}]},{"osd":3,"last update":"Tue Sep 17 08:11:30 2024","interfaces":[{"interface":"back","average":{"1min":0.58599999999999997,"5min":0.58599999999999997,"15min":0.58599999999999997},"min":{"1min":0.38400000000000001,"5min":0.38400000000000001,"15min":0.38400000000000001},"max":{"1min":0.70699999999999996,"5min":0.70699999999999996,"15min":0.70699999999999996},"last":0.56100000000000005},{"interface":"front","average":{"1min":0.56100000000000005,"5min":0.56100000000000005,"15min":0.56100000000000005},"min":{"1min":0.35699999999999998,"5min":0.35699999999999998,"15min":0.35699999999999998},"max":{"1min":0.67700000000000005,"5min":0.67700000000000005,"15min":0.67700000000000005},"last":0.53200000000000003}]},{"osd":4,"last update":"Tue Sep 17 08:11:55 2024","interfaces":[{"interface":"back","average":{"1min":0.54700000000000004,"5min":0.54700000000000004,"15min":0.54700000000000004},"min":{"1min":0.41499999999999998,"5min":0.41499999999999998,"15min":0.41499999999999998},"max":{"1min":0.70099999999999996,"5min":0.70099999999999996,"15min":0.70099999999999996},"last":0.44900000000000001},{"interface":"front","average":{"1min":0.54200000000000004,"5min":0.54200000000000004,"15min":0.54200000000000004},"min":{"1min":0.40799999999999997,"5min":0.40799999999999997,"15min":0.40799999999999997},"max":{"1min":0.69999999999999996,"5min":0.69999999999999996,"15min":0.69999999999999996},"last":0.495}]},{"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.435}]}]},{"osd":0,"up_from":8,"seq":34359738401,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":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":[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":"Tue Sep 17 08:11:50 2024","interfaces":[{"interface":"back","average":{"1min":0.32600000000000001,"5min":0.34499999999999997,"15min":0.34799999999999998},"min":{"1min":0.27300000000000002,"5min":0.23400000000000001,"15min":0.23400000000000001},"max":{"1min":0.48299999999999998,"5min":0.58399999999999996,"15min":0.58399999999999996},"last":0.32100000000000001},{"interface":"front","average":{"1min":0.33600000000000002,"5min":0.35399999999999998,"15min":0.35699999999999998},"min":{"1min":0.24199999999999999,"5min":0.24199999999999999,"15min":0.24199999999999999},"max":{"1min":0.51200000000000001,"5min":0.55000000000000004,"15min":0.55000000000000004},"last":0.34999999999999998}]},{"osd":2,"last update":"Tue Sep 17 08:11:07 2024","interfaces":[{"interface":"back","average":{"1min":0.51500000000000001,"5min":0.51500000000000001,"15min":0.51500000000000001},"min":{"1min":0.38900000000000001,"5min":0.38900000000000001,"15min":0.38900000000000001},"max":{"1min":0.68400000000000005,"5min":0.68400000000000005,"15min":0.68400000000000005},"last":0.55400000000000005},{"interface":"front","average":{"1min":0.54300000000000004,"5min":0.54300000000000004,"15min":0.54300000000000004},"min":{"1min":0.41099999999999998,"5min":0.41099999999999998,"15min":0.41099999999999998},"max":{"1min":0.71599999999999997,"5min":0.71599999999999997,"15min":0.71599999999999997},"last":0.66800000000000004}]},{"osd":3,"last update":"Tue Sep 17 08:11:31 2024","interfaces":[{"interface":"back","average":{"1min":0.54100000000000004,"5min":0.54100000000000004,"15min":0.54100000000000004},"min":{"1min":0.41399999999999998,"5min":0.41399999999999998,"15min":0.41399999999999998},"max":{"1min":0.68799999999999994,"5min":0.68799999999999994,"15min":0.68799999999999994},"last":0.65400000000000003},{"interface":"front","average":{"1min":0.52400000000000002,"5min":0.52400000000000002,"15min":0.52400000000000002},"min":{"1min":0.41499999999999998,"5min":0.41499999999999998,"15min":0.41499999999999998},"max":{"1min":0.748,"5min":0.748,"15min":0.748},"last":0.56699999999999995}]},{"osd":4,"last update":"Tue Sep 17 08:11:50 2024","interfaces":[{"interface":"back","average":{"1min":0.52000000000000002,"5min":0.52000000000000002,"15min":0.52000000000000002},"min":{"1min":0.41499999999999998,"5min":0.41499999999999998,"15min":0.41499999999999998},"max":{"1min":0.68300000000000005,"5min":0.68300000000000005,"15min":0.68300000000000005},"last":0.624},{"interface":"front","average":{"1min":0.53600000000000003,"5min":0.53600000000000003,"15min":0.53600000000000003},"min":{"1min":0.433,"5min":0.433,"15min":0.433},"max":{"1min":0.69299999999999995,"5min":0.69299999999999995,"15min":0.69299999999999995},"last":0.59399999999999997}]},{"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.60799999999999998}]}]}],"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-17T08:11:57.864 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-09-17T08:11:57.864 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-09-17T08:11:57.864 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-09-17T08:11:57.864 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- ceph health --format=json 2024-09-17T08:11:58.063 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T08:11:58.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:58 smithi145 ceph-mon[32346]: pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:58.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:58 smithi152 ceph-mon[32920]: pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:58.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:58 smithi044 ceph-mon[29204]: pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:11:59.699 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-09-17T08:11:59.700 INFO:teuthology.orchestra.run.smithi044.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-09-17T08:12:00.002 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:11:59 smithi145 ceph-mon[32346]: from='client.? 172.21.15.44:0/2091587675' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-17T08:12:00.025 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:11:59 smithi152 ceph-mon[32920]: from='client.? 172.21.15.44:0/2091587675' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-17T08:12:00.161 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:11:59 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/2091587675' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-17T08:12:00.345 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-09-17T08:12:00.345 INFO:tasks.cephadm:Setup complete, yielding 2024-09-17T08:12:00.345 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-17T08:12:00.356 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi044.front.sepia.ceph.com 2024-09-17T08:12:00.357 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 -- bash -c 'set -ex 2024-09-17T08:12:00.357 DEBUG:teuthology.orchestra.run.smithi044:> HOSTNAMES=$(ceph orch host ls --format json | jq -r '"'"'.[] | .hostname'"'"') 2024-09-17T08:12:00.357 DEBUG:teuthology.orchestra.run.smithi044:> for host in $HOSTNAMES; do 2024-09-17T08:12:00.357 DEBUG:teuthology.orchestra.run.smithi044:> # find the hostname for "host.c" which will have no mgr 2024-09-17T08:12:00.357 DEBUG:teuthology.orchestra.run.smithi044:> HAS_MGRS=$(ceph orch ps --hostname ${host} --format json | jq '"'"'any(.daemon_type == "mgr")'"'"') 2024-09-17T08:12:00.357 DEBUG:teuthology.orchestra.run.smithi044:> if [ "$HAS_MGRS" == "false" ]; then 2024-09-17T08:12:00.357 DEBUG:teuthology.orchestra.run.smithi044:> HOST_C="${host}" 2024-09-17T08:12:00.357 DEBUG:teuthology.orchestra.run.smithi044:> fi 2024-09-17T08:12:00.357 DEBUG:teuthology.orchestra.run.smithi044:> done 2024-09-17T08:12:00.357 DEBUG:teuthology.orchestra.run.smithi044:> # One last thing to worry about before draining the host 2024-09-17T08:12:00.357 DEBUG:teuthology.orchestra.run.smithi044:> # is that the teuthology test tends to put the explicit 2024-09-17T08:12:00.357 DEBUG:teuthology.orchestra.run.smithi044:> # hostnames in the placement for the mon service. 2024-09-17T08:12:00.358 DEBUG:teuthology.orchestra.run.smithi044:> # We want to make sure we can drain without providing 2024-09-17T08:12:00.358 DEBUG:teuthology.orchestra.run.smithi044:> # --force and there is a check for the host being removed 2024-09-17T08:12:00.358 DEBUG:teuthology.orchestra.run.smithi044:> # being listed explicitly in the placements. Therefore, 2024-09-17T08:12:00.358 DEBUG:teuthology.orchestra.run.smithi044:> # we should remove it from the mon placement. 2024-09-17T08:12:00.358 DEBUG:teuthology.orchestra.run.smithi044:> ceph orch ls mon --export > mon.yaml 2024-09-17T08:12:00.358 DEBUG:teuthology.orchestra.run.smithi044:> sed /"$HOST_C"/d mon.yaml > mon_adjusted.yaml 2024-09-17T08:12:00.358 DEBUG:teuthology.orchestra.run.smithi044:> ceph orch apply -i mon_adjusted.yaml 2024-09-17T08:12:00.358 DEBUG:teuthology.orchestra.run.smithi044:> # now drain that host 2024-09-17T08:12:00.358 DEBUG:teuthology.orchestra.run.smithi044:> ceph orch host drain $HOST_C --zap-osd-devices 2024-09-17T08:12:00.358 DEBUG:teuthology.orchestra.run.smithi044:> # wait for drain to complete 2024-09-17T08:12:00.358 DEBUG:teuthology.orchestra.run.smithi044:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-09-17T08:12:00.358 DEBUG:teuthology.orchestra.run.smithi044:> while [ "$HOST_C_DAEMONS" != "No daemons reported" ]; do 2024-09-17T08:12:00.358 DEBUG:teuthology.orchestra.run.smithi044:> sleep 15 2024-09-17T08:12:00.358 DEBUG:teuthology.orchestra.run.smithi044:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-09-17T08:12:00.358 DEBUG:teuthology.orchestra.run.smithi044:> done 2024-09-17T08:12:00.358 DEBUG:teuthology.orchestra.run.smithi044:> # we want to check the ability to remove the host from 2024-09-17T08:12:00.359 DEBUG:teuthology.orchestra.run.smithi044:> # the CRUSH map, so we should first verify the host is in 2024-09-17T08:12:00.359 DEBUG:teuthology.orchestra.run.smithi044:> # the CRUSH map. 2024-09-17T08:12:00.359 DEBUG:teuthology.orchestra.run.smithi044:> ceph osd getcrushmap -o compiled-crushmap 2024-09-17T08:12:00.359 DEBUG:teuthology.orchestra.run.smithi044:> crushtool -d compiled-crushmap -o crushmap.txt 2024-09-17T08:12:00.359 DEBUG:teuthology.orchestra.run.smithi044:> CRUSH_MAP=$(cat crushmap.txt) 2024-09-17T08:12:00.359 DEBUG:teuthology.orchestra.run.smithi044:> if ! grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-09-17T08:12:00.359 DEBUG:teuthology.orchestra.run.smithi044:> printf "Expected to see $HOST_C in CRUSH map. Saw:\n\n$CRUSH_MAP" 2024-09-17T08:12:00.359 DEBUG:teuthology.orchestra.run.smithi044:> exit 1 2024-09-17T08:12:00.359 DEBUG:teuthology.orchestra.run.smithi044:> fi 2024-09-17T08:12:00.359 DEBUG:teuthology.orchestra.run.smithi044:> # If the drain was successful, we should be able to remove the 2024-09-17T08:12:00.359 DEBUG:teuthology.orchestra.run.smithi044:> # host without force with no issues. If there are still daemons 2024-09-17T08:12:00.359 DEBUG:teuthology.orchestra.run.smithi044:> # we will get a response telling us to drain the host and a 2024-09-17T08:12:00.359 DEBUG:teuthology.orchestra.run.smithi044:> # non-zero return code 2024-09-17T08:12:00.359 DEBUG:teuthology.orchestra.run.smithi044:> ceph orch host rm $HOST_C --rm-crush-entry 2024-09-17T08:12:00.359 DEBUG:teuthology.orchestra.run.smithi044:> # verify we'"'"'ve successfully removed the host from the CRUSH map 2024-09-17T08:12:00.359 DEBUG:teuthology.orchestra.run.smithi044:> sleep 30 2024-09-17T08:12:00.360 DEBUG:teuthology.orchestra.run.smithi044:> ceph osd getcrushmap -o compiled-crushmap 2024-09-17T08:12:00.360 DEBUG:teuthology.orchestra.run.smithi044:> crushtool -d compiled-crushmap -o crushmap.txt 2024-09-17T08:12:00.360 DEBUG:teuthology.orchestra.run.smithi044:> CRUSH_MAP=$(cat crushmap.txt) 2024-09-17T08:12:00.360 DEBUG:teuthology.orchestra.run.smithi044:> if grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-09-17T08:12:00.360 DEBUG:teuthology.orchestra.run.smithi044:> printf "Saw $HOST_C in CRUSH map after it should have been removed.\n\n$CRUSH_MAP" 2024-09-17T08:12:00.360 DEBUG:teuthology.orchestra.run.smithi044:> exit 1 2024-09-17T08:12:00.360 DEBUG:teuthology.orchestra.run.smithi044:> fi 2024-09-17T08:12:00.360 DEBUG:teuthology.orchestra.run.smithi044:> ' 2024-09-17T08:12:00.563 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T08:12:00.981 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:00 smithi044 ceph-mon[29204]: pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:12:01.025 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:00 smithi152 ceph-mon[32920]: pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:12:01.252 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:00 smithi145 ceph-mon[32346]: pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:12:02.146 INFO:teuthology.orchestra.run.smithi044.stderr:++ ceph orch host ls --format json 2024-09-17T08:12:02.146 INFO:teuthology.orchestra.run.smithi044.stderr:++ jq -r '.[] | .hostname' 2024-09-17T08:12:02.321 INFO:teuthology.orchestra.run.smithi044.stderr:+ HOSTNAMES='smithi044 2024-09-17T08:12:02.321 INFO:teuthology.orchestra.run.smithi044.stderr:smithi145 2024-09-17T08:12:02.321 INFO:teuthology.orchestra.run.smithi044.stderr:smithi152' 2024-09-17T08:12:02.321 INFO:teuthology.orchestra.run.smithi044.stderr:+ for host in $HOSTNAMES 2024-09-17T08:12:02.321 INFO:teuthology.orchestra.run.smithi044.stderr:++ ceph orch ps --hostname smithi044 --format json 2024-09-17T08:12:02.321 INFO:teuthology.orchestra.run.smithi044.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-17T08:12:02.598 INFO:teuthology.orchestra.run.smithi044.stderr:+ HAS_MGRS=true 2024-09-17T08:12:02.604 INFO:teuthology.orchestra.run.smithi044.stderr:+ '[' true == false ']' 2024-09-17T08:12:02.604 INFO:teuthology.orchestra.run.smithi044.stderr:+ for host in $HOSTNAMES 2024-09-17T08:12:02.604 INFO:teuthology.orchestra.run.smithi044.stderr:++ ceph orch ps --hostname smithi145 --format json 2024-09-17T08:12:02.604 INFO:teuthology.orchestra.run.smithi044.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-17T08:12:02.876 INFO:teuthology.orchestra.run.smithi044.stderr:+ HAS_MGRS=true 2024-09-17T08:12:02.876 INFO:teuthology.orchestra.run.smithi044.stderr:+ '[' true == false ']' 2024-09-17T08:12:02.876 INFO:teuthology.orchestra.run.smithi044.stderr:+ for host in $HOSTNAMES 2024-09-17T08:12:02.876 INFO:teuthology.orchestra.run.smithi044.stderr:++ ceph orch ps --hostname smithi152 --format json 2024-09-17T08:12:02.876 INFO:teuthology.orchestra.run.smithi044.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-17T08:12:03.153 INFO:teuthology.orchestra.run.smithi044.stderr:+ HAS_MGRS=false 2024-09-17T08:12:03.154 INFO:teuthology.orchestra.run.smithi044.stderr:+ '[' false == false ']' 2024-09-17T08:12:03.154 INFO:teuthology.orchestra.run.smithi044.stderr:+ HOST_C=smithi152 2024-09-17T08:12:03.154 INFO:teuthology.orchestra.run.smithi044.stderr:+ ceph orch ls mon --export 2024-09-17T08:12:03.432 INFO:teuthology.orchestra.run.smithi044.stderr:+ sed /smithi152/d mon.yaml 2024-09-17T08:12:03.433 INFO:teuthology.orchestra.run.smithi044.stderr:+ ceph orch apply -i mon_adjusted.yaml 2024-09-17T08:12:03.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:03 smithi044 ceph-mon[29204]: from='client.14469 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:12:03.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:03 smithi044 ceph-mon[29204]: pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:12:03.704 INFO:teuthology.orchestra.run.smithi044.stdout:Scheduled mon update... 2024-09-17T08:12:03.715 INFO:teuthology.orchestra.run.smithi044.stderr:+ ceph orch host drain smithi152 --zap-osd-devices 2024-09-17T08:12:03.728 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:03 smithi152 ceph-mon[32920]: from='client.14469 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:12:03.728 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:03 smithi152 ceph-mon[32920]: pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:12:03.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:03 smithi145 ceph-mon[32346]: from='client.14469 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:12:03.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:03 smithi145 ceph-mon[32346]: pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:12:03.988 INFO:teuthology.orchestra.run.smithi044.stdout:Scheduled to remove the following daemons from host 'smithi152' 2024-09-17T08:12:03.988 INFO:teuthology.orchestra.run.smithi044.stdout:type id 2024-09-17T08:12:03.989 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------- --------------- 2024-09-17T08:12:03.989 INFO:teuthology.orchestra.run.smithi044.stdout:mon c 2024-09-17T08:12:03.989 INFO:teuthology.orchestra.run.smithi044.stdout:osd 4 2024-09-17T08:12:03.989 INFO:teuthology.orchestra.run.smithi044.stdout:osd 5 2024-09-17T08:12:04.000 INFO:teuthology.orchestra.run.smithi044.stderr:++ ceph orch ps --hostname smithi152 2024-09-17T08:12:04.280 INFO:teuthology.orchestra.run.smithi044.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-17T08:12:04.281 INFO:teuthology.orchestra.run.smithi044.stderr:mon.c smithi152 running (3m) 53s ago 3m 37.0M 2048M 18.2.4-855-g19e2a2be 980a0bfcd684 aa7844b49ba8 2024-09-17T08:12:04.281 INFO:teuthology.orchestra.run.smithi044.stderr:osd.4 smithi152 running (79s) 53s ago 79s 41.6M 10.3G 18.2.4-855-g19e2a2be 980a0bfcd684 353b2f8279e3 2024-09-17T08:12:04.281 INFO:teuthology.orchestra.run.smithi044.stderr:osd.5 smithi152 running (56s) 53s ago 56s 11.3M 10.3G 18.2.4-855-g19e2a2be 980a0bfcd684 03ee50fc4e48 ' 2024-09-17T08:12:04.281 INFO:teuthology.orchestra.run.smithi044.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-17T08:12:04.281 INFO:teuthology.orchestra.run.smithi044.stderr:mon.c smithi152 running (3m) 53s ago 3m 37.0M 2048M 18.2.4-855-g19e2a2be 980a0bfcd684 aa7844b49ba8 2024-09-17T08:12:04.281 INFO:teuthology.orchestra.run.smithi044.stderr:osd.4 smithi152 running (79s) 53s ago 79s 41.6M 10.3G 18.2.4-855-g19e2a2be 980a0bfcd684 353b2f8279e3 2024-09-17T08:12:04.281 INFO:teuthology.orchestra.run.smithi044.stderr:osd.5 smithi152 running (56s) 53s ago 56s 11.3M 10.3G 18.2.4-855-g19e2a2be 980a0bfcd684 03ee50fc4e48 ' '!=' 'No daemons reported' ']' 2024-09-17T08:12:04.281 INFO:teuthology.orchestra.run.smithi044.stderr:+ sleep 15 2024-09-17T08:12:04.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:04 smithi044 ceph-mon[29204]: from='client.14475 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi044", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:12:04.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:04 smithi044 ceph-mon[29204]: from='client.14481 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi145", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:12:04.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:04 smithi044 ceph-mon[29204]: from='client.14487 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi152", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:12:04.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:04 smithi044 ceph-mon[29204]: from='client.14493 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:12:04.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:04 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:04.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:04 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:12:04.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:04 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:04.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:04 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:04.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:04 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-17T08:12:04.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:04 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-17T08:12:04.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:04 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:12:04.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:04 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:12:04.663 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:04 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:04.663 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:04 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:04.663 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:04 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:04.663 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:04 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:04.663 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:04 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-17T08:12:04.663 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:04 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-09-17T08:12:04.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:04 smithi145 ceph-mon[32346]: from='client.14475 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi044", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:12:04.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:04 smithi145 ceph-mon[32346]: from='client.14481 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi145", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:12:04.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:04 smithi145 ceph-mon[32346]: from='client.14487 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi152", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:12:04.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:04 smithi145 ceph-mon[32346]: from='client.14493 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:12:04.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:04 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:04.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:04 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:12:04.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:04 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:04.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:04 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:04.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:04 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-17T08:12:04.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:04 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-17T08:12:04.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:04 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:12:04.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:04 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:12:04.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:04 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:04.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:04 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:04.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:04 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:04.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:04 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:04.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:04 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-17T08:12:04.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:04 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-09-17T08:12:04.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:04 smithi152 ceph-mon[32920]: from='client.14475 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi044", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:12:04.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:04 smithi152 ceph-mon[32920]: from='client.14481 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi145", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:12:04.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:04 smithi152 ceph-mon[32920]: from='client.14487 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi152", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:12:04.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:04 smithi152 ceph-mon[32920]: from='client.14493 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:12:04.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:04 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:04.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:04 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:12:04.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:04 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:04.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:04 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:04.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:04 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-17T08:12:04.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:04 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-17T08:12:04.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:04 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:12:04.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:04 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:12:04.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:04 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:04.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:04 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:04.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:04 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:04.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:04 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:04.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:04 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-17T08:12:04.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:04 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-09-17T08:12:05.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:05 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mon-a[29200]: 2024-09-17T08:12:05.160+0000 7fbad2fc6640 -1 mon.a@0(leader).osd e46 definitely_dead 0 2024-09-17T08:12:05.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:05 smithi044 ceph-mon[29204]: from='client.14499 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:12:05.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:05 smithi044 ceph-mon[29204]: Saving service mon spec with placement smithi044:172.21.15.44=a;smithi145:172.21.15.145=b;count:3 2024-09-17T08:12:05.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:05 smithi044 ceph-mon[29204]: from='client.14505 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi152", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:12:05.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:05 smithi044 ceph-mon[29204]: Added label _no_schedule to host smithi152 2024-09-17T08:12:05.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:05 smithi044 ceph-mon[29204]: Added label SpecialHostLabels.DRAIN_CONF_KEYRING to host smithi152 2024-09-17T08:12:05.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:05 smithi044 ceph-mon[29204]: osd.4 crush weight is 0.0872955322265625 2024-09-17T08:12:05.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:05 smithi044 ceph-mon[29204]: osd.5 crush weight is 0.0872955322265625 2024-09-17T08:12:05.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:05 smithi044 ceph-mon[29204]: Removing smithi152:/var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T08:12:05.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:05 smithi044 ceph-mon[29204]: Removing smithi152:/etc/ceph/ceph.client.admin.keyring 2024-09-17T08:12:05.663 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:05 smithi044 ceph-mon[29204]: Removing smithi152:/var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T08:12:05.663 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:05 smithi044 ceph-mon[29204]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:05.663 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:05 smithi044 ceph-mon[29204]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:05.663 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:05 smithi044 ceph-mon[29204]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-17T08:12:05.663 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:05 smithi044 ceph-mon[29204]: from='client.14511 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi152", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:12:05.663 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:05 smithi044 ceph-mon[29204]: pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:12:05.663 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:05 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-17T08:12:05.663 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:05 smithi044 ceph-mon[29204]: osdmap e46: 6 total, 6 up, 6 in 2024-09-17T08:12:05.663 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:05 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:05.663 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:05 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-17T08:12:05.663 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:05 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-09-17T08:12:05.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:05 smithi145 ceph-mon[32346]: from='client.14499 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:12:05.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:05 smithi145 ceph-mon[32346]: Saving service mon spec with placement smithi044:172.21.15.44=a;smithi145:172.21.15.145=b;count:3 2024-09-17T08:12:05.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:05 smithi145 ceph-mon[32346]: from='client.14505 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi152", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:12:05.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:05 smithi145 ceph-mon[32346]: Added label _no_schedule to host smithi152 2024-09-17T08:12:05.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:05 smithi145 ceph-mon[32346]: Added label SpecialHostLabels.DRAIN_CONF_KEYRING to host smithi152 2024-09-17T08:12:05.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:05 smithi145 ceph-mon[32346]: osd.4 crush weight is 0.0872955322265625 2024-09-17T08:12:05.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:05 smithi145 ceph-mon[32346]: osd.5 crush weight is 0.0872955322265625 2024-09-17T08:12:05.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:05 smithi145 ceph-mon[32346]: Removing smithi152:/var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T08:12:05.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:05 smithi145 ceph-mon[32346]: Removing smithi152:/etc/ceph/ceph.client.admin.keyring 2024-09-17T08:12:05.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:05 smithi145 ceph-mon[32346]: Removing smithi152:/var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T08:12:05.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:05 smithi145 ceph-mon[32346]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:05.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:05 smithi145 ceph-mon[32346]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:05.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:05 smithi145 ceph-mon[32346]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-17T08:12:05.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:05 smithi145 ceph-mon[32346]: from='client.14511 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi152", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:12:05.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:05 smithi145 ceph-mon[32346]: pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:12:05.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:05 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-17T08:12:05.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:05 smithi145 ceph-mon[32346]: osdmap e46: 6 total, 6 up, 6 in 2024-09-17T08:12:05.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:05 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:05.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:05 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-17T08:12:05.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:05 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-09-17T08:12:05.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:05 smithi152 ceph-mon[32920]: from='client.14499 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:12:05.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:05 smithi152 ceph-mon[32920]: Saving service mon spec with placement smithi044:172.21.15.44=a;smithi145:172.21.15.145=b;count:3 2024-09-17T08:12:05.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:05 smithi152 ceph-mon[32920]: from='client.14505 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi152", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:12:05.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:05 smithi152 ceph-mon[32920]: Added label _no_schedule to host smithi152 2024-09-17T08:12:05.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:05 smithi152 ceph-mon[32920]: Added label SpecialHostLabels.DRAIN_CONF_KEYRING to host smithi152 2024-09-17T08:12:05.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:05 smithi152 ceph-mon[32920]: osd.4 crush weight is 0.0872955322265625 2024-09-17T08:12:05.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:05 smithi152 ceph-mon[32920]: osd.5 crush weight is 0.0872955322265625 2024-09-17T08:12:05.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:05 smithi152 ceph-mon[32920]: Removing smithi152:/var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T08:12:05.776 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:05 smithi152 ceph-mon[32920]: Removing smithi152:/etc/ceph/ceph.client.admin.keyring 2024-09-17T08:12:05.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:05 smithi152 ceph-mon[32920]: Removing smithi152:/var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T08:12:05.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:05 smithi152 ceph-mon[32920]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:05.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:05 smithi152 ceph-mon[32920]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:05.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:05 smithi152 ceph-mon[32920]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-17T08:12:05.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:05 smithi152 ceph-mon[32920]: from='client.14511 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi152", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:12:05.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:05 smithi152 ceph-mon[32920]: pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:12:05.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:05 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-17T08:12:05.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:05 smithi152 ceph-mon[32920]: osdmap e46: 6 total, 6 up, 6 in 2024-09-17T08:12:05.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:05 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:05.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:05 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-17T08:12:05.777 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:05 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-09-17T08:12:06.681 INFO:journalctl@ceph.osd.4.smithi152.stdout:Sep 17 08:12:06 smithi152 systemd[1]: Stopping Ceph osd.4 for ad90ed3e-74cb-11ef-bceb-c7b262605968... 2024-09-17T08:12:06.681 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:06 smithi152 ceph-mon[32920]: osd.5 weight is now 0.0 2024-09-17T08:12:06.681 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:06 smithi152 ceph-mon[32920]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:06.681 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:06 smithi152 ceph-mon[32920]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-17T08:12:06.681 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:06 smithi152 ceph-mon[32920]: Health check failed: 1 osds down (OSD_DOWN) 2024-09-17T08:12:06.681 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:06 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-17T08:12:06.681 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:06 smithi152 ceph-mon[32920]: osdmap e47: 6 total, 5 up, 6 in 2024-09-17T08:12:06.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:06 smithi145 ceph-mon[32346]: osd.5 weight is now 0.0 2024-09-17T08:12:06.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:06 smithi145 ceph-mon[32346]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:06.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:06 smithi145 ceph-mon[32346]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-17T08:12:06.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:06 smithi145 ceph-mon[32346]: Health check failed: 1 osds down (OSD_DOWN) 2024-09-17T08:12:06.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:06 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-17T08:12:06.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:06 smithi145 ceph-mon[32346]: osdmap e47: 6 total, 5 up, 6 in 2024-09-17T08:12:06.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:06 smithi044 ceph-mon[29204]: osd.5 weight is now 0.0 2024-09-17T08:12:06.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:06 smithi044 ceph-mon[29204]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:06.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:06 smithi044 ceph-mon[29204]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-17T08:12:06.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:06 smithi044 ceph-mon[29204]: Health check failed: 1 osds down (OSD_DOWN) 2024-09-17T08:12:06.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:06 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-17T08:12:06.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:06 smithi044 ceph-mon[29204]: osdmap e47: 6 total, 5 up, 6 in 2024-09-17T08:12:07.025 INFO:journalctl@ceph.osd.4.smithi152.stdout:Sep 17 08:12:06 smithi152 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-4[37173]: 2024-09-17T08:12:06.679+0000 7f9ed83cd640 -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-17T08:12:07.025 INFO:journalctl@ceph.osd.4.smithi152.stdout:Sep 17 08:12:06 smithi152 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-4[37173]: 2024-09-17T08:12:06.679+0000 7f9ed83cd640 -1 osd.4 46 *** Got signal Terminated *** 2024-09-17T08:12:07.025 INFO:journalctl@ceph.osd.4.smithi152.stdout:Sep 17 08:12:06 smithi152 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-4[37173]: 2024-09-17T08:12:06.679+0000 7f9ed83cd640 -1 osd.4 46 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-17T08:12:07.479 INFO:journalctl@ceph.osd.4.smithi152.stdout:Sep 17 08:12:07 smithi152 podman[46524]: 2024-09-17 08:12:07.201101273 +0000 UTC m=+0.627854210 container died 353b2f8279e3b63fabb73eb0b19096c998cd504aeac84f7ab7bd38b3a5a8ef34 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-4, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, RELEASE=reef-19e2a2b, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, org.label-schema.license=GPLv2, ceph=True) 2024-09-17T08:12:07.480 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:07 smithi152 ceph-mon[32920]: osd.4 now down 2024-09-17T08:12:07.480 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:07 smithi152 ceph-mon[32920]: Removing daemon osd.4 from smithi152 -- ports [] 2024-09-17T08:12:07.480 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:07 smithi152 ceph-mon[32920]: pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:12:07.480 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:07 smithi152 ceph-mon[32920]: osdmap e48: 6 total, 5 up, 6 in 2024-09-17T08:12:07.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:07 smithi145 ceph-mon[32346]: osd.4 now down 2024-09-17T08:12:07.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:07 smithi145 ceph-mon[32346]: Removing daemon osd.4 from smithi152 -- ports [] 2024-09-17T08:12:07.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:07 smithi145 ceph-mon[32346]: pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:12:07.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:07 smithi145 ceph-mon[32346]: osdmap e48: 6 total, 5 up, 6 in 2024-09-17T08:12:07.775 INFO:journalctl@ceph.osd.4.smithi152.stdout:Sep 17 08:12:07 smithi152 podman[46524]: 2024-09-17 08:12:07.637948439 +0000 UTC m=+1.064701366 container cleanup 353b2f8279e3b63fabb73eb0b19096c998cd504aeac84f7ab7bd38b3a5a8ef34 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-4, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, RELEASE=reef-19e2a2b, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True) 2024-09-17T08:12:07.775 INFO:journalctl@ceph.osd.4.smithi152.stdout:Sep 17 08:12:07 smithi152 bash[46524]: ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-4 2024-09-17T08:12:07.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:07 smithi044 ceph-mon[29204]: osd.4 now down 2024-09-17T08:12:07.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:07 smithi044 ceph-mon[29204]: Removing daemon osd.4 from smithi152 -- ports [] 2024-09-17T08:12:07.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:07 smithi044 ceph-mon[29204]: pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:12:07.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:07 smithi044 ceph-mon[29204]: osdmap e48: 6 total, 5 up, 6 in 2024-09-17T08:12:08.275 INFO:journalctl@ceph.osd.4.smithi152.stdout:Sep 17 08:12:07 smithi152 podman[46538]: 2024-09-17 08:12:07.864516752 +0000 UTC m=+0.656155617 container remove 353b2f8279e3b63fabb73eb0b19096c998cd504aeac84f7ab7bd38b3a5a8ef34 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-4, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , ceph=True, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=reef-19e2a2b, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2) 2024-09-17T08:12:08.584 INFO:journalctl@ceph.osd.4.smithi152.stdout:Sep 17 08:12:08 smithi152 podman[46631]: 2024-09-17 08:12:08.195910749 +0000 UTC m=+0.016292309 image pull 980a0bfcd684674f25c08d857ad8de3b1c8ae738870529edbf9aa463832c8d89 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9 2024-09-17T08:12:08.585 INFO:journalctl@ceph.osd.4.smithi152.stdout:Sep 17 08:12:08 smithi152 podman[46631]: 2024-09-17 08:12:08.315347318 +0000 UTC m=+0.135728869 container create 268d7b21bb2456603ca5a27c7e8c5963b042f9072a539a86e361f49b91994719 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-4-deactivate, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, RELEASE=reef-19e2a2b, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, io.buildah.version=1.37.2) 2024-09-17T08:12:08.585 INFO:journalctl@ceph.osd.4.smithi152.stdout:Sep 17 08:12:08 smithi152 podman[46631]: 2024-09-17 08:12:08.509719507 +0000 UTC m=+0.330101067 container init 268d7b21bb2456603ca5a27c7e8c5963b042f9072a539a86e361f49b91994719 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-4-deactivate, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.license=GPLv2, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, RELEASE=reef-19e2a2b, GIT_CLEAN=True, CEPH_POINT_RELEASE=, ceph=True, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux ) 2024-09-17T08:12:08.585 INFO:journalctl@ceph.osd.4.smithi152.stdout:Sep 17 08:12:08 smithi152 podman[46631]: 2024-09-17 08:12:08.513042597 +0000 UTC m=+0.333424147 container start 268d7b21bb2456603ca5a27c7e8c5963b042f9072a539a86e361f49b91994719 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-4-deactivate, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, io.buildah.version=1.37.2, ceph=True, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , RELEASE=reef-19e2a2b, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS) 2024-09-17T08:12:08.585 INFO:journalctl@ceph.osd.4.smithi152.stdout:Sep 17 08:12:08 smithi152 podman[46631]: 2024-09-17 08:12:08.584758862 +0000 UTC m=+0.405140432 container attach 268d7b21bb2456603ca5a27c7e8c5963b042f9072a539a86e361f49b91994719 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-4-deactivate, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.build-date=20240731, RELEASE=reef-19e2a2b, ceph=True, io.buildah.version=1.37.2, GIT_CLEAN=True, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2) 2024-09-17T08:12:09.025 INFO:journalctl@ceph.osd.4.smithi152.stdout:Sep 17 08:12:08 smithi152 podman[46631]: 2024-09-17 08:12:08.70799066 +0000 UTC m=+0.528372210 container died 268d7b21bb2456603ca5a27c7e8c5963b042f9072a539a86e361f49b91994719 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-4-deactivate, ceph=True, maintainer=Guillaume Abrioux , GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, GIT_CLEAN=True, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, RELEASE=reef-19e2a2b, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-17T08:12:09.502 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:09 smithi145 ceph-mon[32346]: osdmap e49: 6 total, 5 up, 6 in 2024-09-17T08:12:09.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:09 smithi145 ceph-mon[32346]: pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:12:09.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:09 smithi152 ceph-mon[32920]: osdmap e49: 6 total, 5 up, 6 in 2024-09-17T08:12:09.525 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:09 smithi152 ceph-mon[32920]: pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:12:09.525 INFO:journalctl@ceph.osd.4.smithi152.stdout:Sep 17 08:12:09 smithi152 podman[46654]: 2024-09-17 08:12:09.280353143 +0000 UTC m=+0.566147021 container remove 268d7b21bb2456603ca5a27c7e8c5963b042f9072a539a86e361f49b91994719 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-4-deactivate, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, GIT_CLEAN=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, RELEASE=reef-19e2a2b, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2) 2024-09-17T08:12:09.525 INFO:journalctl@ceph.osd.4.smithi152.stdout:Sep 17 08:12:09 smithi152 systemd[1]: ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@osd.4.service: Deactivated successfully. 2024-09-17T08:12:09.525 INFO:journalctl@ceph.osd.4.smithi152.stdout:Sep 17 08:12:09 smithi152 systemd[1]: Stopped Ceph osd.4 for ad90ed3e-74cb-11ef-bceb-c7b262605968. 2024-09-17T08:12:09.526 INFO:journalctl@ceph.osd.4.smithi152.stdout:Sep 17 08:12:09 smithi152 systemd[1]: ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@osd.4.service: Consumed 1.729s CPU time. 2024-09-17T08:12:09.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:09 smithi044 ceph-mon[29204]: osdmap e49: 6 total, 5 up, 6 in 2024-09-17T08:12:09.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:09 smithi044 ceph-mon[29204]: pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:12:10.437 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:10 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-09-17T08:12:10.437 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:10 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-17T08:12:10.437 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:10 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-09-17T08:12:10.437 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:10 smithi152 ceph-mon[32920]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-17T08:12:10.437 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:10 smithi152 ceph-mon[32920]: Cluster is now healthy 2024-09-17T08:12:10.438 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:10 smithi152 ceph-mon[32920]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-17T08:12:10.438 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:10 smithi152 ceph-mon[32920]: osdmap e50: 5 total, 5 up, 5 in 2024-09-17T08:12:10.502 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:10 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-09-17T08:12:10.502 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:10 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-17T08:12:10.502 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:10 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-09-17T08:12:10.502 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:10 smithi145 ceph-mon[32346]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-17T08:12:10.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:10 smithi145 ceph-mon[32346]: Cluster is now healthy 2024-09-17T08:12:10.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:10 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-17T08:12:10.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:10 smithi145 ceph-mon[32346]: osdmap e50: 5 total, 5 up, 5 in 2024-09-17T08:12:10.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:10 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-09-17T08:12:10.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:10 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-17T08:12:10.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:10 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-09-17T08:12:10.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:10 smithi044 ceph-mon[29204]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-17T08:12:10.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:10 smithi044 ceph-mon[29204]: Cluster is now healthy 2024-09-17T08:12:10.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:10 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-17T08:12:10.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:10 smithi044 ceph-mon[29204]: osdmap e50: 5 total, 5 up, 5 in 2024-09-17T08:12:11.275 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:11 smithi152 ceph-mon[32920]: Removing key for osd.4 2024-09-17T08:12:11.275 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:11 smithi152 ceph-mon[32920]: Successfully removed osd.4 on smithi152 2024-09-17T08:12:11.275 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:11 smithi152 ceph-mon[32920]: Successfully purged osd.4 on smithi152 2024-09-17T08:12:11.275 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:11 smithi152 ceph-mon[32920]: Zapping devices for osd.4 on smithi152 2024-09-17T08:12:11.275 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:11 smithi152 ceph-mon[32920]: pgmap v170: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-17T08:12:11.276 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:11 smithi152 ceph-mon[32920]: osdmap e51: 5 total, 5 up, 5 in 2024-09-17T08:12:11.502 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:11 smithi145 ceph-mon[32346]: Removing key for osd.4 2024-09-17T08:12:11.502 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:11 smithi145 ceph-mon[32346]: Successfully removed osd.4 on smithi152 2024-09-17T08:12:11.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:11 smithi145 ceph-mon[32346]: Successfully purged osd.4 on smithi152 2024-09-17T08:12:11.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:11 smithi145 ceph-mon[32346]: Zapping devices for osd.4 on smithi152 2024-09-17T08:12:11.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:11 smithi145 ceph-mon[32346]: pgmap v170: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-17T08:12:11.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:11 smithi145 ceph-mon[32346]: osdmap e51: 5 total, 5 up, 5 in 2024-09-17T08:12:11.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:11 smithi044 ceph-mon[29204]: Removing key for osd.4 2024-09-17T08:12:11.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:11 smithi044 ceph-mon[29204]: Successfully removed osd.4 on smithi152 2024-09-17T08:12:11.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:11 smithi044 ceph-mon[29204]: Successfully purged osd.4 on smithi152 2024-09-17T08:12:11.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:11 smithi044 ceph-mon[29204]: Zapping devices for osd.4 on smithi152 2024-09-17T08:12:11.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:11 smithi044 ceph-mon[29204]: pgmap v170: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-17T08:12:11.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:11 smithi044 ceph-mon[29204]: osdmap e51: 5 total, 5 up, 5 in 2024-09-17T08:12:12.623 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:12 smithi152 podman[47006]: 2024-09-17 08:12:12.318738724 +0000 UTC m=+0.018595821 container died aa7844b49ba8f548a13dc527feb9a80a2526cd4bea063ab24d4fd0d6c8ff5f46 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mon-c, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , RELEASE=reef-19e2a2b, org.label-schema.build-date=20240731, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True) 2024-09-17T08:12:13.275 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:12 smithi152 podman[47006]: 2024-09-17 08:12:12.915973048 +0000 UTC m=+0.615830138 container remove aa7844b49ba8f548a13dc527feb9a80a2526cd4bea063ab24d4fd0d6c8ff5f46 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mon-c, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, RELEASE=reef-19e2a2b, ceph=True, org.label-schema.schema-version=1.0, GIT_CLEAN=True) 2024-09-17T08:12:13.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:13 smithi152 systemd[1]: ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@mon.c.service: Deactivated successfully. 2024-09-17T08:12:13.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:13 smithi152 systemd[1]: Stopped Ceph mon.c for ad90ed3e-74cb-11ef-bceb-c7b262605968. 2024-09-17T08:12:13.775 INFO:journalctl@ceph.mon.c.smithi152.stdout:Sep 17 08:12:13 smithi152 systemd[1]: ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@mon.c.service: Consumed 3.034s CPU time. 2024-09-17T08:12:14.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:14 smithi044 ceph-mon[29204]: Successfully zapped devices for osd.4 on smithi152 2024-09-17T08:12:14.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:14 smithi044 ceph-mon[29204]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:14.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:14 smithi044 ceph-mon[29204]: Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-09-17T08:12:14.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:14 smithi044 ceph-mon[29204]: Removing monitor c from monmap... 2024-09-17T08:12:14.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:14 smithi044 ceph-mon[29204]: Removing daemon mon.c from smithi152 -- ports [] 2024-09-17T08:12:14.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:14 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T08:12:14.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:14 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T08:12:14.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:14 smithi044 ceph-mon[29204]: mon.b calling monitor election 2024-09-17T08:12:14.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:14 smithi044 ceph-mon[29204]: pgmap v173: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-17T08:12:14.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:14 smithi044 ceph-mon[29204]: mon.a calling monitor election 2024-09-17T08:12:14.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:14 smithi044 ceph-mon[29204]: mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-09-17T08:12:14.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:14 smithi044 ceph-mon[29204]: monmap e4: 2 mons at {a=[v2:172.21.15.44:3300/0,v1:172.21.15.44:6789/0],b=[v2:172.21.15.145:3300/0,v1:172.21.15.145:6789/0]} removed_ranks: {1} disallowed_leaders: {} 2024-09-17T08:12:14.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:14 smithi044 ceph-mon[29204]: fsmap 2024-09-17T08:12:14.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:14 smithi044 ceph-mon[29204]: osdmap e52: 5 total, 5 up, 5 in 2024-09-17T08:12:14.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:14 smithi044 ceph-mon[29204]: mgrmap e15: a(active, since 4m), standbys: b 2024-09-17T08:12:14.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:14 smithi044 ceph-mon[29204]: overall HEALTH_OK 2024-09-17T08:12:14.663 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:14 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:14.663 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:14 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:14.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:14 smithi145 ceph-mon[32346]: Successfully zapped devices for osd.4 on smithi152 2024-09-17T08:12:14.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:14 smithi145 ceph-mon[32346]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:14.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:14 smithi145 ceph-mon[32346]: Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-09-17T08:12:14.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:14 smithi145 ceph-mon[32346]: Removing monitor c from monmap... 2024-09-17T08:12:14.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:14 smithi145 ceph-mon[32346]: Removing daemon mon.c from smithi152 -- ports [] 2024-09-17T08:12:14.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:14 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T08:12:14.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:14 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T08:12:14.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:14 smithi145 ceph-mon[32346]: mon.b calling monitor election 2024-09-17T08:12:14.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:14 smithi145 ceph-mon[32346]: pgmap v173: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-17T08:12:14.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:14 smithi145 ceph-mon[32346]: mon.a calling monitor election 2024-09-17T08:12:14.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:14 smithi145 ceph-mon[32346]: mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-09-17T08:12:14.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:14 smithi145 ceph-mon[32346]: monmap e4: 2 mons at {a=[v2:172.21.15.44:3300/0,v1:172.21.15.44:6789/0],b=[v2:172.21.15.145:3300/0,v1:172.21.15.145:6789/0]} removed_ranks: {1} disallowed_leaders: {} 2024-09-17T08:12:14.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:14 smithi145 ceph-mon[32346]: fsmap 2024-09-17T08:12:14.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:14 smithi145 ceph-mon[32346]: osdmap e52: 5 total, 5 up, 5 in 2024-09-17T08:12:14.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:14 smithi145 ceph-mon[32346]: mgrmap e15: a(active, since 4m), standbys: b 2024-09-17T08:12:14.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:14 smithi145 ceph-mon[32346]: overall HEALTH_OK 2024-09-17T08:12:14.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:14 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:14.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:14 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:15.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:15 smithi044 ceph-mon[29204]: pgmap v175: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail; 119 KiB/s, 0 objects/s recovering 2024-09-17T08:12:15.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:15 smithi044 ceph-mon[29204]: osdmap e53: 5 total, 5 up, 5 in 2024-09-17T08:12:15.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:15 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:12:15.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:15 smithi145 ceph-mon[32346]: pgmap v175: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail; 119 KiB/s, 0 objects/s recovering 2024-09-17T08:12:15.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:15 smithi145 ceph-mon[32346]: osdmap e53: 5 total, 5 up, 5 in 2024-09-17T08:12:15.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:15 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:12:16.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:16 smithi044 ceph-mon[29204]: osdmap e54: 5 total, 5 up, 5 in 2024-09-17T08:12:16.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:16 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:16.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:16 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:16.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:16 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:16.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:16 smithi145 ceph-mon[32346]: osdmap e54: 5 total, 5 up, 5 in 2024-09-17T08:12:16.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:16 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:16.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:16 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:16.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:16 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:17.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:17 smithi044 ceph-mon[29204]: pgmap v177: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail; 98 KiB/s, 0 objects/s recovering 2024-09-17T08:12:17.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:17 smithi145 ceph-mon[32346]: pgmap v177: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail; 98 KiB/s, 0 objects/s recovering 2024-09-17T08:12:19.161 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:12:18 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:12:18.786+0000 7fa85348d640 -1 mgr.server reply reply (16) Device or resource busy OSD(s) 5 last reported they still store some PG data, and not all PGs are active+clean; we cannot be sure they aren't still needed. 2024-09-17T08:12:19.283 INFO:teuthology.orchestra.run.smithi044.stderr:++ ceph orch ps --hostname smithi152 2024-09-17T08:12:19.508 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:19 smithi044 ceph-mon[29204]: Detected new or changed devices on smithi152 2024-09-17T08:12:19.508 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:19 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:19.508 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:19 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:19.508 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:19 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:12:19.508 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:19 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:12:19.509 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:19 smithi044 ceph-mon[29204]: Updating smithi044:/etc/ceph/ceph.conf 2024-09-17T08:12:19.509 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:19 smithi044 ceph-mon[29204]: Updating smithi145:/etc/ceph/ceph.conf 2024-09-17T08:12:19.509 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:19 smithi044 ceph-mon[29204]: pgmap v178: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 137 MiB used, 447 GiB / 447 GiB avail; 84 KiB/s, 0 objects/s recovering 2024-09-17T08:12:19.509 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:19 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:19.509 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:19 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:19.509 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:19 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:19.509 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:19 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:19.509 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:19 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:19.509 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:19 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:19.509 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:19 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:19.509 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:19 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-17T08:12:19.509 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:19 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:19.509 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:19 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T08:12:19.510 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:19 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T08:12:19.510 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:19 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:12:19.570 INFO:teuthology.orchestra.run.smithi044.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-17T08:12:19.570 INFO:teuthology.orchestra.run.smithi044.stderr:osd.5 smithi152 running (72s) 4s ago 71s 44.5M 10.3G 18.2.4-855-g19e2a2be 980a0bfcd684 03ee50fc4e48 ' 2024-09-17T08:12:19.570 INFO:teuthology.orchestra.run.smithi044.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-17T08:12:19.570 INFO:teuthology.orchestra.run.smithi044.stderr:osd.5 smithi152 running (72s) 4s ago 71s 44.5M 10.3G 18.2.4-855-g19e2a2be 980a0bfcd684 03ee50fc4e48 ' '!=' 'No daemons reported' ']' 2024-09-17T08:12:19.570 INFO:teuthology.orchestra.run.smithi044.stderr:+ sleep 15 2024-09-17T08:12:19.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:19 smithi145 ceph-mon[32346]: Detected new or changed devices on smithi152 2024-09-17T08:12:19.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:19 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:19.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:19 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:19.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:19 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:12:19.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:19 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:12:19.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:19 smithi145 ceph-mon[32346]: Updating smithi044:/etc/ceph/ceph.conf 2024-09-17T08:12:19.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:19 smithi145 ceph-mon[32346]: Updating smithi145:/etc/ceph/ceph.conf 2024-09-17T08:12:19.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:19 smithi145 ceph-mon[32346]: pgmap v178: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 137 MiB used, 447 GiB / 447 GiB avail; 84 KiB/s, 0 objects/s recovering 2024-09-17T08:12:19.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:19 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:19.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:19 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:19.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:19 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:19.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:19 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:19.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:19 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:19.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:19 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:19.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:19 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:19.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:19 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-17T08:12:19.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:19 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:19.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:19 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T08:12:19.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:19 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T08:12:19.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:19 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:12:20.650 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:20 smithi044 ceph-mon[29204]: Updating smithi044:/var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T08:12:20.651 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:20 smithi044 ceph-mon[29204]: Updating smithi145:/var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T08:12:20.651 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:20 smithi044 ceph-mon[29204]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:20.651 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:20 smithi044 ceph-mon[29204]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:20.651 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:20 smithi044 ceph-mon[29204]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:20.651 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:20 smithi044 ceph-mon[29204]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-17T08:12:20.651 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:20 smithi044 ceph-mon[29204]: Reconfiguring mon.a (monmap changed)... 2024-09-17T08:12:20.651 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:20 smithi044 ceph-mon[29204]: Reconfiguring daemon mon.a on smithi044 2024-09-17T08:12:20.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:20 smithi145 ceph-mon[32346]: Updating smithi044:/var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T08:12:20.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:20 smithi145 ceph-mon[32346]: Updating smithi145:/var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T08:12:20.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:20 smithi145 ceph-mon[32346]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:20.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:20 smithi145 ceph-mon[32346]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:20.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:20 smithi145 ceph-mon[32346]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:20.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:20 smithi145 ceph-mon[32346]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-17T08:12:20.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:20 smithi145 ceph-mon[32346]: Reconfiguring mon.a (monmap changed)... 2024-09-17T08:12:20.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:20 smithi145 ceph-mon[32346]: Reconfiguring daemon mon.a on smithi044 2024-09-17T08:12:21.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:21 smithi044 ceph-mon[29204]: from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi152", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:12:21.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:21 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:21.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:21 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:21.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:21 smithi044 ceph-mon[29204]: Reconfiguring mgr.a (monmap changed)... 2024-09-17T08:12:21.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:21 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T08:12:21.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:21 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T08:12:21.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:21 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:12:21.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:21 smithi044 ceph-mon[29204]: Reconfiguring daemon mgr.a on smithi044 2024-09-17T08:12:21.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:21 smithi044 ceph-mon[29204]: pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-17T08:12:21.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:21 smithi145 ceph-mon[32346]: from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi152", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:12:21.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:21 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:21.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:21 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:21.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:21 smithi145 ceph-mon[32346]: Reconfiguring mgr.a (monmap changed)... 2024-09-17T08:12:21.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:21 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T08:12:21.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:21 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T08:12:21.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:21 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:12:21.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:21 smithi145 ceph-mon[32346]: Reconfiguring daemon mgr.a on smithi044 2024-09-17T08:12:21.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:21 smithi145 ceph-mon[32346]: pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-17T08:12:22.983 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:22 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:22.983 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:22 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:22.983 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:22 smithi044 ceph-mon[29204]: Reconfiguring osd.0 (monmap changed)... 2024-09-17T08:12:22.983 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:22 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-17T08:12:22.983 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:22 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:12:22.983 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:22 smithi044 ceph-mon[29204]: Reconfiguring daemon osd.0 on smithi044 2024-09-17T08:12:22.983 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:22 smithi044 ceph-mon[29204]: pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:12:23.252 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:22 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:23.252 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:22 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:23.252 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:22 smithi145 ceph-mon[32346]: Reconfiguring osd.0 (monmap changed)... 2024-09-17T08:12:23.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:22 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-17T08:12:23.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:22 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:12:23.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:22 smithi145 ceph-mon[32346]: Reconfiguring daemon osd.0 on smithi044 2024-09-17T08:12:23.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:22 smithi145 ceph-mon[32346]: pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:12:24.330 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:24 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:24.331 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:24 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:24.331 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:24 smithi044 ceph-mon[29204]: Reconfiguring osd.1 (monmap changed)... 2024-09-17T08:12:24.331 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:24 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-17T08:12:24.331 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:24 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:12:24.331 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:24 smithi044 ceph-mon[29204]: Reconfiguring daemon osd.1 on smithi044 2024-09-17T08:12:24.502 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:24 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:24.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:24 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:24.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:24 smithi145 ceph-mon[32346]: Reconfiguring osd.1 (monmap changed)... 2024-09-17T08:12:24.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:24 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-17T08:12:24.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:24 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:12:24.503 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:24 smithi145 ceph-mon[32346]: Reconfiguring daemon osd.1 on smithi044 2024-09-17T08:12:25.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:25 smithi145 ceph-mon[32346]: pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:12:25.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:25 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:25.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:25 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:25.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:25 smithi145 ceph-mon[32346]: Reconfiguring mon.b (monmap changed)... 2024-09-17T08:12:25.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:25 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T08:12:25.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:25 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T08:12:25.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:25 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:12:25.754 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:25 smithi145 ceph-mon[32346]: Reconfiguring daemon mon.b on smithi145 2024-09-17T08:12:25.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:25 smithi044 ceph-mon[29204]: pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:12:25.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:25 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:25.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:25 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:25.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:25 smithi044 ceph-mon[29204]: Reconfiguring mon.b (monmap changed)... 2024-09-17T08:12:25.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:25 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T08:12:25.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:25 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T08:12:25.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:25 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:12:25.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:25 smithi044 ceph-mon[29204]: Reconfiguring daemon mon.b on smithi145 2024-09-17T08:12:27.002 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:26 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:27.002 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:26 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:27.002 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:26 smithi145 ceph-mon[32346]: Reconfiguring mgr.b (monmap changed)... 2024-09-17T08:12:27.002 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:26 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T08:12:27.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:26 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T08:12:27.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:26 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:12:27.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:26 smithi145 ceph-mon[32346]: Reconfiguring daemon mgr.b on smithi145 2024-09-17T08:12:27.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:26 smithi145 ceph-mon[32346]: pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:12:27.161 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:26 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:27.161 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:26 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:27.161 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:26 smithi044 ceph-mon[29204]: Reconfiguring mgr.b (monmap changed)... 2024-09-17T08:12:27.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:26 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T08:12:27.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:26 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T08:12:27.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:26 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:12:27.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:26 smithi044 ceph-mon[29204]: Reconfiguring daemon mgr.b on smithi145 2024-09-17T08:12:27.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:26 smithi044 ceph-mon[29204]: pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:12:28.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:27 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:28.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:27 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:28.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:27 smithi145 ceph-mon[32346]: Reconfiguring osd.2 (monmap changed)... 2024-09-17T08:12:28.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:27 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-17T08:12:28.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:27 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:12:28.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:27 smithi145 ceph-mon[32346]: Reconfiguring daemon osd.2 on smithi145 2024-09-17T08:12:28.411 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:27 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:28.411 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:27 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:28.411 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:27 smithi044 ceph-mon[29204]: Reconfiguring osd.2 (monmap changed)... 2024-09-17T08:12:28.411 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:27 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-17T08:12:28.411 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:27 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:12:28.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:27 smithi044 ceph-mon[29204]: Reconfiguring daemon osd.2 on smithi145 2024-09-17T08:12:29.442 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:29 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:29.442 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:29 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:29.442 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:29 smithi145 ceph-mon[32346]: Reconfiguring osd.3 (monmap changed)... 2024-09-17T08:12:29.442 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:29 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-17T08:12:29.442 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:29 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:12:29.442 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:29 smithi145 ceph-mon[32346]: Reconfiguring daemon osd.3 on smithi145 2024-09-17T08:12:29.442 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:29 smithi145 ceph-mon[32346]: pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:12:29.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:29 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:29.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:29 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:29.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:29 smithi044 ceph-mon[29204]: Reconfiguring osd.3 (monmap changed)... 2024-09-17T08:12:29.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:29 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-17T08:12:29.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:29 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:12:29.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:29 smithi044 ceph-mon[29204]: Reconfiguring daemon osd.3 on smithi145 2024-09-17T08:12:29.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:29 smithi044 ceph-mon[29204]: pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:12:30.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:30 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:30.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:30 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:30.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:30 smithi044 ceph-mon[29204]: Reconfiguring osd.5 (monmap changed)... 2024-09-17T08:12:30.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:30 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-17T08:12:30.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:30 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:12:30.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:30 smithi044 ceph-mon[29204]: Reconfiguring daemon osd.5 on smithi152 2024-09-17T08:12:30.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:30 smithi044 ceph-mon[29204]: pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:12:31.002 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:30 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:31.002 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:30 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:31.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:30 smithi145 ceph-mon[32346]: Reconfiguring osd.5 (monmap changed)... 2024-09-17T08:12:31.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:30 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-17T08:12:31.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:30 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:12:31.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:30 smithi145 ceph-mon[32346]: Reconfiguring daemon osd.5 on smithi152 2024-09-17T08:12:31.003 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:30 smithi145 ceph-mon[32346]: pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:12:32.161 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:31 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mon-a[29200]: 2024-09-17T08:12:31.854+0000 7fbad2fc6640 -1 mon.a@0(leader).osd e54 definitely_dead 0 2024-09-17T08:12:32.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:31 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:32.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:31 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:32.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:31 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:12:32.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:31 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:32.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:31 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:32.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:31 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:12:32.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:31 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:12:32.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:31 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:32.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:31 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:32.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:31 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-17T08:12:32.162 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:31 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-09-17T08:12:32.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:31 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:32.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:31 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:32.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:31 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:12:32.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:31 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:32.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:31 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:32.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:31 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:12:32.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:31 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:12:32.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:31 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:32.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:31 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:32.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:31 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-17T08:12:32.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:31 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-09-17T08:12:33.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:32 smithi145 ceph-mon[32346]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:33.316 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:32 smithi145 ceph-mon[32346]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:33.316 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:32 smithi145 ceph-mon[32346]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-17T08:12:33.316 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:32 smithi145 ceph-mon[32346]: pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:12:33.316 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:32 smithi145 ceph-mon[32346]: Health check failed: 1 osds down (OSD_DOWN) 2024-09-17T08:12:33.316 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:32 smithi145 ceph-mon[32346]: Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-17T08:12:33.316 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:32 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-17T08:12:33.317 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:32 smithi145 ceph-mon[32346]: osdmap e55: 5 total, 4 up, 5 in 2024-09-17T08:12:33.345 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:32 smithi044 ceph-mon[29204]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:33.345 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:32 smithi044 ceph-mon[29204]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T08:12:33.345 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:32 smithi044 ceph-mon[29204]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-17T08:12:33.346 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:32 smithi044 ceph-mon[29204]: pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:12:33.346 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:32 smithi044 ceph-mon[29204]: Health check failed: 1 osds down (OSD_DOWN) 2024-09-17T08:12:33.346 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:32 smithi044 ceph-mon[29204]: Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-17T08:12:33.346 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:32 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-17T08:12:33.346 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:32 smithi044 ceph-mon[29204]: osdmap e55: 5 total, 4 up, 5 in 2024-09-17T08:12:33.526 INFO:journalctl@ceph.osd.5.smithi152.stdout:Sep 17 08:12:33 smithi152 systemd[1]: Stopping Ceph osd.5 for ad90ed3e-74cb-11ef-bceb-c7b262605968... 2024-09-17T08:12:33.526 INFO:journalctl@ceph.osd.5.smithi152.stdout:Sep 17 08:12:33 smithi152 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-5[42673]: 2024-09-17T08:12:33.353+0000 7ffbac742640 -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-17T08:12:33.526 INFO:journalctl@ceph.osd.5.smithi152.stdout:Sep 17 08:12:33 smithi152 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-5[42673]: 2024-09-17T08:12:33.353+0000 7ffbac742640 -1 osd.5 54 *** Got signal Terminated *** 2024-09-17T08:12:33.526 INFO:journalctl@ceph.osd.5.smithi152.stdout:Sep 17 08:12:33 smithi152 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-5[42673]: 2024-09-17T08:12:33.353+0000 7ffbac742640 -1 osd.5 54 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-17T08:12:34.188 INFO:journalctl@ceph.osd.5.smithi152.stdout:Sep 17 08:12:33 smithi152 podman[50132]: 2024-09-17 08:12:33.873615409 +0000 UTC m=+0.618867033 container died 03ee50fc4e48f67e5318286c0ffc4aec826187ffc84d8d774f54d548ab7d5188 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-5, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, GIT_BRANCH=HEAD, GIT_CLEAN=True, RELEASE=reef-19e2a2b, org.label-schema.license=GPLv2) 2024-09-17T08:12:34.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:33 smithi145 ceph-mon[32346]: osd.5 now down 2024-09-17T08:12:34.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:33 smithi145 ceph-mon[32346]: Removing daemon osd.5 from smithi152 -- ports [] 2024-09-17T08:12:34.354 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:33 smithi044 ceph-mon[29204]: osd.5 now down 2024-09-17T08:12:34.355 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:33 smithi044 ceph-mon[29204]: Removing daemon osd.5 from smithi152 -- ports [] 2024-09-17T08:12:34.514 INFO:journalctl@ceph.osd.5.smithi152.stdout:Sep 17 08:12:34 smithi152 podman[50132]: 2024-09-17 08:12:34.271028023 +0000 UTC m=+1.016279646 container cleanup 03ee50fc4e48f67e5318286c0ffc4aec826187ffc84d8d774f54d548ab7d5188 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-5, RELEASE=reef-19e2a2b, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, ceph=True, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, GIT_CLEAN=True) 2024-09-17T08:12:34.514 INFO:journalctl@ceph.osd.5.smithi152.stdout:Sep 17 08:12:34 smithi152 bash[50132]: ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-5 2024-09-17T08:12:34.572 INFO:teuthology.orchestra.run.smithi044.stderr:++ ceph orch ps --hostname smithi152 2024-09-17T08:12:34.775 INFO:journalctl@ceph.osd.5.smithi152.stdout:Sep 17 08:12:34 smithi152 podman[50148]: 2024-09-17 08:12:34.513748088 +0000 UTC m=+0.629080186 container remove 03ee50fc4e48f67e5318286c0ffc4aec826187ffc84d8d774f54d548ab7d5188 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-5, maintainer=Guillaume Abrioux , GIT_CLEAN=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, RELEASE=reef-19e2a2b, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731) 2024-09-17T08:12:34.853 INFO:teuthology.orchestra.run.smithi044.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-17T08:12:34.853 INFO:teuthology.orchestra.run.smithi044.stderr:osd.5 smithi152 running (87s) 3s ago 87s 45.0M 10.3G 18.2.4-855-g19e2a2be 980a0bfcd684 03ee50fc4e48 ' 2024-09-17T08:12:34.854 INFO:teuthology.orchestra.run.smithi044.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-17T08:12:34.854 INFO:teuthology.orchestra.run.smithi044.stderr:osd.5 smithi152 running (87s) 3s ago 87s 45.0M 10.3G 18.2.4-855-g19e2a2be 980a0bfcd684 03ee50fc4e48 ' '!=' 'No daemons reported' ']' 2024-09-17T08:12:34.854 INFO:teuthology.orchestra.run.smithi044.stderr:+ sleep 15 2024-09-17T08:12:35.025 INFO:journalctl@ceph.osd.5.smithi152.stdout:Sep 17 08:12:34 smithi152 podman[50246]: 2024-09-17 08:12:34.739270411 +0000 UTC m=+0.016371155 image pull 980a0bfcd684674f25c08d857ad8de3b1c8ae738870529edbf9aa463832c8d89 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9 2024-09-17T08:12:35.025 INFO:journalctl@ceph.osd.5.smithi152.stdout:Sep 17 08:12:34 smithi152 podman[50246]: 2024-09-17 08:12:34.865367763 +0000 UTC m=+0.142468539 container create 320628af3eacde8b6b2ff14bf06816a2f8bf41bc6d06a1e24371e2e501b81b3a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-5-deactivate, org.label-schema.license=GPLv2, io.buildah.version=1.37.2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , RELEASE=reef-19e2a2b, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, GIT_CLEAN=True) 2024-09-17T08:12:35.161 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:34 smithi044 ceph-mon[29204]: pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:12:35.252 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:34 smithi145 ceph-mon[32346]: pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:12:35.525 INFO:journalctl@ceph.osd.5.smithi152.stdout:Sep 17 08:12:35 smithi152 podman[50246]: 2024-09-17 08:12:35.153853463 +0000 UTC m=+0.430954206 container init 320628af3eacde8b6b2ff14bf06816a2f8bf41bc6d06a1e24371e2e501b81b3a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-5-deactivate, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, GIT_CLEAN=True, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, ceph=True, maintainer=Guillaume Abrioux , RELEASE=reef-19e2a2b) 2024-09-17T08:12:35.526 INFO:journalctl@ceph.osd.5.smithi152.stdout:Sep 17 08:12:35 smithi152 podman[50246]: 2024-09-17 08:12:35.157187178 +0000 UTC m=+0.434287921 container start 320628af3eacde8b6b2ff14bf06816a2f8bf41bc6d06a1e24371e2e501b81b3a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-5-deactivate, GIT_CLEAN=True, RELEASE=reef-19e2a2b, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, io.buildah.version=1.37.2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-17T08:12:35.526 INFO:journalctl@ceph.osd.5.smithi152.stdout:Sep 17 08:12:35 smithi152 podman[50246]: 2024-09-17 08:12:35.242879235 +0000 UTC m=+0.519979983 container attach 320628af3eacde8b6b2ff14bf06816a2f8bf41bc6d06a1e24371e2e501b81b3a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-5-deactivate, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=reef-19e2a2b, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240731, GIT_CLEAN=True, ceph=True) 2024-09-17T08:12:35.526 INFO:journalctl@ceph.osd.5.smithi152.stdout:Sep 17 08:12:35 smithi152 podman[50246]: 2024-09-17 08:12:35.354671343 +0000 UTC m=+0.631772080 container died 320628af3eacde8b6b2ff14bf06816a2f8bf41bc6d06a1e24371e2e501b81b3a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-5-deactivate, org.label-schema.build-date=20240731, io.buildah.version=1.37.2, GIT_CLEAN=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=reef-19e2a2b, CEPH_POINT_RELEASE=, ceph=True, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-17T08:12:36.252 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:35 smithi145 ceph-mon[32346]: from='client.14518 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi152", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:12:36.275 INFO:journalctl@ceph.osd.5.smithi152.stdout:Sep 17 08:12:35 smithi152 podman[50270]: 2024-09-17 08:12:35.96278974 +0000 UTC m=+0.602375497 container remove 320628af3eacde8b6b2ff14bf06816a2f8bf41bc6d06a1e24371e2e501b81b3a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-5-deactivate, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, ceph=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.license=GPLv2, RELEASE=reef-19e2a2b, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD) 2024-09-17T08:12:36.275 INFO:journalctl@ceph.osd.5.smithi152.stdout:Sep 17 08:12:35 smithi152 systemd[1]: ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@osd.5.service: Deactivated successfully. 2024-09-17T08:12:36.275 INFO:journalctl@ceph.osd.5.smithi152.stdout:Sep 17 08:12:35 smithi152 systemd[1]: Stopped Ceph osd.5 for ad90ed3e-74cb-11ef-bceb-c7b262605968. 2024-09-17T08:12:36.275 INFO:journalctl@ceph.osd.5.smithi152.stdout:Sep 17 08:12:35 smithi152 systemd[1]: ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@osd.5.service: Consumed 1.917s CPU time. 2024-09-17T08:12:36.411 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:35 smithi044 ceph-mon[29204]: from='client.14518 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi152", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:12:37.252 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:36 smithi145 ceph-mon[32346]: Removing key for osd.5 2024-09-17T08:12:37.252 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:36 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-09-17T08:12:37.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:36 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-17T08:12:37.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:36 smithi145 ceph-mon[32346]: Successfully removed osd.5 on smithi152 2024-09-17T08:12:37.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:36 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-09-17T08:12:37.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:36 smithi145 ceph-mon[32346]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-17T08:12:37.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:36 smithi145 ceph-mon[32346]: Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-17T08:12:37.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:36 smithi145 ceph-mon[32346]: Cluster is now healthy 2024-09-17T08:12:37.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:36 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-17T08:12:37.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:36 smithi145 ceph-mon[32346]: osdmap e56: 4 total, 4 up, 4 in 2024-09-17T08:12:37.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:36 smithi145 ceph-mon[32346]: Successfully purged osd.5 on smithi152 2024-09-17T08:12:37.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:36 smithi145 ceph-mon[32346]: Zapping devices for osd.5 on smithi152 2024-09-17T08:12:37.253 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:36 smithi145 ceph-mon[32346]: pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:12:37.411 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:36 smithi044 ceph-mon[29204]: Removing key for osd.5 2024-09-17T08:12:37.411 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:36 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-09-17T08:12:37.411 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:36 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-17T08:12:37.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:36 smithi044 ceph-mon[29204]: Successfully removed osd.5 on smithi152 2024-09-17T08:12:37.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:36 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-09-17T08:12:37.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:36 smithi044 ceph-mon[29204]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-17T08:12:37.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:36 smithi044 ceph-mon[29204]: Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-17T08:12:37.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:36 smithi044 ceph-mon[29204]: Cluster is now healthy 2024-09-17T08:12:37.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:36 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-17T08:12:37.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:36 smithi044 ceph-mon[29204]: osdmap e56: 4 total, 4 up, 4 in 2024-09-17T08:12:37.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:36 smithi044 ceph-mon[29204]: Successfully purged osd.5 on smithi152 2024-09-17T08:12:37.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:36 smithi044 ceph-mon[29204]: Zapping devices for osd.5 on smithi152 2024-09-17T08:12:37.412 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:36 smithi044 ceph-mon[29204]: pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:12:39.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:39 smithi145 ceph-mon[32346]: pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:12:39.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:39 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:39.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:39 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:12:39.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:39 smithi044 ceph-mon[29204]: pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:12:39.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:39 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:39.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:39 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:12:40.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:40 smithi145 ceph-mon[32346]: Successfully zapped devices for osd.5 on smithi152 2024-09-17T08:12:40.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:40 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:40.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:40 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:40.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:40 smithi044 ceph-mon[29204]: Successfully zapped devices for osd.5 on smithi152 2024-09-17T08:12:40.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:40 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:40.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:40 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:41.669 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:41 smithi145 ceph-mon[32346]: pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:12:41.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:41 smithi044 ceph-mon[29204]: pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:12:43.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:43 smithi044 ceph-mon[29204]: pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:12:43.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:43 smithi044 ceph-mon[29204]: Detected new or changed devices on smithi152 2024-09-17T08:12:43.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:43 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:43.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:43 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:43.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:43 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:12:43.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:43 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:12:43.662 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:43 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:43.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:43 smithi145 ceph-mon[32346]: pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:12:43.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:43 smithi145 ceph-mon[32346]: Detected new or changed devices on smithi152 2024-09-17T08:12:43.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:43 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:43.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:43 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:43.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:43 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:12:43.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:43 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:12:43.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:43 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:45.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:45 smithi044 ceph-mon[29204]: pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:12:45.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:45 smithi145 ceph-mon[32346]: pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:12:47.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:47 smithi044 ceph-mon[29204]: pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:12:47.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:47 smithi145 ceph-mon[32346]: pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:12:49.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:49 smithi044 ceph-mon[29204]: pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:12:49.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:49 smithi145 ceph-mon[32346]: pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:12:49.855 INFO:teuthology.orchestra.run.smithi044.stderr:++ ceph orch ps --hostname smithi152 2024-09-17T08:12:50.143 INFO:teuthology.orchestra.run.smithi044.stderr:+ HOST_C_DAEMONS='No daemons reported' 2024-09-17T08:12:50.143 INFO:teuthology.orchestra.run.smithi044.stderr:+ '[' 'No daemons reported' '!=' 'No daemons reported' ']' 2024-09-17T08:12:50.143 INFO:teuthology.orchestra.run.smithi044.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-09-17T08:12:50.399 INFO:teuthology.orchestra.run.smithi044.stderr:17 2024-09-17T08:12:50.410 INFO:teuthology.orchestra.run.smithi044.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-09-17T08:12:50.422 INFO:teuthology.orchestra.run.smithi044.stderr:++ cat crushmap.txt 2024-09-17T08:12:50.423 INFO:teuthology.orchestra.run.smithi044.stderr:+ CRUSH_MAP='# begin crush map 2024-09-17T08:12:50.423 INFO:teuthology.orchestra.run.smithi044.stderr:tunable choose_local_tries 0 2024-09-17T08:12:50.423 INFO:teuthology.orchestra.run.smithi044.stderr:tunable choose_local_fallback_tries 0 2024-09-17T08:12:50.424 INFO:teuthology.orchestra.run.smithi044.stderr:tunable choose_total_tries 50 2024-09-17T08:12:50.424 INFO:teuthology.orchestra.run.smithi044.stderr:tunable chooseleaf_descend_once 1 2024-09-17T08:12:50.424 INFO:teuthology.orchestra.run.smithi044.stderr:tunable chooseleaf_vary_r 1 2024-09-17T08:12:50.424 INFO:teuthology.orchestra.run.smithi044.stderr:tunable chooseleaf_stable 1 2024-09-17T08:12:50.424 INFO:teuthology.orchestra.run.smithi044.stderr:tunable straw_calc_version 1 2024-09-17T08:12:50.424 INFO:teuthology.orchestra.run.smithi044.stderr:tunable allowed_bucket_algs 54 2024-09-17T08:12:50.424 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-09-17T08:12:50.424 INFO:teuthology.orchestra.run.smithi044.stderr:# devices 2024-09-17T08:12:50.424 INFO:teuthology.orchestra.run.smithi044.stderr:device 0 osd.0 class ssd 2024-09-17T08:12:50.424 INFO:teuthology.orchestra.run.smithi044.stderr:device 1 osd.1 class ssd 2024-09-17T08:12:50.424 INFO:teuthology.orchestra.run.smithi044.stderr:device 2 osd.2 class ssd 2024-09-17T08:12:50.424 INFO:teuthology.orchestra.run.smithi044.stderr:device 3 osd.3 class ssd 2024-09-17T08:12:50.424 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-09-17T08:12:50.425 INFO:teuthology.orchestra.run.smithi044.stderr:# types 2024-09-17T08:12:50.425 INFO:teuthology.orchestra.run.smithi044.stderr:type 0 osd 2024-09-17T08:12:50.425 INFO:teuthology.orchestra.run.smithi044.stderr:type 1 host 2024-09-17T08:12:50.425 INFO:teuthology.orchestra.run.smithi044.stderr:type 2 chassis 2024-09-17T08:12:50.425 INFO:teuthology.orchestra.run.smithi044.stderr:type 3 rack 2024-09-17T08:12:50.425 INFO:teuthology.orchestra.run.smithi044.stderr:type 4 row 2024-09-17T08:12:50.425 INFO:teuthology.orchestra.run.smithi044.stderr:type 5 pdu 2024-09-17T08:12:50.425 INFO:teuthology.orchestra.run.smithi044.stderr:type 6 pod 2024-09-17T08:12:50.425 INFO:teuthology.orchestra.run.smithi044.stderr:type 7 room 2024-09-17T08:12:50.425 INFO:teuthology.orchestra.run.smithi044.stderr:type 8 datacenter 2024-09-17T08:12:50.425 INFO:teuthology.orchestra.run.smithi044.stderr:type 9 zone 2024-09-17T08:12:50.425 INFO:teuthology.orchestra.run.smithi044.stderr:type 10 region 2024-09-17T08:12:50.426 INFO:teuthology.orchestra.run.smithi044.stderr:type 11 root 2024-09-17T08:12:50.426 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-09-17T08:12:50.426 INFO:teuthology.orchestra.run.smithi044.stderr:# buckets 2024-09-17T08:12:50.426 INFO:teuthology.orchestra.run.smithi044.stderr:host smithi044 { 2024-09-17T08:12:50.426 INFO:teuthology.orchestra.run.smithi044.stderr: id -3 # do not change unnecessarily 2024-09-17T08:12:50.426 INFO:teuthology.orchestra.run.smithi044.stderr: id -4 class ssd # do not change unnecessarily 2024-09-17T08:12:50.426 INFO:teuthology.orchestra.run.smithi044.stderr: # weight 0.17459 2024-09-17T08:12:50.426 INFO:teuthology.orchestra.run.smithi044.stderr: alg straw2 2024-09-17T08:12:50.426 INFO:teuthology.orchestra.run.smithi044.stderr: hash 0 # rjenkins1 2024-09-17T08:12:50.426 INFO:teuthology.orchestra.run.smithi044.stderr: item osd.0 weight 0.08730 2024-09-17T08:12:50.426 INFO:teuthology.orchestra.run.smithi044.stderr: item osd.1 weight 0.08730 2024-09-17T08:12:50.426 INFO:teuthology.orchestra.run.smithi044.stderr:} 2024-09-17T08:12:50.426 INFO:teuthology.orchestra.run.smithi044.stderr:host smithi145 { 2024-09-17T08:12:50.426 INFO:teuthology.orchestra.run.smithi044.stderr: id -5 # do not change unnecessarily 2024-09-17T08:12:50.427 INFO:teuthology.orchestra.run.smithi044.stderr: id -6 class ssd # do not change unnecessarily 2024-09-17T08:12:50.427 INFO:teuthology.orchestra.run.smithi044.stderr: # weight 0.17459 2024-09-17T08:12:50.427 INFO:teuthology.orchestra.run.smithi044.stderr: alg straw2 2024-09-17T08:12:50.427 INFO:teuthology.orchestra.run.smithi044.stderr: hash 0 # rjenkins1 2024-09-17T08:12:50.427 INFO:teuthology.orchestra.run.smithi044.stderr: item osd.2 weight 0.08730 2024-09-17T08:12:50.427 INFO:teuthology.orchestra.run.smithi044.stderr: item osd.3 weight 0.08730 2024-09-17T08:12:50.427 INFO:teuthology.orchestra.run.smithi044.stderr:} 2024-09-17T08:12:50.427 INFO:teuthology.orchestra.run.smithi044.stderr:host smithi152 { 2024-09-17T08:12:50.427 INFO:teuthology.orchestra.run.smithi044.stderr: id -7 # do not change unnecessarily 2024-09-17T08:12:50.427 INFO:teuthology.orchestra.run.smithi044.stderr: id -8 class ssd # do not change unnecessarily 2024-09-17T08:12:50.427 INFO:teuthology.orchestra.run.smithi044.stderr: # weight 0.00000 2024-09-17T08:12:50.427 INFO:teuthology.orchestra.run.smithi044.stderr: alg straw2 2024-09-17T08:12:50.427 INFO:teuthology.orchestra.run.smithi044.stderr: hash 0 # rjenkins1 2024-09-17T08:12:50.427 INFO:teuthology.orchestra.run.smithi044.stderr:} 2024-09-17T08:12:50.428 INFO:teuthology.orchestra.run.smithi044.stderr:root default { 2024-09-17T08:12:50.428 INFO:teuthology.orchestra.run.smithi044.stderr: id -1 # do not change unnecessarily 2024-09-17T08:12:50.428 INFO:teuthology.orchestra.run.smithi044.stderr: id -2 class ssd # do not change unnecessarily 2024-09-17T08:12:50.428 INFO:teuthology.orchestra.run.smithi044.stderr: # weight 0.34918 2024-09-17T08:12:50.428 INFO:teuthology.orchestra.run.smithi044.stderr: alg straw2 2024-09-17T08:12:50.428 INFO:teuthology.orchestra.run.smithi044.stderr: hash 0 # rjenkins1 2024-09-17T08:12:50.428 INFO:teuthology.orchestra.run.smithi044.stderr: item smithi044 weight 0.17459 2024-09-17T08:12:50.428 INFO:teuthology.orchestra.run.smithi044.stderr: item smithi145 weight 0.17459 2024-09-17T08:12:50.428 INFO:teuthology.orchestra.run.smithi044.stderr: item smithi152 weight 0.00000 2024-09-17T08:12:50.428 INFO:teuthology.orchestra.run.smithi044.stderr:} 2024-09-17T08:12:50.428 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-09-17T08:12:50.428 INFO:teuthology.orchestra.run.smithi044.stderr:# rules 2024-09-17T08:12:50.428 INFO:teuthology.orchestra.run.smithi044.stderr:rule replicated_rule { 2024-09-17T08:12:50.429 INFO:teuthology.orchestra.run.smithi044.stderr: id 0 2024-09-17T08:12:50.429 INFO:teuthology.orchestra.run.smithi044.stderr: type replicated 2024-09-17T08:12:50.429 INFO:teuthology.orchestra.run.smithi044.stderr: step take default 2024-09-17T08:12:50.429 INFO:teuthology.orchestra.run.smithi044.stderr: step choose firstn 0 type osd 2024-09-17T08:12:50.429 INFO:teuthology.orchestra.run.smithi044.stderr: step emit 2024-09-17T08:12:50.429 INFO:teuthology.orchestra.run.smithi044.stderr:} 2024-09-17T08:12:50.429 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-09-17T08:12:50.429 INFO:teuthology.orchestra.run.smithi044.stderr:# end crush map' 2024-09-17T08:12:50.429 INFO:teuthology.orchestra.run.smithi044.stderr:+ grep -q smithi152 2024-09-17T08:12:50.430 INFO:teuthology.orchestra.run.smithi044.stderr:+ ceph orch host rm smithi152 --rm-crush-entry 2024-09-17T08:12:50.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:50 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/2235783655' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-17T08:12:50.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:50 smithi145 ceph-mon[32346]: from='client.? 172.21.15.44:0/2235783655' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-17T08:12:51.436 INFO:teuthology.orchestra.run.smithi044.stdout:Removed host 'smithi152' 2024-09-17T08:12:51.451 INFO:teuthology.orchestra.run.smithi044.stderr:+ sleep 30 2024-09-17T08:12:51.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:51 smithi145 ceph-mon[32346]: from='client.14522 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi152", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:12:51.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:51 smithi145 ceph-mon[32346]: pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:12:51.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:51 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "smithi152"}]: dispatch 2024-09-17T08:12:51.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:51 smithi044 ceph-mon[29204]: from='client.14522 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi152", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:12:51.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:51 smithi044 ceph-mon[29204]: pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:12:51.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:51 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "smithi152"}]: dispatch 2024-09-17T08:12:52.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:52 smithi145 ceph-mon[32346]: from='client.14530 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi152", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:12:52.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:52 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi152"}]': finished 2024-09-17T08:12:52.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:52 smithi145 ceph-mon[32346]: osdmap e57: 4 total, 4 up, 4 in 2024-09-17T08:12:52.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:52 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:52.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:52 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi152"}]: dispatch 2024-09-17T08:12:52.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:52 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi152"}]': finished 2024-09-17T08:12:52.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:52 smithi145 ceph-mon[32346]: Removed host smithi152 2024-09-17T08:12:52.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:52 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:12:52.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:52 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:12:52.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:52 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:12:52.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:52 smithi145 ceph-mon[32346]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:52.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:52 smithi044 ceph-mon[29204]: from='client.14530 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi152", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:12:52.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:52 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi152"}]': finished 2024-09-17T08:12:52.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:52 smithi044 ceph-mon[29204]: osdmap e57: 4 total, 4 up, 4 in 2024-09-17T08:12:52.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:52 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:52.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:52 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi152"}]: dispatch 2024-09-17T08:12:52.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:52 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi152"}]': finished 2024-09-17T08:12:52.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:52 smithi044 ceph-mon[29204]: Removed host smithi152 2024-09-17T08:12:52.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:52 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:12:52.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:52 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:12:52.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:52 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:12:52.912 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:52 smithi044 ceph-mon[29204]: from='mgr.14150 172.21.15.44:0/4166714670' entity='mgr.a' 2024-09-17T08:12:53.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:53 smithi145 ceph-mon[32346]: pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:12:53.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:53 smithi145 ceph-mon[32346]: Health check failed: 1 stray host(s) with 1 daemon(s) not managed by cephadm (CEPHADM_STRAY_HOST) 2024-09-17T08:12:53.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:53 smithi044 ceph-mon[29204]: pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:12:53.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:53 smithi044 ceph-mon[29204]: Health check failed: 1 stray host(s) with 1 daemon(s) not managed by cephadm (CEPHADM_STRAY_HOST) 2024-09-17T08:12:55.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:55 smithi145 ceph-mon[32346]: pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:12:55.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:55 smithi044 ceph-mon[29204]: pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:12:57.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:57 smithi145 ceph-mon[32346]: pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:12:57.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:57 smithi044 ceph-mon[29204]: pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:12:59.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:12:59 smithi145 ceph-mon[32346]: pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:12:59.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:12:59 smithi044 ceph-mon[29204]: pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:13:01.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:13:01 smithi145 ceph-mon[32346]: pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:13:01.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:13:01 smithi044 ceph-mon[29204]: pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:13:03.713 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:13:03 smithi044 ceph-mon[29204]: pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:13:03.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:13:03 smithi145 ceph-mon[32346]: pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:13:05.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:13:05 smithi145 ceph-mon[32346]: pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:13:05.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:13:05 smithi044 ceph-mon[29204]: pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:13:06.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:13:06 smithi145 ceph-mon[32346]: pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:13:06.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:13:06 smithi044 ceph-mon[29204]: pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:13:08.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:13:08 smithi145 ceph-mon[32346]: pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:13:08.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:13:08 smithi044 ceph-mon[29204]: pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:13:10.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:13:10 smithi145 ceph-mon[32346]: pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:13:10.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:13:10 smithi044 ceph-mon[29204]: pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:13:12.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:13:12 smithi145 ceph-mon[32346]: pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:13:12.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:13:12 smithi044 ceph-mon[29204]: pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:13:14.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:13:14 smithi145 ceph-mon[32346]: pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:13:14.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:13:14 smithi044 ceph-mon[29204]: pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:13:16.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:13:16 smithi145 ceph-mon[32346]: pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:13:16.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:13:16 smithi044 ceph-mon[29204]: pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:13:18.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:13:18 smithi145 ceph-mon[32346]: pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:13:18.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:13:18 smithi044 ceph-mon[29204]: pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:13:20.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:13:20 smithi145 ceph-mon[32346]: pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:13:20.911 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:13:20 smithi044 ceph-mon[29204]: pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:13:21.453 INFO:teuthology.orchestra.run.smithi044.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-09-17T08:13:21.720 INFO:teuthology.orchestra.run.smithi044.stderr:18 2024-09-17T08:13:21.730 INFO:teuthology.orchestra.run.smithi044.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-09-17T08:13:21.743 INFO:teuthology.orchestra.run.smithi044.stderr:++ cat crushmap.txt 2024-09-17T08:13:21.744 INFO:teuthology.orchestra.run.smithi044.stderr:+ CRUSH_MAP='# begin crush map 2024-09-17T08:13:21.744 INFO:teuthology.orchestra.run.smithi044.stderr:tunable choose_local_tries 0 2024-09-17T08:13:21.744 INFO:teuthology.orchestra.run.smithi044.stderr:tunable choose_local_fallback_tries 0 2024-09-17T08:13:21.744 INFO:teuthology.orchestra.run.smithi044.stderr:tunable choose_total_tries 50 2024-09-17T08:13:21.744 INFO:teuthology.orchestra.run.smithi044.stderr:tunable chooseleaf_descend_once 1 2024-09-17T08:13:21.745 INFO:teuthology.orchestra.run.smithi044.stderr:tunable chooseleaf_vary_r 1 2024-09-17T08:13:21.745 INFO:teuthology.orchestra.run.smithi044.stderr:tunable chooseleaf_stable 1 2024-09-17T08:13:21.745 INFO:teuthology.orchestra.run.smithi044.stderr:tunable straw_calc_version 1 2024-09-17T08:13:21.745 INFO:teuthology.orchestra.run.smithi044.stderr:tunable allowed_bucket_algs 54 2024-09-17T08:13:21.745 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-09-17T08:13:21.745 INFO:teuthology.orchestra.run.smithi044.stderr:# devices 2024-09-17T08:13:21.745 INFO:teuthology.orchestra.run.smithi044.stderr:device 0 osd.0 class ssd 2024-09-17T08:13:21.745 INFO:teuthology.orchestra.run.smithi044.stderr:device 1 osd.1 class ssd 2024-09-17T08:13:21.745 INFO:teuthology.orchestra.run.smithi044.stderr:device 2 osd.2 class ssd 2024-09-17T08:13:21.745 INFO:teuthology.orchestra.run.smithi044.stderr:device 3 osd.3 class ssd 2024-09-17T08:13:21.745 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-09-17T08:13:21.745 INFO:teuthology.orchestra.run.smithi044.stderr:# types 2024-09-17T08:13:21.746 INFO:teuthology.orchestra.run.smithi044.stderr:type 0 osd 2024-09-17T08:13:21.746 INFO:teuthology.orchestra.run.smithi044.stderr:type 1 host 2024-09-17T08:13:21.746 INFO:teuthology.orchestra.run.smithi044.stderr:type 2 chassis 2024-09-17T08:13:21.746 INFO:teuthology.orchestra.run.smithi044.stderr:type 3 rack 2024-09-17T08:13:21.746 INFO:teuthology.orchestra.run.smithi044.stderr:type 4 row 2024-09-17T08:13:21.746 INFO:teuthology.orchestra.run.smithi044.stderr:type 5 pdu 2024-09-17T08:13:21.746 INFO:teuthology.orchestra.run.smithi044.stderr:type 6 pod 2024-09-17T08:13:21.746 INFO:teuthology.orchestra.run.smithi044.stderr:type 7 room 2024-09-17T08:13:21.746 INFO:teuthology.orchestra.run.smithi044.stderr:type 8 datacenter 2024-09-17T08:13:21.746 INFO:teuthology.orchestra.run.smithi044.stderr:type 9 zone 2024-09-17T08:13:21.746 INFO:teuthology.orchestra.run.smithi044.stderr:type 10 region 2024-09-17T08:13:21.746 INFO:teuthology.orchestra.run.smithi044.stderr:type 11 root 2024-09-17T08:13:21.746 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-09-17T08:13:21.746 INFO:teuthology.orchestra.run.smithi044.stderr:# buckets 2024-09-17T08:13:21.747 INFO:teuthology.orchestra.run.smithi044.stderr:host smithi044 { 2024-09-17T08:13:21.747 INFO:teuthology.orchestra.run.smithi044.stderr: id -3 # do not change unnecessarily 2024-09-17T08:13:21.747 INFO:teuthology.orchestra.run.smithi044.stderr: id -4 class ssd # do not change unnecessarily 2024-09-17T08:13:21.747 INFO:teuthology.orchestra.run.smithi044.stderr: # weight 0.17459 2024-09-17T08:13:21.747 INFO:teuthology.orchestra.run.smithi044.stderr: alg straw2 2024-09-17T08:13:21.747 INFO:teuthology.orchestra.run.smithi044.stderr: hash 0 # rjenkins1 2024-09-17T08:13:21.747 INFO:teuthology.orchestra.run.smithi044.stderr: item osd.0 weight 0.08730 2024-09-17T08:13:21.747 INFO:teuthology.orchestra.run.smithi044.stderr: item osd.1 weight 0.08730 2024-09-17T08:13:21.747 INFO:teuthology.orchestra.run.smithi044.stderr:} 2024-09-17T08:13:21.747 INFO:teuthology.orchestra.run.smithi044.stderr:host smithi145 { 2024-09-17T08:13:21.747 INFO:teuthology.orchestra.run.smithi044.stderr: id -5 # do not change unnecessarily 2024-09-17T08:13:21.747 INFO:teuthology.orchestra.run.smithi044.stderr: id -6 class ssd # do not change unnecessarily 2024-09-17T08:13:21.747 INFO:teuthology.orchestra.run.smithi044.stderr: # weight 0.17459 2024-09-17T08:13:21.747 INFO:teuthology.orchestra.run.smithi044.stderr: alg straw2 2024-09-17T08:13:21.748 INFO:teuthology.orchestra.run.smithi044.stderr: hash 0 # rjenkins1 2024-09-17T08:13:21.748 INFO:teuthology.orchestra.run.smithi044.stderr: item osd.2 weight 0.08730 2024-09-17T08:13:21.748 INFO:teuthology.orchestra.run.smithi044.stderr: item osd.3 weight 0.08730 2024-09-17T08:13:21.748 INFO:teuthology.orchestra.run.smithi044.stderr:} 2024-09-17T08:13:21.748 INFO:teuthology.orchestra.run.smithi044.stderr:root default { 2024-09-17T08:13:21.748 INFO:teuthology.orchestra.run.smithi044.stderr: id -1 # do not change unnecessarily 2024-09-17T08:13:21.748 INFO:teuthology.orchestra.run.smithi044.stderr: id -2 class ssd # do not change unnecessarily 2024-09-17T08:13:21.748 INFO:teuthology.orchestra.run.smithi044.stderr: # weight 0.34918 2024-09-17T08:13:21.748 INFO:teuthology.orchestra.run.smithi044.stderr: alg straw2 2024-09-17T08:13:21.748 INFO:teuthology.orchestra.run.smithi044.stderr: hash 0 # rjenkins1 2024-09-17T08:13:21.748 INFO:teuthology.orchestra.run.smithi044.stderr: item smithi044 weight 0.17459 2024-09-17T08:13:21.748 INFO:teuthology.orchestra.run.smithi044.stderr: item smithi145 weight 0.17459 2024-09-17T08:13:21.749 INFO:teuthology.orchestra.run.smithi044.stderr:} 2024-09-17T08:13:21.749 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-09-17T08:13:21.749 INFO:teuthology.orchestra.run.smithi044.stderr:# rules 2024-09-17T08:13:21.749 INFO:teuthology.orchestra.run.smithi044.stderr:rule replicated_rule { 2024-09-17T08:13:21.749 INFO:teuthology.orchestra.run.smithi044.stderr: id 0 2024-09-17T08:13:21.749 INFO:teuthology.orchestra.run.smithi044.stderr: type replicated 2024-09-17T08:13:21.749 INFO:teuthology.orchestra.run.smithi044.stderr: step take default 2024-09-17T08:13:21.749 INFO:teuthology.orchestra.run.smithi044.stderr: step choose firstn 0 type osd 2024-09-17T08:13:21.749 INFO:teuthology.orchestra.run.smithi044.stderr: step emit 2024-09-17T08:13:21.749 INFO:teuthology.orchestra.run.smithi044.stderr:} 2024-09-17T08:13:21.749 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-09-17T08:13:21.749 INFO:teuthology.orchestra.run.smithi044.stderr:# end crush map' 2024-09-17T08:13:21.749 INFO:teuthology.orchestra.run.smithi044.stderr:+ grep -q smithi152 2024-09-17T08:13:22.370 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-09-17T08:13:22.380 INFO:tasks.cephadm:Teardown begin 2024-09-17T08:13:22.380 DEBUG:teuthology.orchestra.run.smithi044:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T08:13:22.409 DEBUG:teuthology.orchestra.run.smithi145:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T08:13:22.443 DEBUG:teuthology.orchestra.run.smithi152:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T08:13:22.478 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-09-17T08:13:22.478 DEBUG:teuthology.orchestra.run.smithi044:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-17T08:13:22.495 DEBUG:teuthology.orchestra.run.smithi145:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-17T08:13:22.512 DEBUG:teuthology.orchestra.run.smithi152:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-17T08:13:22.536 INFO:tasks.cephadm:Stopping all daemons... 2024-09-17T08:13:22.537 INFO:tasks.cephadm.mon.a:Stopping mon.a... 2024-09-17T08:13:22.537 DEBUG:teuthology.orchestra.run.smithi044:> sudo systemctl stop ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@mon.a 2024-09-17T08:13:22.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:13:22 smithi044 ceph-mon[29204]: pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:13:22.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:13:22 smithi044 ceph-mon[29204]: from='client.? 172.21.15.44:0/1116582029' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-17T08:13:22.661 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:13:22 smithi044 systemd[1]: Stopping Ceph mon.a for ad90ed3e-74cb-11ef-bceb-c7b262605968... 2024-09-17T08:13:22.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:13:22 smithi145 ceph-mon[32346]: pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-17T08:13:22.753 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:13:22 smithi145 ceph-mon[32346]: from='client.? 172.21.15.44:0/1116582029' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-17T08:13:23.127 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:13:22 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mon-a[29200]: 2024-09-17T08:13:22.835+0000 7fbad87d1640 -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-17T08:13:23.127 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:13:22 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mon-a[29200]: 2024-09-17T08:13:22.835+0000 7fbad87d1640 -1 mon.a@0(leader) e4 *** Got Signal Terminated *** 2024-09-17T08:13:23.128 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:13:22 smithi044 podman[57961]: 2024-09-17 08:13:22.866070255 +0000 UTC m=+0.137598222 container died 6ceccba880ab315553c8bff159b4fccd0babc6c5182e56ef4cd7e6ba54bac891 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mon-a, GIT_CLEAN=True, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=reef-19e2a2b, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , ceph=True, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, CEPH_POINT_RELEASE=) 2024-09-17T08:13:23.411 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:13:23 smithi044 podman[57961]: 2024-09-17 08:13:23.284946808 +0000 UTC m=+0.556474757 container cleanup 6ceccba880ab315553c8bff159b4fccd0babc6c5182e56ef4cd7e6ba54bac891 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mon-a, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, RELEASE=reef-19e2a2b, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.build-date=20240731, GIT_CLEAN=True, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-17T08:13:23.411 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:13:23 smithi044 bash[57961]: ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mon-a 2024-09-17T08:13:23.711 DEBUG:teuthology.orchestra.run.smithi044:> sudo pkill -f 'journalctl -f -n 0 -u ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@mon.a.service' 2024-09-17T08:13:23.734 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:13:23 smithi044 podman[57984]: 2024-09-17 08:13:23.469725344 +0000 UTC m=+0.602037440 container remove 6ceccba880ab315553c8bff159b4fccd0babc6c5182e56ef4cd7e6ba54bac891 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mon-a, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, io.buildah.version=1.37.2, RELEASE=reef-19e2a2b, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, ceph=True, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, GIT_CLEAN=True, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD) 2024-09-17T08:13:23.734 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:13:23 smithi044 systemd[1]: ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@mon.a.service: Deactivated successfully. 2024-09-17T08:13:23.734 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:13:23 smithi044 systemd[1]: Stopped Ceph mon.a for ad90ed3e-74cb-11ef-bceb-c7b262605968. 2024-09-17T08:13:23.734 INFO:journalctl@ceph.mon.a.smithi044.stdout:Sep 17 08:13:23 smithi044 systemd[1]: ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@mon.a.service: Consumed 6.655s CPU time. 2024-09-17T08:13:23.761 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T08:13:23.762 INFO:tasks.cephadm.mon.a:Stopped mon.a 2024-09-17T08:13:23.762 INFO:tasks.cephadm.mon.c:Stopping mon.b... 2024-09-17T08:13:23.762 DEBUG:teuthology.orchestra.run.smithi145:> sudo systemctl stop ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@mon.b 2024-09-17T08:13:24.064 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:13:23 smithi145 systemd[1]: Stopping Ceph mon.b for ad90ed3e-74cb-11ef-bceb-c7b262605968... 2024-09-17T08:13:24.489 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:13:24 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mon-b[32342]: 2024-09-17T08:13:24.063+0000 7f569b6a6640 -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-17T08:13:24.489 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:13:24 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mon-b[32342]: 2024-09-17T08:13:24.063+0000 7f569b6a6640 -1 mon.b@1(peon) e4 *** Got Signal Terminated *** 2024-09-17T08:13:24.489 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:13:24 smithi145 podman[47480]: 2024-09-17 08:13:24.217266675 +0000 UTC m=+0.264550542 container died 25ec726eca96983ae6223838d734a8ff1b11ad93deddf422f1399833c737e6d7 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mon-b, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=reef-19e2a2b, CEPH_POINT_RELEASE=, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, GIT_CLEAN=True, io.buildah.version=1.37.2) 2024-09-17T08:13:24.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:13:24 smithi145 podman[47480]: 2024-09-17 08:13:24.664002247 +0000 UTC m=+0.711286114 container cleanup 25ec726eca96983ae6223838d734a8ff1b11ad93deddf422f1399833c737e6d7 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mon-b, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, RELEASE=reef-19e2a2b, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, GIT_CLEAN=True, org.label-schema.build-date=20240731, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, ceph=True, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS) 2024-09-17T08:13:24.752 INFO:journalctl@ceph.mon.b.smithi145.stdout:Sep 17 08:13:24 smithi145 bash[47480]: ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mon-b 2024-09-17T08:13:25.039 DEBUG:teuthology.orchestra.run.smithi145:> sudo pkill -f 'journalctl -f -n 0 -u ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@mon.b.service' 2024-09-17T08:13:25.082 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T08:13:25.083 INFO:tasks.cephadm.mon.c:Stopped mon.b 2024-09-17T08:13:25.083 INFO:tasks.cephadm.mon.c:Stopping mon.c... 2024-09-17T08:13:25.083 DEBUG:teuthology.orchestra.run.smithi152:> sudo systemctl stop ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@mon.c 2024-09-17T08:13:25.128 DEBUG:teuthology.orchestra.run.smithi152:> sudo pkill -f 'journalctl -f -n 0 -u ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@mon.c.service' 2024-09-17T08:13:25.179 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T08:13:25.179 INFO:tasks.cephadm.mon.c:Stopped mon.c 2024-09-17T08:13:25.179 INFO:tasks.cephadm.mgr.a:Stopping mgr.a... 2024-09-17T08:13:25.179 DEBUG:teuthology.orchestra.run.smithi044:> sudo systemctl stop ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@mgr.a 2024-09-17T08:13:25.489 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:13:25 smithi044 systemd[1]: Stopping Ceph mgr.a for ad90ed3e-74cb-11ef-bceb-c7b262605968... 2024-09-17T08:13:25.790 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:13:25 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a[29429]: 2024-09-17T08:13:25.489+0000 7fa8afd60640 -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-17T08:13:25.790 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:13:25 smithi044 podman[58178]: 2024-09-17 08:13:25.520906377 +0000 UTC m=+0.146818037 container died 07bbec32ecc7564ecd44166d21bfc4e63b6f12d236230776e9bd5c6449a30dab (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a, ceph=True, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, RELEASE=reef-19e2a2b, GIT_CLEAN=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731) 2024-09-17T08:13:26.140 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:13:25 smithi044 podman[58178]: 2024-09-17 08:13:25.947767699 +0000 UTC m=+0.573679357 container cleanup 07bbec32ecc7564ecd44166d21bfc4e63b6f12d236230776e9bd5c6449a30dab (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, GIT_CLEAN=True, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, ceph=True, RELEASE=reef-19e2a2b, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-17T08:13:26.140 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:13:25 smithi044 bash[58178]: ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a 2024-09-17T08:13:26.389 DEBUG:teuthology.orchestra.run.smithi044:> sudo pkill -f 'journalctl -f -n 0 -u ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@mgr.a.service' 2024-09-17T08:13:26.411 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:13:26 smithi044 podman[58190]: 2024-09-17 08:13:26.140658908 +0000 UTC m=+0.619791506 container remove 07bbec32ecc7564ecd44166d21bfc4e63b6f12d236230776e9bd5c6449a30dab (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-a, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, RELEASE=reef-19e2a2b, GIT_CLEAN=True, io.buildah.version=1.37.2, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, ceph=True, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=) 2024-09-17T08:13:26.411 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:13:26 smithi044 systemd[1]: ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@mgr.a.service: Deactivated successfully. 2024-09-17T08:13:26.411 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:13:26 smithi044 systemd[1]: Stopped Ceph mgr.a for ad90ed3e-74cb-11ef-bceb-c7b262605968. 2024-09-17T08:13:26.411 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Sep 17 08:13:26 smithi044 systemd[1]: ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@mgr.a.service: Consumed 34.490s CPU time. 2024-09-17T08:13:26.424 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T08:13:26.424 INFO:tasks.cephadm.mgr.a:Stopped mgr.a 2024-09-17T08:13:26.425 INFO:tasks.cephadm.mgr.b:Stopping mgr.b... 2024-09-17T08:13:26.425 DEBUG:teuthology.orchestra.run.smithi145:> sudo systemctl stop ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@mgr.b 2024-09-17T08:13:26.739 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:13:26 smithi145 systemd[1]: Stopping Ceph mgr.b for ad90ed3e-74cb-11ef-bceb-c7b262605968... 2024-09-17T08:13:27.002 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:13:26 smithi145 podman[47602]: 2024-09-17 08:13:26.739325601 +0000 UTC m=+0.109819470 container died 9bec378183b2510730dab61d14fd8676c9b702b4fbdc145911d48782749c22cb (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-b, ceph=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, io.buildah.version=1.37.2, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=reef-19e2a2b) 2024-09-17T08:13:27.374 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:13:27 smithi145 podman[47602]: 2024-09-17 08:13:27.043412391 +0000 UTC m=+0.413906260 container cleanup 9bec378183b2510730dab61d14fd8676c9b702b4fbdc145911d48782749c22cb (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-b, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , RELEASE=reef-19e2a2b, CEPH_POINT_RELEASE=, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, ceph=True, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0) 2024-09-17T08:13:27.374 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:13:27 smithi145 bash[47602]: ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-b 2024-09-17T08:13:27.374 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:13:27 smithi145 podman[47613]: 2024-09-17 08:13:27.269569069 +0000 UTC m=+0.522779307 container remove 9bec378183b2510730dab61d14fd8676c9b702b4fbdc145911d48782749c22cb (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-mgr-b, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240731, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, RELEASE=reef-19e2a2b, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2) 2024-09-17T08:13:27.374 INFO:journalctl@ceph.mgr.b.smithi145.stdout:Sep 17 08:13:27 smithi145 systemd[1]: ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@mgr.b.service: Main process exited, code=exited, status=143/n/a 2024-09-17T08:13:27.391 DEBUG:teuthology.orchestra.run.smithi145:> sudo pkill -f 'journalctl -f -n 0 -u ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@mgr.b.service' 2024-09-17T08:13:27.424 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T08:13:27.424 INFO:tasks.cephadm.mgr.b:Stopped mgr.b 2024-09-17T08:13:27.425 INFO:tasks.cephadm.osd.0:Stopping osd.0... 2024-09-17T08:13:27.425 DEBUG:teuthology.orchestra.run.smithi044:> sudo systemctl stop ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@osd.0 2024-09-17T08:13:27.743 INFO:journalctl@ceph.osd.0.smithi044.stdout:Sep 17 08:13:27 smithi044 systemd[1]: Stopping Ceph osd.0 for ad90ed3e-74cb-11ef-bceb-c7b262605968... 2024-09-17T08:13:28.161 INFO:journalctl@ceph.osd.0.smithi044.stdout:Sep 17 08:13:27 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-0[43212]: 2024-09-17T08:13:27.743+0000 7f0c2a502640 -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-17T08:13:28.161 INFO:journalctl@ceph.osd.0.smithi044.stdout:Sep 17 08:13:27 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-0[43212]: 2024-09-17T08:13:27.743+0000 7f0c2a502640 -1 osd.0 57 *** Got signal Terminated *** 2024-09-17T08:13:28.161 INFO:journalctl@ceph.osd.0.smithi044.stdout:Sep 17 08:13:27 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-0[43212]: 2024-09-17T08:13:27.743+0000 7f0c2a502640 -1 osd.0 57 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-17T08:13:33.567 INFO:journalctl@ceph.osd.0.smithi044.stdout:Sep 17 08:13:33 smithi044 podman[58302]: 2024-09-17 08:13:33.261996143 +0000 UTC m=+5.637939571 container died 7fbe2331b505ce75f7a46cfbc2c31ed0e5f8c2579992cd62e4aafc61a3dc63f1 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-0, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, RELEASE=reef-19e2a2b, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, CEPH_POINT_RELEASE=, GIT_CLEAN=True) 2024-09-17T08:13:33.911 INFO:journalctl@ceph.osd.0.smithi044.stdout:Sep 17 08:13:33 smithi044 podman[58302]: 2024-09-17 08:13:33.584805301 +0000 UTC m=+5.960748722 container cleanup 7fbe2331b505ce75f7a46cfbc2c31ed0e5f8c2579992cd62e4aafc61a3dc63f1 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-0, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, GIT_CLEAN=True, io.buildah.version=1.37.2, ceph=True, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=reef-19e2a2b, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-17T08:13:33.911 INFO:journalctl@ceph.osd.0.smithi044.stdout:Sep 17 08:13:33 smithi044 bash[58302]: ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-0 2024-09-17T08:13:33.911 INFO:journalctl@ceph.osd.0.smithi044.stdout:Sep 17 08:13:33 smithi044 podman[58317]: 2024-09-17 08:13:33.769169581 +0000 UTC m=+0.501795063 container remove 7fbe2331b505ce75f7a46cfbc2c31ed0e5f8c2579992cd62e4aafc61a3dc63f1 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-0, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, ceph=True, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, RELEASE=reef-19e2a2b, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True) 2024-09-17T08:13:34.497 INFO:journalctl@ceph.osd.0.smithi044.stdout:Sep 17 08:13:34 smithi044 podman[58408]: 2024-09-17 08:13:34.109195868 +0000 UTC m=+0.016470863 image pull 980a0bfcd684674f25c08d857ad8de3b1c8ae738870529edbf9aa463832c8d89 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9 2024-09-17T08:13:34.497 INFO:journalctl@ceph.osd.0.smithi044.stdout:Sep 17 08:13:34 smithi044 podman[58408]: 2024-09-17 08:13:34.219913734 +0000 UTC m=+0.127188712 container create d2930bfd0fbdcab3b8bfe71ea9be97ccc649fa9c597061f7ae0b0b61188f0ef1 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-0-deactivate, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, GIT_CLEAN=True, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, RELEASE=reef-19e2a2b, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, ceph=True) 2024-09-17T08:13:34.497 INFO:journalctl@ceph.osd.0.smithi044.stdout:Sep 17 08:13:34 smithi044 podman[58408]: 2024-09-17 08:13:34.438925434 +0000 UTC m=+0.346200422 container init d2930bfd0fbdcab3b8bfe71ea9be97ccc649fa9c597061f7ae0b0b61188f0ef1 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-0-deactivate, ceph=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, RELEASE=reef-19e2a2b, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-17T08:13:34.497 INFO:journalctl@ceph.osd.0.smithi044.stdout:Sep 17 08:13:34 smithi044 podman[58408]: 2024-09-17 08:13:34.442356296 +0000 UTC m=+0.349631278 container start d2930bfd0fbdcab3b8bfe71ea9be97ccc649fa9c597061f7ae0b0b61188f0ef1 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-0-deactivate, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, RELEASE=reef-19e2a2b, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD) 2024-09-17T08:13:34.497 INFO:journalctl@ceph.osd.0.smithi044.stdout:Sep 17 08:13:34 smithi044 podman[58408]: 2024-09-17 08:13:34.497214205 +0000 UTC m=+0.404489204 container attach d2930bfd0fbdcab3b8bfe71ea9be97ccc649fa9c597061f7ae0b0b61188f0ef1 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-0-deactivate, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=reef-19e2a2b, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_CLEAN=True, ceph=True) 2024-09-17T08:13:34.849 INFO:journalctl@ceph.osd.0.smithi044.stdout:Sep 17 08:13:34 smithi044 podman[58408]: 2024-09-17 08:13:34.633068205 +0000 UTC m=+0.540343184 container died d2930bfd0fbdcab3b8bfe71ea9be97ccc649fa9c597061f7ae0b0b61188f0ef1 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-0-deactivate, CEPH_POINT_RELEASE=, ceph=True, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.37.2, GIT_CLEAN=True, org.label-schema.build-date=20240731, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, RELEASE=reef-19e2a2b) 2024-09-17T08:13:35.074 DEBUG:teuthology.orchestra.run.smithi044:> sudo pkill -f 'journalctl -f -n 0 -u ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@osd.0.service' 2024-09-17T08:13:35.099 INFO:journalctl@ceph.osd.0.smithi044.stdout:Sep 17 08:13:35 smithi044 podman[58431]: 2024-09-17 08:13:35.050275187 +0000 UTC m=+0.408154510 container remove d2930bfd0fbdcab3b8bfe71ea9be97ccc649fa9c597061f7ae0b0b61188f0ef1 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-0-deactivate, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=reef-19e2a2b, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2) 2024-09-17T08:13:35.099 INFO:journalctl@ceph.osd.0.smithi044.stdout:Sep 17 08:13:35 smithi044 systemd[1]: ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@osd.0.service: Deactivated successfully. 2024-09-17T08:13:35.099 INFO:journalctl@ceph.osd.0.smithi044.stdout:Sep 17 08:13:35 smithi044 systemd[1]: Stopped Ceph osd.0 for ad90ed3e-74cb-11ef-bceb-c7b262605968. 2024-09-17T08:13:35.099 INFO:journalctl@ceph.osd.0.smithi044.stdout:Sep 17 08:13:35 smithi044 systemd[1]: ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@osd.0.service: Consumed 3.057s CPU time. 2024-09-17T08:13:35.114 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T08:13:35.114 INFO:tasks.cephadm.osd.0:Stopped osd.0 2024-09-17T08:13:35.115 INFO:tasks.cephadm.osd.1:Stopping osd.1... 2024-09-17T08:13:35.115 DEBUG:teuthology.orchestra.run.smithi044:> sudo systemctl stop ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@osd.1 2024-09-17T08:13:35.362 INFO:journalctl@ceph.osd.1.smithi044.stdout:Sep 17 08:13:35 smithi044 systemd[1]: Stopping Ceph osd.1 for ad90ed3e-74cb-11ef-bceb-c7b262605968... 2024-09-17T08:13:35.661 INFO:journalctl@ceph.osd.1.smithi044.stdout:Sep 17 08:13:35 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-1[48801]: 2024-09-17T08:13:35.487+0000 7f18d9078640 -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-17T08:13:35.661 INFO:journalctl@ceph.osd.1.smithi044.stdout:Sep 17 08:13:35 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-1[48801]: 2024-09-17T08:13:35.487+0000 7f18d9078640 -1 osd.1 57 *** Got signal Terminated *** 2024-09-17T08:13:35.661 INFO:journalctl@ceph.osd.1.smithi044.stdout:Sep 17 08:13:35 smithi044 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-1[48801]: 2024-09-17T08:13:35.487+0000 7f18d9078640 -1 osd.1 57 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-17T08:13:41.122 INFO:journalctl@ceph.osd.1.smithi044.stdout:Sep 17 08:13:40 smithi044 podman[58510]: 2024-09-17 08:13:40.856994703 +0000 UTC m=+5.480185082 container died 704ca0d67b0de39fc8aae2d0e64be0a6b8c674d3e94c29f52bfb134b16a8e0ce (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-1, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=reef-19e2a2b, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, ceph=True, org.label-schema.build-date=20240731, GIT_CLEAN=True, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965) 2024-09-17T08:13:41.395 INFO:journalctl@ceph.osd.1.smithi044.stdout:Sep 17 08:13:41 smithi044 podman[58510]: 2024-09-17 08:13:41.202669422 +0000 UTC m=+5.825859798 container cleanup 704ca0d67b0de39fc8aae2d0e64be0a6b8c674d3e94c29f52bfb134b16a8e0ce (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-1, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, CEPH_POINT_RELEASE=, 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, RELEASE=reef-19e2a2b, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, ceph=True, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS) 2024-09-17T08:13:41.395 INFO:journalctl@ceph.osd.1.smithi044.stdout:Sep 17 08:13:41 smithi044 bash[58510]: ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-1 2024-09-17T08:13:41.661 INFO:journalctl@ceph.osd.1.smithi044.stdout:Sep 17 08:13:41 smithi044 podman[58540]: 2024-09-17 08:13:41.395239008 +0000 UTC m=+0.532696967 container remove 704ca0d67b0de39fc8aae2d0e64be0a6b8c674d3e94c29f52bfb134b16a8e0ce (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-1, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=reef-19e2a2b, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , GIT_CLEAN=True, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True) 2024-09-17T08:13:42.039 INFO:journalctl@ceph.osd.1.smithi044.stdout:Sep 17 08:13:41 smithi044 podman[58631]: 2024-09-17 08:13:41.787638332 +0000 UTC m=+0.106727959 container create b2ca819f93e8d2c7e3043704e4ee0b78d8a67a37da280efe32e6afafbb26ff69 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-1-deactivate, RELEASE=reef-19e2a2b, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , GIT_CLEAN=True, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-17T08:13:42.039 INFO:journalctl@ceph.osd.1.smithi044.stdout:Sep 17 08:13:41 smithi044 podman[58631]: 2024-09-17 08:13:41.697098784 +0000 UTC m=+0.016188435 image pull 980a0bfcd684674f25c08d857ad8de3b1c8ae738870529edbf9aa463832c8d89 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9 2024-09-17T08:13:42.039 INFO:journalctl@ceph.osd.1.smithi044.stdout:Sep 17 08:13:41 smithi044 podman[58631]: 2024-09-17 08:13:41.964912806 +0000 UTC m=+0.284002446 container init b2ca819f93e8d2c7e3043704e4ee0b78d8a67a37da280efe32e6afafbb26ff69 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-1-deactivate, org.label-schema.license=GPLv2, RELEASE=reef-19e2a2b, org.label-schema.build-date=20240731, GIT_CLEAN=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=) 2024-09-17T08:13:42.039 INFO:journalctl@ceph.osd.1.smithi044.stdout:Sep 17 08:13:41 smithi044 podman[58631]: 2024-09-17 08:13:41.968274935 +0000 UTC m=+0.287364563 container start b2ca819f93e8d2c7e3043704e4ee0b78d8a67a37da280efe32e6afafbb26ff69 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-1-deactivate, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, io.buildah.version=1.37.2, GIT_CLEAN=True, org.label-schema.vendor=CentOS, RELEASE=reef-19e2a2b, ceph=True, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-17T08:13:42.039 INFO:journalctl@ceph.osd.1.smithi044.stdout:Sep 17 08:13:42 smithi044 podman[58631]: 2024-09-17 08:13:42.039686569 +0000 UTC m=+0.358776198 container attach b2ca819f93e8d2c7e3043704e4ee0b78d8a67a37da280efe32e6afafbb26ff69 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-1-deactivate, ceph=True, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_CLEAN=True, RELEASE=reef-19e2a2b, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-17T08:13:42.411 INFO:journalctl@ceph.osd.1.smithi044.stdout:Sep 17 08:13:42 smithi044 podman[58631]: 2024-09-17 08:13:42.15904924 +0000 UTC m=+0.478138877 container died b2ca819f93e8d2c7e3043704e4ee0b78d8a67a37da280efe32e6afafbb26ff69 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-1-deactivate, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, io.buildah.version=1.37.2, GIT_CLEAN=True, RELEASE=reef-19e2a2b, ceph=True) 2024-09-17T08:13:42.716 DEBUG:teuthology.orchestra.run.smithi044:> sudo pkill -f 'journalctl -f -n 0 -u ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@osd.1.service' 2024-09-17T08:13:42.757 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T08:13:42.758 INFO:tasks.cephadm.osd.1:Stopped osd.1 2024-09-17T08:13:42.758 INFO:tasks.cephadm.osd.2:Stopping osd.2... 2024-09-17T08:13:42.758 DEBUG:teuthology.orchestra.run.smithi145:> sudo systemctl stop ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@osd.2 2024-09-17T08:13:43.054 INFO:journalctl@ceph.osd.2.smithi145.stdout:Sep 17 08:13:42 smithi145 systemd[1]: Stopping Ceph osd.2 for ad90ed3e-74cb-11ef-bceb-c7b262605968... 2024-09-17T08:13:43.308 INFO:journalctl@ceph.osd.2.smithi145.stdout:Sep 17 08:13:43 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-2[36556]: 2024-09-17T08:13:43.054+0000 7f2cedde7640 -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-17T08:13:43.308 INFO:journalctl@ceph.osd.2.smithi145.stdout:Sep 17 08:13:43 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-2[36556]: 2024-09-17T08:13:43.054+0000 7f2cedde7640 -1 osd.2 57 *** Got signal Terminated *** 2024-09-17T08:13:43.308 INFO:journalctl@ceph.osd.2.smithi145.stdout:Sep 17 08:13:43 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-2[36556]: 2024-09-17T08:13:43.054+0000 7f2cedde7640 -1 osd.2 57 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-17T08:13:48.613 INFO:journalctl@ceph.osd.2.smithi145.stdout:Sep 17 08:13:48 smithi145 podman[47730]: 2024-09-17 08:13:48.361994903 +0000 UTC m=+5.409265734 container died c50b32c86ad115acd825911f7dc66f239bda75180eeca8ba3bd3ea1043f0e187 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-2, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, RELEASE=reef-19e2a2b, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, ceph=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965) 2024-09-17T08:13:48.955 INFO:journalctl@ceph.osd.2.smithi145.stdout:Sep 17 08:13:48 smithi145 podman[47730]: 2024-09-17 08:13:48.779071644 +0000 UTC m=+5.826342517 container cleanup c50b32c86ad115acd825911f7dc66f239bda75180eeca8ba3bd3ea1043f0e187 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-2, ceph=True, RELEASE=reef-19e2a2b, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, GIT_CLEAN=True, maintainer=Guillaume Abrioux ) 2024-09-17T08:13:48.955 INFO:journalctl@ceph.osd.2.smithi145.stdout:Sep 17 08:13:48 smithi145 bash[47730]: ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-2 2024-09-17T08:13:49.252 INFO:journalctl@ceph.osd.2.smithi145.stdout:Sep 17 08:13:48 smithi145 podman[47759]: 2024-09-17 08:13:48.955434778 +0000 UTC m=+0.585389485 container remove c50b32c86ad115acd825911f7dc66f239bda75180eeca8ba3bd3ea1043f0e187 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-2, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, ceph=True, GIT_CLEAN=True, RELEASE=reef-19e2a2b) 2024-09-17T08:13:49.600 INFO:journalctl@ceph.osd.2.smithi145.stdout:Sep 17 08:13:49 smithi145 podman[47844]: 2024-09-17 08:13:49.178754366 +0000 UTC m=+0.015517513 image pull 980a0bfcd684674f25c08d857ad8de3b1c8ae738870529edbf9aa463832c8d89 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9 2024-09-17T08:13:49.600 INFO:journalctl@ceph.osd.2.smithi145.stdout:Sep 17 08:13:49 smithi145 podman[47844]: 2024-09-17 08:13:49.299530752 +0000 UTC m=+0.136293892 container create 08a72a7509b4f64284fa03c8841ab80f3274a6884b8844cae8e733c0e615148f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-2-deactivate, org.label-schema.vendor=CentOS, RELEASE=reef-19e2a2b, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, GIT_CLEAN=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, org.label-schema.schema-version=1.0) 2024-09-17T08:13:49.600 INFO:journalctl@ceph.osd.2.smithi145.stdout:Sep 17 08:13:49 smithi145 podman[47844]: 2024-09-17 08:13:49.516829292 +0000 UTC m=+0.353592445 container init 08a72a7509b4f64284fa03c8841ab80f3274a6884b8844cae8e733c0e615148f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-2-deactivate, org.label-schema.vendor=CentOS, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0, GIT_CLEAN=True, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, RELEASE=reef-19e2a2b, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True) 2024-09-17T08:13:49.600 INFO:journalctl@ceph.osd.2.smithi145.stdout:Sep 17 08:13:49 smithi145 podman[47844]: 2024-09-17 08:13:49.520287633 +0000 UTC m=+0.357050778 container start 08a72a7509b4f64284fa03c8841ab80f3274a6884b8844cae8e733c0e615148f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-2-deactivate, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240731, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, GIT_CLEAN=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, RELEASE=reef-19e2a2b, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-17T08:13:49.600 INFO:journalctl@ceph.osd.2.smithi145.stdout:Sep 17 08:13:49 smithi145 podman[47844]: 2024-09-17 08:13:49.600025912 +0000 UTC m=+0.436789053 container attach 08a72a7509b4f64284fa03c8841ab80f3274a6884b8844cae8e733c0e615148f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-2-deactivate, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, ceph=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0, RELEASE=reef-19e2a2b, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-17T08:13:49.993 INFO:journalctl@ceph.osd.2.smithi145.stdout:Sep 17 08:13:49 smithi145 podman[47844]: 2024-09-17 08:13:49.706451532 +0000 UTC m=+0.543214673 container died 08a72a7509b4f64284fa03c8841ab80f3274a6884b8844cae8e733c0e615148f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-2-deactivate, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, ceph=True, RELEASE=reef-19e2a2b, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, GIT_CLEAN=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0) 2024-09-17T08:13:50.310 DEBUG:teuthology.orchestra.run.smithi145:> sudo pkill -f 'journalctl -f -n 0 -u ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@osd.2.service' 2024-09-17T08:13:50.350 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T08:13:50.350 INFO:tasks.cephadm.osd.2:Stopped osd.2 2024-09-17T08:13:50.350 INFO:tasks.cephadm.osd.3:Stopping osd.3... 2024-09-17T08:13:50.350 DEBUG:teuthology.orchestra.run.smithi145:> sudo systemctl stop ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@osd.3 2024-09-17T08:13:50.666 INFO:journalctl@ceph.osd.3.smithi145.stdout:Sep 17 08:13:50 smithi145 systemd[1]: Stopping Ceph osd.3 for ad90ed3e-74cb-11ef-bceb-c7b262605968... 2024-09-17T08:13:51.002 INFO:journalctl@ceph.osd.3.smithi145.stdout:Sep 17 08:13:50 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-3[42449]: 2024-09-17T08:13:50.665+0000 7f29e3b72640 -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-17T08:13:51.002 INFO:journalctl@ceph.osd.3.smithi145.stdout:Sep 17 08:13:50 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-3[42449]: 2024-09-17T08:13:50.665+0000 7f29e3b72640 -1 osd.3 57 *** Got signal Terminated *** 2024-09-17T08:13:51.002 INFO:journalctl@ceph.osd.3.smithi145.stdout:Sep 17 08:13:50 smithi145 ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-3[42449]: 2024-09-17T08:13:50.665+0000 7f29e3b72640 -1 osd.3 57 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-17T08:13:56.423 INFO:journalctl@ceph.osd.3.smithi145.stdout:Sep 17 08:13:56 smithi145 podman[47946]: 2024-09-17 08:13:56.016881954 +0000 UTC m=+5.433908962 container died 154a905b294b463f8a7f07bb696a9e80b0e1e2042286e5bcc86304e71179927a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-3, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, ceph=True, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_CLEAN=True, RELEASE=reef-19e2a2b, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731) 2024-09-17T08:13:56.423 INFO:journalctl@ceph.osd.3.smithi145.stdout:Sep 17 08:13:56 smithi145 podman[47946]: 2024-09-17 08:13:56.423162029 +0000 UTC m=+5.840189084 container cleanup 154a905b294b463f8a7f07bb696a9e80b0e1e2042286e5bcc86304e71179927a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-3, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, ceph=True, RELEASE=reef-19e2a2b, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-17T08:13:56.752 INFO:journalctl@ceph.osd.3.smithi145.stdout:Sep 17 08:13:56 smithi145 bash[47946]: ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-3 2024-09-17T08:13:56.752 INFO:journalctl@ceph.osd.3.smithi145.stdout:Sep 17 08:13:56 smithi145 podman[47961]: 2024-09-17 08:13:56.632634256 +0000 UTC m=+0.611050528 container remove 154a905b294b463f8a7f07bb696a9e80b0e1e2042286e5bcc86304e71179927a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-3, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, ceph=True, GIT_CLEAN=True, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, RELEASE=reef-19e2a2b, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux ) 2024-09-17T08:13:57.202 INFO:journalctl@ceph.osd.3.smithi145.stdout:Sep 17 08:13:56 smithi145 podman[48052]: 2024-09-17 08:13:56.941705665 +0000 UTC m=+0.093752773 container create ac14604e7a3550079a1fc19f7c8e5a2e47260e029b732b41b906240e7cf0345f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-3-deactivate, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_CLEAN=True, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, RELEASE=reef-19e2a2b, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux ) 2024-09-17T08:13:57.202 INFO:journalctl@ceph.osd.3.smithi145.stdout:Sep 17 08:13:56 smithi145 podman[48052]: 2024-09-17 08:13:56.86434759 +0000 UTC m=+0.016394669 image pull 980a0bfcd684674f25c08d857ad8de3b1c8ae738870529edbf9aa463832c8d89 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9 2024-09-17T08:13:57.202 INFO:journalctl@ceph.osd.3.smithi145.stdout:Sep 17 08:13:57 smithi145 podman[48052]: 2024-09-17 08:13:57.119299459 +0000 UTC m=+0.271346536 container init ac14604e7a3550079a1fc19f7c8e5a2e47260e029b732b41b906240e7cf0345f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-3-deactivate, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, RELEASE=reef-19e2a2b, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_CLEAN=True, org.label-schema.vendor=CentOS, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD) 2024-09-17T08:13:57.202 INFO:journalctl@ceph.osd.3.smithi145.stdout:Sep 17 08:13:57 smithi145 podman[48052]: 2024-09-17 08:13:57.122578316 +0000 UTC m=+0.274625387 container start ac14604e7a3550079a1fc19f7c8e5a2e47260e029b732b41b906240e7cf0345f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-3-deactivate, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, ceph=True, org.label-schema.schema-version=1.0, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, RELEASE=reef-19e2a2b, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, GIT_CLEAN=True, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux ) 2024-09-17T08:13:57.202 INFO:journalctl@ceph.osd.3.smithi145.stdout:Sep 17 08:13:57 smithi145 podman[48052]: 2024-09-17 08:13:57.20230878 +0000 UTC m=+0.354355855 container attach ac14604e7a3550079a1fc19f7c8e5a2e47260e029b732b41b906240e7cf0345f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-3-deactivate, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , ceph=True, RELEASE=reef-19e2a2b, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, org.label-schema.build-date=20240731) 2024-09-17T08:13:57.502 INFO:journalctl@ceph.osd.3.smithi145.stdout:Sep 17 08:13:57 smithi145 podman[48052]: 2024-09-17 08:13:57.309960643 +0000 UTC m=+0.462007723 container died ac14604e7a3550079a1fc19f7c8e5a2e47260e029b732b41b906240e7cf0345f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968-osd-3-deactivate, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, GIT_CLEAN=True, RELEASE=reef-19e2a2b, org.label-schema.build-date=20240731, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-17T08:13:57.875 DEBUG:teuthology.orchestra.run.smithi145:> sudo pkill -f 'journalctl -f -n 0 -u ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@osd.3.service' 2024-09-17T08:13:57.913 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T08:13:57.913 INFO:tasks.cephadm.osd.3:Stopped osd.3 2024-09-17T08:13:57.913 INFO:tasks.cephadm.osd.4:Stopping osd.4... 2024-09-17T08:13:57.913 DEBUG:teuthology.orchestra.run.smithi152:> sudo systemctl stop ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@osd.4 2024-09-17T08:13:57.965 DEBUG:teuthology.orchestra.run.smithi152:> sudo pkill -f 'journalctl -f -n 0 -u ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@osd.4.service' 2024-09-17T08:13:58.001 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T08:13:58.001 INFO:tasks.cephadm.osd.4:Stopped osd.4 2024-09-17T08:13:58.002 INFO:tasks.cephadm.osd.5:Stopping osd.5... 2024-09-17T08:13:58.002 DEBUG:teuthology.orchestra.run.smithi152:> sudo systemctl stop ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@osd.5 2024-09-17T08:13:58.081 DEBUG:teuthology.orchestra.run.smithi152:> sudo pkill -f 'journalctl -f -n 0 -u ceph-ad90ed3e-74cb-11ef-bceb-c7b262605968@osd.5.service' 2024-09-17T08:13:58.154 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T08:13:58.155 INFO:tasks.cephadm.osd.5:Stopped osd.5 2024-09-17T08:13:58.155 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-17T08:13:58.317 INFO:teuthology.orchestra.run.smithi044.stdout:Deleting cluster with fsid: ad90ed3e-74cb-11ef-bceb-c7b262605968 2024-09-17T08:13:59.517 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-17T08:13:59.671 INFO:teuthology.orchestra.run.smithi145.stdout:Deleting cluster with fsid: ad90ed3e-74cb-11ef-bceb-c7b262605968 2024-09-17T08:14:00.848 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-17T08:14:01.002 INFO:teuthology.orchestra.run.smithi152.stdout:Deleting cluster with fsid: ad90ed3e-74cb-11ef-bceb-c7b262605968 2024-09-17T08:14:01.402 DEBUG:teuthology.orchestra.run.smithi044:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T08:14:01.435 DEBUG:teuthology.orchestra.run.smithi145:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T08:14:01.463 DEBUG:teuthology.orchestra.run.smithi152:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T08:14:01.490 INFO:tasks.cephadm:Archiving crash dumps... 2024-09-17T08:14:01.492 DEBUG:teuthology.misc:Transferring archived files from smithi044:/var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908188/remote/smithi044/crash 2024-09-17T08:14:01.493 DEBUG:teuthology.orchestra.run.smithi044:> sudo tar c -f - -C /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/crash -- . 2024-09-17T08:14:01.539 INFO:teuthology.orchestra.run.smithi044.stderr:tar: /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-17T08:14:01.539 INFO:teuthology.orchestra.run.smithi044.stderr:tar: Error is not recoverable: exiting now 2024-09-17T08:14:01.541 DEBUG:teuthology.misc:Transferring archived files from smithi145:/var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908188/remote/smithi145/crash 2024-09-17T08:14:01.542 DEBUG:teuthology.orchestra.run.smithi145:> sudo tar c -f - -C /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/crash -- . 2024-09-17T08:14:01.579 INFO:teuthology.orchestra.run.smithi145.stderr:tar: /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-17T08:14:01.579 INFO:teuthology.orchestra.run.smithi145.stderr:tar: Error is not recoverable: exiting now 2024-09-17T08:14:01.580 DEBUG:teuthology.misc:Transferring archived files from smithi152:/var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908188/remote/smithi152/crash 2024-09-17T08:14:01.581 DEBUG:teuthology.orchestra.run.smithi152:> sudo tar c -f - -C /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/crash -- . 2024-09-17T08:14:01.625 INFO:teuthology.orchestra.run.smithi152.stderr:tar: /var/lib/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-17T08:14:01.625 INFO:teuthology.orchestra.run.smithi152.stderr:tar: Error is not recoverable: exiting now 2024-09-17T08:14:01.626 INFO:tasks.cephadm:Checking cluster log for badness... 2024-09-17T08:14:01.626 DEBUG:teuthology.orchestra.run.smithi044:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/ad90ed3e-74cb-11ef-bceb-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-17T08:14:01.659 INFO:teuthology.orchestra.run.smithi044.stderr:grep: /var/log/ceph/ad90ed3e-74cb-11ef-bceb-c7b262605968/ceph.log: No such file or directory 2024-09-17T08:14:01.661 INFO:tasks.cephadm:Compressing logs... 2024-09-17T08:14:01.661 DEBUG:teuthology.orchestra.run.smithi044:> sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-17T08:14:01.705 DEBUG:teuthology.orchestra.run.smithi145:> sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-17T08:14:01.707 DEBUG:teuthology.orchestra.run.smithi152:> sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-17T08:14:01.730 INFO:teuthology.orchestra.run.smithi145.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2024-09-17T08:14:01.731 INFO:teuthology.orchestra.run.smithi044.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2024-09-17T08:14:01.732 INFO:teuthology.orchestra.run.smithi152.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2024-09-17T08:14:02.185 INFO:tasks.cephadm:Archiving logs... 2024-09-17T08:14:02.186 DEBUG:teuthology.misc:Transferring archived files from smithi044:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908188/remote/smithi044/log 2024-09-17T08:14:02.187 DEBUG:teuthology.orchestra.run.smithi044:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-17T08:14:02.319 DEBUG:teuthology.misc:Transferring archived files from smithi145:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908188/remote/smithi145/log 2024-09-17T08:14:02.319 DEBUG:teuthology.orchestra.run.smithi145:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-17T08:14:02.379 DEBUG:teuthology.misc:Transferring archived files from smithi152:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908188/remote/smithi152/log 2024-09-17T08:14:02.379 DEBUG:teuthology.orchestra.run.smithi152:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-17T08:14:02.423 INFO:tasks.cephadm:Removing cluster... 2024-09-17T08:14:02.423 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 --force 2024-09-17T08:14:02.567 INFO:teuthology.orchestra.run.smithi044.stdout:Deleting cluster with fsid: ad90ed3e-74cb-11ef-bceb-c7b262605968 2024-09-17T08:14:02.844 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 --force 2024-09-17T08:14:02.989 INFO:teuthology.orchestra.run.smithi145.stdout:Deleting cluster with fsid: ad90ed3e-74cb-11ef-bceb-c7b262605968 2024-09-17T08:14:03.253 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid ad90ed3e-74cb-11ef-bceb-c7b262605968 --force 2024-09-17T08:14:03.404 INFO:teuthology.orchestra.run.smithi152.stdout:Deleting cluster with fsid: ad90ed3e-74cb-11ef-bceb-c7b262605968 2024-09-17T08:14:03.661 INFO:tasks.cephadm:Removing cephadm ... 2024-09-17T08:14:03.661 DEBUG:teuthology.orchestra.run.smithi044:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-17T08:14:03.680 DEBUG:teuthology.orchestra.run.smithi145:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-17T08:14:03.696 DEBUG:teuthology.orchestra.run.smithi152:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-17T08:14:03.712 INFO:tasks.cephadm:Teardown complete 2024-09-17T08:14:03.712 DEBUG:teuthology.run_tasks:Unwinding manager install 2024-09-17T08:14:03.728 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-17T08:14:03.728 DEBUG:teuthology.orchestra.run.smithi044:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-17T08:14:03.730 DEBUG:teuthology.orchestra.run.smithi145:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-17T08:14:03.739 DEBUG:teuthology.orchestra.run.smithi152:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-17T08:14:03.849 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-09-17T08:14:03.859 INFO:teuthology.task.clock:Checking final clock skew... 2024-09-17T08:14:03.859 DEBUG:teuthology.orchestra.run.smithi044:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-17T08:14:03.862 DEBUG:teuthology.orchestra.run.smithi145:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-17T08:14:03.864 DEBUG:teuthology.orchestra.run.smithi152:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-17T08:14:03.876 INFO:teuthology.orchestra.run.smithi145.stderr:bash: line 1: ntpq: command not found 2024-09-17T08:14:03.877 INFO:teuthology.orchestra.run.smithi044.stderr:bash: line 1: ntpq: command not found 2024-09-17T08:14:03.879 INFO:teuthology.orchestra.run.smithi152.stderr:bash: line 1: ntpq: command not found 2024-09-17T08:14:03.881 INFO:teuthology.orchestra.run.smithi145.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-17T08:14:03.881 INFO:teuthology.orchestra.run.smithi145.stdout:=============================================================================== 2024-09-17T08:14:03.881 INFO:teuthology.orchestra.run.smithi145.stdout:^* hv01.front.sepia.ceph.com 3 6 377 51 +836us[ +835us] +/- 65ms 2024-09-17T08:14:03.881 INFO:teuthology.orchestra.run.smithi145.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 50 -3578us[-3578us] +/- 64ms 2024-09-17T08:14:03.881 INFO:teuthology.orchestra.run.smithi145.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 50 +3347us[+3347us] +/- 75ms 2024-09-17T08:14:03.881 INFO:teuthology.orchestra.run.smithi145.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T08:14:03.883 INFO:teuthology.orchestra.run.smithi044.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-17T08:14:03.883 INFO:teuthology.orchestra.run.smithi044.stdout:=============================================================================== 2024-09-17T08:14:03.883 INFO:teuthology.orchestra.run.smithi044.stdout:^* hv01.front.sepia.ceph.com 3 6 377 50 +786us[ +806us] +/- 65ms 2024-09-17T08:14:03.883 INFO:teuthology.orchestra.run.smithi044.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 49 -3602us[-3602us] +/- 64ms 2024-09-17T08:14:03.883 INFO:teuthology.orchestra.run.smithi044.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 50 +3143us[+3164us] +/- 74ms 2024-09-17T08:14:03.883 INFO:teuthology.orchestra.run.smithi044.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T08:14:03.884 INFO:teuthology.orchestra.run.smithi152.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-17T08:14:03.884 INFO:teuthology.orchestra.run.smithi152.stdout:=============================================================================== 2024-09-17T08:14:03.884 INFO:teuthology.orchestra.run.smithi152.stdout:^* hv01.front.sepia.ceph.com 3 6 377 115 +870us[ +854us] +/- 64ms 2024-09-17T08:14:03.884 INFO:teuthology.orchestra.run.smithi152.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 50 -3548us[-3548us] +/- 64ms 2024-09-17T08:14:03.884 INFO:teuthology.orchestra.run.smithi152.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 50 +3260us[+3260us] +/- 74ms 2024-09-17T08:14:03.884 INFO:teuthology.orchestra.run.smithi152.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T08:14:03.885 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-09-17T08:14:04.010 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-09-17T08:14:04.011 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-09-17T08:14:04.049 DEBUG:teuthology.orchestra.run.smithi044:> 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-17T08:14:04.131 DEBUG:teuthology.orchestra.run.smithi145:> 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-17T08:14:04.198 DEBUG:teuthology.orchestra.run.smithi152:> 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-17T08:14:04.263 DEBUG:teuthology.orchestra.run.smithi044:> 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-17T08:14:04.292 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T08:14:04.293 DEBUG:teuthology.orchestra.run.smithi145:> 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-17T08:14:04.319 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T08:14:04.320 DEBUG:teuthology.orchestra.run.smithi152:> 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-17T08:14:04.348 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T08:14:04.348 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-09-17T08:14:04.357 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-09-17T08:14:04.495 INFO:teuthology.task.internal:Duration was 869.695246 seconds 2024-09-17T08:14:04.496 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-09-17T08:14:04.606 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-09-17T08:14:04.606 DEBUG:teuthology.orchestra.run.smithi044:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-17T08:14:04.609 DEBUG:teuthology.orchestra.run.smithi145:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-17T08:14:04.611 DEBUG:teuthology.orchestra.run.smithi152:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-17T08:14:04.648 INFO:teuthology.orchestra.run.smithi145.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-17T08:14:04.648 INFO:teuthology.orchestra.run.smithi044.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-17T08:14:04.650 INFO:teuthology.orchestra.run.smithi152.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-17T08:14:05.061 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-09-17T08:14:05.061 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi044.front.sepia.ceph.com 2024-09-17T08:14:05.061 DEBUG:teuthology.orchestra.run.smithi044:> 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-17T08:14:05.083 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi145.front.sepia.ceph.com 2024-09-17T08:14:05.083 DEBUG:teuthology.orchestra.run.smithi145:> 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-17T08:14:05.123 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi152.front.sepia.ceph.com 2024-09-17T08:14:05.123 DEBUG:teuthology.orchestra.run.smithi152:> 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-17T08:14:05.152 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-09-17T08:14:05.153 DEBUG:teuthology.orchestra.run.smithi044:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-17T08:14:05.155 DEBUG:teuthology.orchestra.run.smithi145:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-17T08:14:05.165 DEBUG:teuthology.orchestra.run.smithi152:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-17T08:14:05.219 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-09-17T08:14:05.219 DEBUG:teuthology.orchestra.run.smithi044:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-17T08:14:05.222 DEBUG:teuthology.orchestra.run.smithi145:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-17T08:14:05.231 DEBUG:teuthology.orchestra.run.smithi152:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-17T08:14:05.416 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-09-17T08:14:05.426 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-09-17T08:14:05.426 DEBUG:teuthology.orchestra.run.smithi044:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-17T08:14:05.452 DEBUG:teuthology.orchestra.run.smithi145:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-17T08:14:05.477 DEBUG:teuthology.orchestra.run.smithi152:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-17T08:14:05.505 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-09-17T08:14:05.514 DEBUG:teuthology.orchestra.run.smithi044:> 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-17T08:14:05.517 DEBUG:teuthology.orchestra.run.smithi145:> 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-17T08:14:05.521 DEBUG:teuthology.orchestra.run.smithi152:> 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-17T08:14:05.538 INFO:teuthology.orchestra.run.smithi044.stdout:kernel.core_pattern = core 2024-09-17T08:14:05.541 INFO:teuthology.orchestra.run.smithi145.stdout:kernel.core_pattern = core 2024-09-17T08:14:05.567 INFO:teuthology.orchestra.run.smithi152.stdout:kernel.core_pattern = core 2024-09-17T08:14:05.586 DEBUG:teuthology.orchestra.run.smithi044:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-17T08:14:05.634 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T08:14:05.635 DEBUG:teuthology.orchestra.run.smithi145:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-17T08:14:05.649 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T08:14:05.650 DEBUG:teuthology.orchestra.run.smithi152:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-17T08:14:05.664 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T08:14:05.664 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-09-17T08:14:05.674 INFO:teuthology.task.internal:Transferring archived files... 2024-09-17T08:14:05.675 DEBUG:teuthology.misc:Transferring archived files from smithi044:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908188/remote/smithi044 2024-09-17T08:14:05.675 DEBUG:teuthology.orchestra.run.smithi044:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-17T08:14:05.714 DEBUG:teuthology.misc:Transferring archived files from smithi145:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908188/remote/smithi145 2024-09-17T08:14:05.714 DEBUG:teuthology.orchestra.run.smithi145:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-17T08:14:05.749 DEBUG:teuthology.misc:Transferring archived files from smithi152:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908188/remote/smithi152 2024-09-17T08:14:05.749 DEBUG:teuthology.orchestra.run.smithi152:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-17T08:14:05.782 INFO:teuthology.task.internal:Removing archive directory... 2024-09-17T08:14:05.782 DEBUG:teuthology.orchestra.run.smithi044:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-17T08:14:05.785 DEBUG:teuthology.orchestra.run.smithi145:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-17T08:14:05.788 DEBUG:teuthology.orchestra.run.smithi152:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-17T08:14:05.833 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-09-17T08:14:05.843 INFO:teuthology.task.internal:Not uploading archives. 2024-09-17T08:14:05.843 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-09-17T08:14:06.103 INFO:teuthology.task.internal:Tidying up after the test... 2024-09-17T08:14:06.103 DEBUG:teuthology.orchestra.run.smithi044:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-17T08:14:06.105 DEBUG:teuthology.orchestra.run.smithi145:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-17T08:14:06.107 DEBUG:teuthology.orchestra.run.smithi152:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-17T08:14:06.119 INFO:teuthology.orchestra.run.smithi044.stdout: 262169 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 17 08:14 /home/ubuntu/cephtest 2024-09-17T08:14:06.121 INFO:teuthology.orchestra.run.smithi145.stdout: 262169 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 17 08:14 /home/ubuntu/cephtest 2024-09-17T08:14:06.122 INFO:teuthology.orchestra.run.smithi152.stdout: 262169 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 17 08:14 /home/ubuntu/cephtest 2024-09-17T08:14:06.123 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-09-17T08:14:06.211 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-09-17T08:14:06.347 INFO:teuthology.run:Summary data: description: orch/cephadm/workunits/{0-distro/centos_9.stream agent/off mon_election/classic task/test_host_drain} duration: 869.6952457427979 flavor: default owner: scheduled_teuthology@teuthology success: true 2024-09-17T08:14:06.347 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-17T08:14:06.422 INFO:teuthology.run:pass