2024-09-18T11:54:05.937 INFO:root:teuthology version: 1.2.2.dev2+g3752d38 2024-09-18T11:54:05.953 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-18T11:54:06.038 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/skanta-2024-09-18_09:13:00-rados-wip-bharath11-testing-2024-09-18-1115-quincy-distro-default-smithi/7911007 branch: wip-bharath11-testing-2024-09-18-1115-quincy description: rados/cephadm/workunits/{0-distro/centos_9.stream agent/off mon_election/connectivity task/test_host_drain} email: skanta@redhat.com first_in_suite: false job_id: '7911007' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: skanta-2024-09-18_09:13:00-rados-wip-bharath11-testing-2024-09-18-1115-quincy-distro-default-smithi no_nested_subset: false os_type: centos os_version: 9.stream overrides: admin_socket: branch: wip-bharath11-testing-2024-09-18-1115-quincy ceph: conf: global: mon election default strategy: 3 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 sha1: 7061ea6ca50908d104e9f3979dc615e118d9e153 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 7061ea6ca50908d104e9f3979dc615e118d9e153 selinux: whitelist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: wip-bharath11-testing-2024-09-18-1115-quincy sha1: 7061ea6ca50908d104e9f3979dc615e118d9e153 owner: scheduled_skanta@teuthology priority: 99 repo: https://github.com/ceph/ceph-ci.git roles: - - host.a - mon.a - mgr.a - osd.0 - osd.1 - - host.b - mon.b - mgr.b - osd.2 - osd.3 - - host.c - mon.c - osd.4 - osd.5 seed: 4631 sha1: 7061ea6ca50908d104e9f3979dc615e118d9e153 sleep_before_teardown: 0 subset: 111/120000 suite: rados suite_branch: wip-bharath11-testing-2024-09-18-1115-quincy suite_path: /home/teuthworker/src/github.com_ceph_ceph-c_7061ea6ca50908d104e9f3979dc615e118d9e153/qa suite_relpath: qa suite_repo: https://github.com/ceph/ceph-ci.git suite_sha1: 7061ea6ca50908d104e9f3979dc615e118d9e153 targets: smithi076.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBD9Nv4yULPvBzEJck0GryxpYdQPHat/yg7vYTuPtzTUZ2lmyH+BNvJLyQZPYi00UatyDGXG/uCYmN8X7+CN3IiE= smithi160.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEkpuv0ogGMO1lv7RDbeFtsRGeRwP7TtsAQJj5A663qpxF3PICXufxLZ3oG2E+HAa3NF8rSYraeeUmA7hM8EHSs= smithi169.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAW/wUnpMO1zrw1LIFNt2X4F0gPtwODbFt+rhdc6tc9i0ugeZDe4nFsWVSnCTLN3uoSdY8MF/ybOEQXRmWHt6Qo= tasks: - 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# 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)\nwhile [ \"$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\ncrushtool -d compiled-crushmap -o crushmap.txt\nCRUSH_MAP=$(cat\ \ crushmap.txt)\nif ! 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\n\ fi\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\n\ crushtool -d compiled-crushmap -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\n\ if 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-18_09:13:00 tube: smithi user: skanta verbose: true worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.3401856 2024-09-18T11:54:06.038 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/github.com_ceph_ceph-c_7061ea6ca50908d104e9f3979dc615e118d9e153/qa; will attempt to use it 2024-09-18T11:54:06.039 INFO:teuthology.run:Found tasks at /home/teuthworker/src/github.com_ceph_ceph-c_7061ea6ca50908d104e9f3979dc615e118d9e153/qa/tasks 2024-09-18T11:54:06.039 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-09-18T11:54:06.041 INFO:teuthology.task.internal:Checking packages... 2024-09-18T11:54:06.064 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash '7061ea6ca50908d104e9f3979dc615e118d9e153' 2024-09-18T11:54:06.064 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-09-18T11:54:06.064 INFO:teuthology.packaging:ref: None 2024-09-18T11:54:06.065 INFO:teuthology.packaging:tag: None 2024-09-18T11:54:06.065 INFO:teuthology.packaging:branch: wip-bharath11-testing-2024-09-18-1115-quincy 2024-09-18T11:54:06.065 INFO:teuthology.packaging:sha1: 7061ea6ca50908d104e9f3979dc615e118d9e153 2024-09-18T11:54:06.065 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=wip-bharath11-testing-2024-09-18-1115-quincy 2024-09-18T11:54:06.207 INFO:teuthology.task.internal:Found packages for ceph version 17.2.7-1645.g7061ea6c 2024-09-18T11:54:06.209 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-09-18T11:54:06.215 INFO:teuthology.task.internal:no buildpackages task found 2024-09-18T11:54:06.215 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-09-18T11:54:06.235 INFO:teuthology.task.internal:Saving configuration 2024-09-18T11:54:06.246 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-09-18T11:54:06.255 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-09-18T11:54:06.280 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi076.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/skanta-2024-09-18_09:13:00-rados-wip-bharath11-testing-2024-09-18-1115-quincy-distro-default-smithi/7911007', '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-18 11:48:34.965240', 'locked_by': 'scheduled_skanta@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBD9Nv4yULPvBzEJck0GryxpYdQPHat/yg7vYTuPtzTUZ2lmyH+BNvJLyQZPYi00UatyDGXG/uCYmN8X7+CN3IiE='} 2024-09-18T11:54:06.306 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi160.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/skanta-2024-09-18_09:13:00-rados-wip-bharath11-testing-2024-09-18-1115-quincy-distro-default-smithi/7911007', '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-18 11:48:34.964003', 'locked_by': 'scheduled_skanta@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEkpuv0ogGMO1lv7RDbeFtsRGeRwP7TtsAQJj5A663qpxF3PICXufxLZ3oG2E+HAa3NF8rSYraeeUmA7hM8EHSs='} 2024-09-18T11:54:06.331 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi169.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/skanta-2024-09-18_09:13:00-rados-wip-bharath11-testing-2024-09-18-1115-quincy-distro-default-smithi/7911007', '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-18 11:48:34.966681', 'locked_by': 'scheduled_skanta@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAW/wUnpMO1zrw1LIFNt2X4F0gPtwODbFt+rhdc6tc9i0ugeZDe4nFsWVSnCTLN3uoSdY8MF/ybOEQXRmWHt6Qo='} 2024-09-18T11:54:06.331 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-09-18T11:54:06.336 INFO:teuthology.task.internal:roles: ubuntu@smithi076.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-09-18T11:54:06.336 INFO:teuthology.task.internal:roles: ubuntu@smithi160.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-09-18T11:54:06.336 INFO:teuthology.task.internal:roles: ubuntu@smithi169.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-09-18T11:54:06.336 INFO:teuthology.run_tasks:Running task console_log... 2024-09-18T11:54:06.413 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f6323113ac0>, signals=[15]) 2024-09-18T11:54:06.413 INFO:teuthology.run_tasks:Running task internal.connect... 2024-09-18T11:54:06.420 INFO:teuthology.task.internal:Opening connections... 2024-09-18T11:54:06.420 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi076.front.sepia.ceph.com 2024-09-18T11:54:06.421 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi076.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-18T11:54:06.496 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi160.front.sepia.ceph.com 2024-09-18T11:54:06.497 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi160.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-18T11:54:06.570 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi169.front.sepia.ceph.com 2024-09-18T11:54:06.571 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi169.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-18T11:54:06.645 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-09-18T11:54:06.656 DEBUG:teuthology.orchestra.run.smithi076:> uname -m 2024-09-18T11:54:06.673 INFO:teuthology.orchestra.run.smithi076.stdout:x86_64 2024-09-18T11:54:06.674 DEBUG:teuthology.orchestra.run.smithi076:> cat /etc/os-release 2024-09-18T11:54:06.730 INFO:teuthology.orchestra.run.smithi076.stdout:NAME="CentOS Stream" 2024-09-18T11:54:06.731 INFO:teuthology.orchestra.run.smithi076.stdout:VERSION="9" 2024-09-18T11:54:06.731 INFO:teuthology.orchestra.run.smithi076.stdout:ID="centos" 2024-09-18T11:54:06.731 INFO:teuthology.orchestra.run.smithi076.stdout:ID_LIKE="rhel fedora" 2024-09-18T11:54:06.731 INFO:teuthology.orchestra.run.smithi076.stdout:VERSION_ID="9" 2024-09-18T11:54:06.731 INFO:teuthology.orchestra.run.smithi076.stdout:PLATFORM_ID="platform:el9" 2024-09-18T11:54:06.731 INFO:teuthology.orchestra.run.smithi076.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-18T11:54:06.731 INFO:teuthology.orchestra.run.smithi076.stdout:ANSI_COLOR="0;31" 2024-09-18T11:54:06.732 INFO:teuthology.orchestra.run.smithi076.stdout:LOGO="fedora-logo-icon" 2024-09-18T11:54:06.732 INFO:teuthology.orchestra.run.smithi076.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-18T11:54:06.732 INFO:teuthology.orchestra.run.smithi076.stdout:HOME_URL="https://centos.org/" 2024-09-18T11:54:06.732 INFO:teuthology.orchestra.run.smithi076.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-18T11:54:06.732 INFO:teuthology.orchestra.run.smithi076.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-18T11:54:06.732 INFO:teuthology.orchestra.run.smithi076.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-18T11:54:06.733 INFO:teuthology.lock.ops:Updating smithi076.front.sepia.ceph.com on lock server 2024-09-18T11:54:06.755 DEBUG:teuthology.orchestra.run.smithi160:> uname -m 2024-09-18T11:54:06.774 INFO:teuthology.orchestra.run.smithi160.stdout:x86_64 2024-09-18T11:54:06.774 DEBUG:teuthology.orchestra.run.smithi160:> cat /etc/os-release 2024-09-18T11:54:06.832 INFO:teuthology.orchestra.run.smithi160.stdout:NAME="CentOS Stream" 2024-09-18T11:54:06.832 INFO:teuthology.orchestra.run.smithi160.stdout:VERSION="9" 2024-09-18T11:54:06.832 INFO:teuthology.orchestra.run.smithi160.stdout:ID="centos" 2024-09-18T11:54:06.832 INFO:teuthology.orchestra.run.smithi160.stdout:ID_LIKE="rhel fedora" 2024-09-18T11:54:06.833 INFO:teuthology.orchestra.run.smithi160.stdout:VERSION_ID="9" 2024-09-18T11:54:06.833 INFO:teuthology.orchestra.run.smithi160.stdout:PLATFORM_ID="platform:el9" 2024-09-18T11:54:06.833 INFO:teuthology.orchestra.run.smithi160.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-18T11:54:06.833 INFO:teuthology.orchestra.run.smithi160.stdout:ANSI_COLOR="0;31" 2024-09-18T11:54:06.833 INFO:teuthology.orchestra.run.smithi160.stdout:LOGO="fedora-logo-icon" 2024-09-18T11:54:06.833 INFO:teuthology.orchestra.run.smithi160.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-18T11:54:06.833 INFO:teuthology.orchestra.run.smithi160.stdout:HOME_URL="https://centos.org/" 2024-09-18T11:54:06.833 INFO:teuthology.orchestra.run.smithi160.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-18T11:54:06.833 INFO:teuthology.orchestra.run.smithi160.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-18T11:54:06.833 INFO:teuthology.orchestra.run.smithi160.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-18T11:54:06.834 INFO:teuthology.lock.ops:Updating smithi160.front.sepia.ceph.com on lock server 2024-09-18T11:54:06.865 DEBUG:teuthology.orchestra.run.smithi169:> uname -m 2024-09-18T11:54:06.884 INFO:teuthology.orchestra.run.smithi169.stdout:x86_64 2024-09-18T11:54:06.884 DEBUG:teuthology.orchestra.run.smithi169:> cat /etc/os-release 2024-09-18T11:54:06.942 INFO:teuthology.orchestra.run.smithi169.stdout:NAME="CentOS Stream" 2024-09-18T11:54:06.942 INFO:teuthology.orchestra.run.smithi169.stdout:VERSION="9" 2024-09-18T11:54:06.942 INFO:teuthology.orchestra.run.smithi169.stdout:ID="centos" 2024-09-18T11:54:06.942 INFO:teuthology.orchestra.run.smithi169.stdout:ID_LIKE="rhel fedora" 2024-09-18T11:54:06.942 INFO:teuthology.orchestra.run.smithi169.stdout:VERSION_ID="9" 2024-09-18T11:54:06.942 INFO:teuthology.orchestra.run.smithi169.stdout:PLATFORM_ID="platform:el9" 2024-09-18T11:54:06.943 INFO:teuthology.orchestra.run.smithi169.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-18T11:54:06.943 INFO:teuthology.orchestra.run.smithi169.stdout:ANSI_COLOR="0;31" 2024-09-18T11:54:06.943 INFO:teuthology.orchestra.run.smithi169.stdout:LOGO="fedora-logo-icon" 2024-09-18T11:54:06.943 INFO:teuthology.orchestra.run.smithi169.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-18T11:54:06.943 INFO:teuthology.orchestra.run.smithi169.stdout:HOME_URL="https://centos.org/" 2024-09-18T11:54:06.943 INFO:teuthology.orchestra.run.smithi169.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-18T11:54:06.943 INFO:teuthology.orchestra.run.smithi169.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-18T11:54:06.943 INFO:teuthology.orchestra.run.smithi169.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-18T11:54:06.943 INFO:teuthology.lock.ops:Updating smithi169.front.sepia.ceph.com on lock server 2024-09-18T11:54:06.964 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-09-18T11:54:06.977 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-09-18T11:54:06.988 INFO:teuthology.task.internal:Checking for old test directory... 2024-09-18T11:54:06.989 DEBUG:teuthology.orchestra.run.smithi076:> test '!' -e /home/ubuntu/cephtest 2024-09-18T11:54:06.992 DEBUG:teuthology.orchestra.run.smithi160:> test '!' -e /home/ubuntu/cephtest 2024-09-18T11:54:06.994 DEBUG:teuthology.orchestra.run.smithi169:> test '!' -e /home/ubuntu/cephtest 2024-09-18T11:54:07.012 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-09-18T11:54:07.023 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-09-18T11:54:07.023 DEBUG:teuthology.orchestra.run.smithi076:> test -z $(ls -A /var/lib/ceph) 2024-09-18T11:54:07.050 DEBUG:teuthology.orchestra.run.smithi160:> test -z $(ls -A /var/lib/ceph) 2024-09-18T11:54:07.052 DEBUG:teuthology.orchestra.run.smithi169:> test -z $(ls -A /var/lib/ceph) 2024-09-18T11:54:07.166 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-09-18T11:54:07.253 INFO:teuthology.run_tasks:Running task kernel... 2024-09-18T11:54:07.279 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-09-18T11:54:07.280 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-18T11:54:07.280 DEBUG:teuthology.orchestra.run.smithi076:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-18T11:54:07.281 DEBUG:teuthology.orchestra.run.smithi160:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-18T11:54:07.282 DEBUG:teuthology.orchestra.run.smithi169:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-18T11:54:07.299 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-18T11:54:07.300 DEBUG:teuthology.orchestra.run.smithi076:> uname -r 2024-09-18T11:54:07.301 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-18T11:54:07.301 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-18T11:54:07.302 DEBUG:teuthology.orchestra.run.smithi169:> uname -r 2024-09-18T11:54:07.302 DEBUG:teuthology.orchestra.run.smithi160:> uname -r 2024-09-18T11:54:07.357 INFO:teuthology.orchestra.run.smithi076.stdout:5.14.0-503.el9.x86_64 2024-09-18T11:54:07.358 INFO:teuthology.task.kernel:Running kernel on smithi076: 5.14.0-503.el9.x86_64 2024-09-18T11:54:07.358 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum install -y kernel 2024-09-18T11:54:07.360 INFO:teuthology.orchestra.run.smithi160.stdout:5.14.0-503.el9.x86_64 2024-09-18T11:54:07.360 INFO:teuthology.orchestra.run.smithi169.stdout:5.14.0-503.el9.x86_64 2024-09-18T11:54:07.360 INFO:teuthology.task.kernel:Running kernel on smithi160: 5.14.0-503.el9.x86_64 2024-09-18T11:54:07.360 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum install -y kernel 2024-09-18T11:54:07.361 INFO:teuthology.task.kernel:Running kernel on smithi169: 5.14.0-503.el9.x86_64 2024-09-18T11:54:07.361 DEBUG:teuthology.orchestra.run.smithi169:> sudo yum install -y kernel 2024-09-18T11:54:09.824 INFO:teuthology.orchestra.run.smithi160.stdout:CentOS Stream 9 - BaseOS 13 MB/s | 8.3 MB 00:00 2024-09-18T11:54:10.698 INFO:teuthology.orchestra.run.smithi076.stdout:CentOS Stream 9 - BaseOS 6.1 MB/s | 8.3 MB 00:01 2024-09-18T11:54:10.822 INFO:teuthology.orchestra.run.smithi169.stdout:CentOS Stream 9 - BaseOS 4.8 MB/s | 8.3 MB 00:01 2024-09-18T11:54:11.475 INFO:teuthology.orchestra.run.smithi160.stdout:CentOS Stream 9 - AppStream 35 MB/s | 20 MB 00:00 2024-09-18T11:54:12.514 INFO:teuthology.orchestra.run.smithi169.stdout:CentOS Stream 9 - AppStream 32 MB/s | 20 MB 00:00 2024-09-18T11:54:14.016 INFO:teuthology.orchestra.run.smithi076.stdout:CentOS Stream 9 - AppStream 9.2 MB/s | 20 MB 00:02 2024-09-18T11:54:17.692 INFO:teuthology.orchestra.run.smithi160.stdout:CentOS Stream 9 - CRB 2.7 MB/s | 6.5 MB 00:02 2024-09-18T11:54:18.748 INFO:teuthology.orchestra.run.smithi169.stdout:CentOS Stream 9 - CRB 2.7 MB/s | 6.5 MB 00:02 2024-09-18T11:54:19.142 INFO:teuthology.orchestra.run.smithi160.stdout:CentOS Stream 9 - Extras packages 87 kB/s | 19 kB 00:00 2024-09-18T11:54:19.166 INFO:teuthology.orchestra.run.smithi076.stdout:CentOS Stream 9 - CRB 4.9 MB/s | 6.5 MB 00:01 2024-09-18T11:54:20.407 INFO:teuthology.orchestra.run.smithi169.stdout:CentOS Stream 9 - Extras packages 65 kB/s | 19 kB 00:00 2024-09-18T11:54:20.650 INFO:teuthology.orchestra.run.smithi076.stdout:CentOS Stream 9 - Extras packages 74 kB/s | 19 kB 00:00 2024-09-18T11:54:20.738 INFO:teuthology.orchestra.run.smithi160.stdout:Extra Packages for Enterprise Linux 15 MB/s | 23 MB 00:01 2024-09-18T11:54:21.869 INFO:teuthology.orchestra.run.smithi169.stdout:Extra Packages for Enterprise Linux 17 MB/s | 23 MB 00:01 2024-09-18T11:54:22.012 INFO:teuthology.orchestra.run.smithi076.stdout:Extra Packages for Enterprise Linux 18 MB/s | 23 MB 00:01 2024-09-18T11:54:26.127 INFO:teuthology.orchestra.run.smithi160.stdout:lab-extras 29 kB/s | 1.7 kB 00:00 2024-09-18T11:54:27.392 INFO:teuthology.orchestra.run.smithi169.stdout:lab-extras 26 kB/s | 1.7 kB 00:00 2024-09-18T11:54:27.426 INFO:teuthology.orchestra.run.smithi076.stdout:lab-extras 30 kB/s | 1.7 kB 00:00 2024-09-18T11:54:28.025 INFO:teuthology.orchestra.run.smithi160.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-18T11:54:28.026 INFO:teuthology.orchestra.run.smithi160.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-18T11:54:28.114 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-18T11:54:28.119 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T11:54:28.119 INFO:teuthology.orchestra.run.smithi160.stdout: Package Architecture Version Repository Size 2024-09-18T11:54:28.119 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T11:54:28.119 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-18T11:54:28.119 INFO:teuthology.orchestra.run.smithi160.stdout: kernel x86_64 5.14.0-508.el9 baseos 36 k 2024-09-18T11:54:28.119 INFO:teuthology.orchestra.run.smithi160.stdout:Installing dependencies: 2024-09-18T11:54:28.119 INFO:teuthology.orchestra.run.smithi160.stdout: kernel-core x86_64 5.14.0-508.el9 baseos 16 M 2024-09-18T11:54:28.119 INFO:teuthology.orchestra.run.smithi160.stdout: kernel-modules x86_64 5.14.0-508.el9 baseos 35 M 2024-09-18T11:54:28.120 INFO:teuthology.orchestra.run.smithi160.stdout: kernel-modules-core x86_64 5.14.0-508.el9 baseos 29 M 2024-09-18T11:54:28.120 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T11:54:28.120 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-18T11:54:28.120 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T11:54:28.120 INFO:teuthology.orchestra.run.smithi160.stdout:Install 4 Packages 2024-09-18T11:54:28.120 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T11:54:28.121 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 79 M 2024-09-18T11:54:28.121 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 126 M 2024-09-18T11:54:28.121 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-18T11:54:28.370 INFO:teuthology.orchestra.run.smithi160.stdout:(1/4): kernel-5.14.0-508.el9.x86_64.rpm 287 kB/s | 36 kB 00:00 2024-09-18T11:54:29.315 INFO:teuthology.orchestra.run.smithi169.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-18T11:54:29.315 INFO:teuthology.orchestra.run.smithi169.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-18T11:54:29.324 INFO:teuthology.orchestra.run.smithi076.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-18T11:54:29.324 INFO:teuthology.orchestra.run.smithi076.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-18T11:54:29.412 INFO:teuthology.orchestra.run.smithi169.stdout:Dependencies resolved. 2024-09-18T11:54:29.416 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T11:54:29.416 INFO:teuthology.orchestra.run.smithi169.stdout: Package Architecture Version Repository Size 2024-09-18T11:54:29.417 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T11:54:29.417 INFO:teuthology.orchestra.run.smithi169.stdout:Installing: 2024-09-18T11:54:29.417 INFO:teuthology.orchestra.run.smithi169.stdout: kernel x86_64 5.14.0-508.el9 baseos 36 k 2024-09-18T11:54:29.417 INFO:teuthology.orchestra.run.smithi169.stdout:Installing dependencies: 2024-09-18T11:54:29.417 INFO:teuthology.orchestra.run.smithi169.stdout: kernel-core x86_64 5.14.0-508.el9 baseos 16 M 2024-09-18T11:54:29.417 INFO:teuthology.orchestra.run.smithi169.stdout: kernel-modules x86_64 5.14.0-508.el9 baseos 35 M 2024-09-18T11:54:29.417 INFO:teuthology.orchestra.run.smithi169.stdout: kernel-modules-core x86_64 5.14.0-508.el9 baseos 29 M 2024-09-18T11:54:29.417 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T11:54:29.417 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction Summary 2024-09-18T11:54:29.417 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T11:54:29.417 INFO:teuthology.orchestra.run.smithi169.stdout:Install 4 Packages 2024-09-18T11:54:29.417 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T11:54:29.418 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-09-18T11:54:29.418 INFO:teuthology.orchestra.run.smithi169.stdout:Total download size: 79 M 2024-09-18T11:54:29.418 INFO:teuthology.orchestra.run.smithi169.stdout:Installed size: 126 M 2024-09-18T11:54:29.419 INFO:teuthology.orchestra.run.smithi169.stdout:Downloading Packages: 2024-09-18T11:54:29.425 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T11:54:29.425 INFO:teuthology.orchestra.run.smithi076.stdout: Package Architecture Version Repository Size 2024-09-18T11:54:29.425 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T11:54:29.425 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-09-18T11:54:29.425 INFO:teuthology.orchestra.run.smithi076.stdout: kernel x86_64 5.14.0-508.el9 baseos 36 k 2024-09-18T11:54:29.425 INFO:teuthology.orchestra.run.smithi076.stdout:Installing dependencies: 2024-09-18T11:54:29.425 INFO:teuthology.orchestra.run.smithi076.stdout: kernel-core x86_64 5.14.0-508.el9 baseos 16 M 2024-09-18T11:54:29.425 INFO:teuthology.orchestra.run.smithi076.stdout: kernel-modules x86_64 5.14.0-508.el9 baseos 35 M 2024-09-18T11:54:29.425 INFO:teuthology.orchestra.run.smithi076.stdout: kernel-modules-core x86_64 5.14.0-508.el9 baseos 29 M 2024-09-18T11:54:29.425 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T11:54:29.426 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-09-18T11:54:29.426 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T11:54:29.426 INFO:teuthology.orchestra.run.smithi076.stdout:Install 4 Packages 2024-09-18T11:54:29.426 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T11:54:29.426 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 79 M 2024-09-18T11:54:29.426 INFO:teuthology.orchestra.run.smithi076.stdout:Installed size: 126 M 2024-09-18T11:54:29.427 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-09-18T11:54:29.636 INFO:teuthology.orchestra.run.smithi076.stdout:(1/4): kernel-5.14.0-508.el9.x86_64.rpm 337 kB/s | 36 kB 00:00 2024-09-18T11:54:29.835 INFO:teuthology.orchestra.run.smithi169.stdout:(1/4): kernel-5.14.0-508.el9.x86_64.rpm 277 kB/s | 36 kB 00:00 2024-09-18T11:54:32.345 INFO:teuthology.orchestra.run.smithi160.stdout:(2/4): kernel-modules-5.14.0-508.el9.x86_64.rpm 8.4 MB/s | 35 MB 00:04 2024-09-18T11:54:32.468 INFO:teuthology.orchestra.run.smithi169.stdout:(2/4): kernel-core-5.14.0-508.el9.x86_64.rpm 5.7 MB/s | 16 MB 00:02 2024-09-18T11:54:34.243 INFO:teuthology.orchestra.run.smithi169.stdout:(3/4): kernel-modules-5.14.0-508.el9.x86_64.rpm 7.6 MB/s | 35 MB 00:04 2024-09-18T11:54:35.412 INFO:teuthology.orchestra.run.smithi160.stdout:(3/4): kernel-core-5.14.0-508.el9.x86_64.rpm 2.2 MB/s | 16 MB 00:07 2024-09-18T11:54:36.727 INFO:teuthology.orchestra.run.smithi076.stdout:(2/4): kernel-core-5.14.0-508.el9.x86_64.rpm 2.2 MB/s | 16 MB 00:07 2024-09-18T11:54:37.270 INFO:teuthology.orchestra.run.smithi160.stdout:(4/4): kernel-modules-core-5.14.0-508.el9.x86_6 3.2 MB/s | 29 MB 00:08 2024-09-18T11:54:37.270 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-18T11:54:37.270 INFO:teuthology.orchestra.run.smithi160.stdout:Total 8.6 MB/s | 79 MB 00:09 2024-09-18T11:54:37.958 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-18T11:54:38.311 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-18T11:54:38.311 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-18T11:54:39.278 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-18T11:54:39.279 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-18T11:54:41.752 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-18T11:54:42.375 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : kernel-modules-core-5.14.0-508.el9.x86_64 1/4 2024-09-18T11:54:42.462 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-18T11:54:43.368 INFO:teuthology.orchestra.run.smithi169.stdout:(4/4): kernel-modules-core-5.14.0-508.el9.x86_6 2.1 MB/s | 29 MB 00:13 2024-09-18T11:54:43.368 INFO:teuthology.orchestra.run.smithi169.stdout:-------------------------------------------------------------------------------- 2024-09-18T11:54:43.368 INFO:teuthology.orchestra.run.smithi169.stdout:Total 5.6 MB/s | 79 MB 00:13 2024-09-18T11:54:43.369 INFO:teuthology.orchestra.run.smithi076.stdout:(3/4): kernel-modules-core-5.14.0-508.el9.x86_6 2.1 MB/s | 29 MB 00:13 2024-09-18T11:54:44.054 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction check 2024-09-18T11:54:44.415 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction check succeeded. 2024-09-18T11:54:44.415 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction test 2024-09-18T11:54:45.240 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-18T11:54:45.364 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-18T11:54:45.424 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction test succeeded. 2024-09-18T11:54:45.424 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction 2024-09-18T11:54:46.019 INFO:teuthology.orchestra.run.smithi076.stdout:(4/4): kernel-modules-5.14.0-508.el9.x86_64.rpm 2.1 MB/s | 35 MB 00:16 2024-09-18T11:54:46.019 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-09-18T11:54:46.019 INFO:teuthology.orchestra.run.smithi076.stdout:Total 4.7 MB/s | 79 MB 00:16 2024-09-18T11:54:46.699 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-09-18T11:54:47.080 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-09-18T11:54:47.081 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-09-18T11:54:47.885 INFO:teuthology.orchestra.run.smithi169.stdout: Preparing : 1/1 2024-09-18T11:54:48.063 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-09-18T11:54:48.063 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-09-18T11:54:48.530 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : kernel-modules-core-5.14.0-508.el9.x86_64 1/4 2024-09-18T11:54:48.621 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-18T11:54:50.238 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-18T11:54:50.381 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : kernel-5.14.0-508.el9.x86_64 4/4 2024-09-18T11:54:50.487 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-09-18T11:54:51.179 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : kernel-modules-core-5.14.0-508.el9.x86_64 1/4 2024-09-18T11:54:51.267 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-18T11:54:51.413 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-18T11:54:51.549 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-18T11:54:54.045 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-18T11:54:54.176 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-18T11:54:55.224 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-18T11:54:56.424 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-18T11:54:56.550 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : kernel-5.14.0-508.el9.x86_64 4/4 2024-09-18T11:54:59.012 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-18T11:54:59.201 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : kernel-5.14.0-508.el9.x86_64 4/4 2024-09-18T11:55:01.421 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-18T11:55:04.127 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-18T11:55:33.180 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 4/4 2024-09-18T11:55:33.220 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 4/4 2024-09-18T11:55:33.566 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: kernel-5.14.0-508.el9.x86_64 4/4 2024-09-18T11:55:33.566 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : kernel-5.14.0-508.el9.x86_64 1/4 2024-09-18T11:55:33.566 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-18T11:55:33.566 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-18T11:55:34.446 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-18T11:55:34.446 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T11:55:34.446 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-18T11:55:34.446 INFO:teuthology.orchestra.run.smithi160.stdout: kernel-5.14.0-508.el9.x86_64 2024-09-18T11:55:34.446 INFO:teuthology.orchestra.run.smithi160.stdout: kernel-core-5.14.0-508.el9.x86_64 2024-09-18T11:55:34.446 INFO:teuthology.orchestra.run.smithi160.stdout: kernel-modules-5.14.0-508.el9.x86_64 2024-09-18T11:55:34.446 INFO:teuthology.orchestra.run.smithi160.stdout: kernel-modules-core-5.14.0-508.el9.x86_64 2024-09-18T11:55:34.446 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T11:55:34.446 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-18T11:55:34.780 DEBUG:teuthology.orchestra.run.smithi160:> rpm -q kernel | sort -rV | head -n 1 2024-09-18T11:55:34.868 INFO:teuthology.orchestra.run.smithi160.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-18T11:55:34.868 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-18T11:55:34.868 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-18T11:55:34.868 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-18T11:55:34.869 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-18T11:55:34.869 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-09-18T11:55:34.869 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi160.front.sepia.ceph.com, path=None, version=distro) 2024-09-18T11:55:34.869 DEBUG:teuthology.orchestra.run.smithi160:> rpm -q kernel | sort -rV | head -n 1 2024-09-18T11:55:34.927 INFO:teuthology.orchestra.run.smithi160.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-18T11:55:34.928 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-18T11:55:34.928 DEBUG:teuthology.orchestra.run.smithi160:> sudo rpm -qi grub2-tools 2024-09-18T11:55:34.978 INFO:teuthology.orchestra.run.smithi160.stdout:Name : grub2-tools 2024-09-18T11:55:34.978 INFO:teuthology.orchestra.run.smithi160.stdout:Epoch : 1 2024-09-18T11:55:34.978 INFO:teuthology.orchestra.run.smithi160.stdout:Version : 2.06 2024-09-18T11:55:34.979 INFO:teuthology.orchestra.run.smithi160.stdout:Release : 82.el9 2024-09-18T11:55:34.979 INFO:teuthology.orchestra.run.smithi160.stdout:Architecture: x86_64 2024-09-18T11:55:34.979 INFO:teuthology.orchestra.run.smithi160.stdout:Install Date: Wed 28 Aug 2024 09:06:27 PM UTC 2024-09-18T11:55:34.979 INFO:teuthology.orchestra.run.smithi160.stdout:Group : Unspecified 2024-09-18T11:55:34.979 INFO:teuthology.orchestra.run.smithi160.stdout:Size : 8274670 2024-09-18T11:55:34.979 INFO:teuthology.orchestra.run.smithi160.stdout:License : GPLv3+ 2024-09-18T11:55:34.979 INFO:teuthology.orchestra.run.smithi160.stdout:Signature : RSA/SHA256, Mon 01 Jul 2024 07:46:42 AM UTC, Key ID 05b555b38483c65d 2024-09-18T11:55:34.979 INFO:teuthology.orchestra.run.smithi160.stdout:Source RPM : grub2-2.06-82.el9.src.rpm 2024-09-18T11:55:34.979 INFO:teuthology.orchestra.run.smithi160.stdout:Build Date : Fri 28 Jun 2024 09:24:44 AM UTC 2024-09-18T11:55:34.979 INFO:teuthology.orchestra.run.smithi160.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-09-18T11:55:34.979 INFO:teuthology.orchestra.run.smithi160.stdout:Packager : builder@centos.org 2024-09-18T11:55:34.980 INFO:teuthology.orchestra.run.smithi160.stdout:Vendor : CentOS 2024-09-18T11:55:34.980 INFO:teuthology.orchestra.run.smithi160.stdout:URL : http://www.gnu.org/software/grub/ 2024-09-18T11:55:34.980 INFO:teuthology.orchestra.run.smithi160.stdout:Summary : Support tools for GRUB. 2024-09-18T11:55:34.980 INFO:teuthology.orchestra.run.smithi160.stdout:Description : 2024-09-18T11:55:34.980 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T11:55:34.980 INFO:teuthology.orchestra.run.smithi160.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-09-18T11:55:34.980 INFO:teuthology.orchestra.run.smithi160.stdout:customizable bootloader with modular architecture. It supports a rich 2024-09-18T11:55:34.980 INFO:teuthology.orchestra.run.smithi160.stdout:variety of kernel formats, file systems, computer architectures and 2024-09-18T11:55:34.980 INFO:teuthology.orchestra.run.smithi160.stdout:hardware devices. 2024-09-18T11:55:34.980 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T11:55:34.981 INFO:teuthology.orchestra.run.smithi160.stdout:This subpackage provides tools for support of all platforms. 2024-09-18T11:55:34.982 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-09-18T11:55:34.982 INFO:teuthology.task.kernel:Updating grub on smithi160 to boot 5.14.0-508.el9.x86_64 2024-09-18T11:55:34.982 DEBUG:teuthology.orchestra.run.smithi160:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-09-18T11:55:35.566 INFO:teuthology.orchestra.run.smithi160.stderr:Generating grub configuration file ... 2024-09-18T11:55:36.883 INFO:teuthology.orchestra.run.smithi160.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-09-18T11:55:36.916 INFO:teuthology.orchestra.run.smithi160.stderr:done 2024-09-18T11:55:36.918 DEBUG:teuthology.orchestra.run.smithi160:> mktemp 2024-09-18T11:55:36.935 INFO:teuthology.orchestra.run.smithi160.stdout:/tmp/tmp.oYAg3Uty13 2024-09-18T11:55:36.935 DEBUG:teuthology.orchestra.run.smithi160:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.oYAg3Uty13 2024-09-18T11:55:37.002 DEBUG:teuthology.orchestra.run.smithi160:> sudo chmod 0666 /tmp/tmp.oYAg3Uty13 2024-09-18T11:55:37.137 DEBUG:teuthology.orchestra.remote:smithi160:/tmp/tmp.oYAg3Uty13 is 6KB 2024-09-18T11:55:37.184 DEBUG:teuthology.orchestra.run.smithi160:> rm -fr /tmp/tmp.oYAg3Uty13 2024-09-18T11:55:37.199 DEBUG:teuthology.orchestra.run.smithi160:> sudo /bin/ls /boot/loader/entries || true 2024-09-18T11:55:37.266 INFO:teuthology.orchestra.run.smithi160.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-0-rescue.conf 2024-09-18T11:55:37.266 INFO:teuthology.orchestra.run.smithi160.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-239.el9.x86_64.conf 2024-09-18T11:55:37.266 INFO:teuthology.orchestra.run.smithi160.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-503.el9.x86_64.conf 2024-09-18T11:55:37.266 INFO:teuthology.orchestra.run.smithi160.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64.conf 2024-09-18T11:55:37.267 DEBUG:teuthology.orchestra.run.smithi160:> sudo grub2-set-default fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64 2024-09-18T11:55:37.437 DEBUG:teuthology.orchestra.run.smithi160:> sudo shutdown -r now 2024-09-18T11:55:39.853 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 4/4 2024-09-18T11:55:39.900 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 4/4 2024-09-18T11:55:40.271 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: kernel-5.14.0-508.el9.x86_64 4/4 2024-09-18T11:55:40.271 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : kernel-5.14.0-508.el9.x86_64 1/4 2024-09-18T11:55:40.272 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-18T11:55:40.272 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-18T11:55:41.184 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-18T11:55:41.184 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T11:55:41.184 INFO:teuthology.orchestra.run.smithi169.stdout:Installed: 2024-09-18T11:55:41.185 INFO:teuthology.orchestra.run.smithi169.stdout: kernel-5.14.0-508.el9.x86_64 2024-09-18T11:55:41.185 INFO:teuthology.orchestra.run.smithi169.stdout: kernel-core-5.14.0-508.el9.x86_64 2024-09-18T11:55:41.185 INFO:teuthology.orchestra.run.smithi169.stdout: kernel-modules-5.14.0-508.el9.x86_64 2024-09-18T11:55:41.185 INFO:teuthology.orchestra.run.smithi169.stdout: kernel-modules-core-5.14.0-508.el9.x86_64 2024-09-18T11:55:41.185 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T11:55:41.185 INFO:teuthology.orchestra.run.smithi169.stdout:Complete! 2024-09-18T11:55:41.554 DEBUG:teuthology.orchestra.run.smithi169:> rpm -q kernel | sort -rV | head -n 1 2024-09-18T11:55:41.690 INFO:teuthology.orchestra.run.smithi169.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-18T11:55:41.690 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-18T11:55:41.690 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-18T11:55:41.690 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-18T11:55:41.690 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-18T11:55:41.691 INFO:teuthology.task.kernel:Installing distro kernel on host.c... 2024-09-18T11:55:41.691 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi169.front.sepia.ceph.com, path=None, version=distro) 2024-09-18T11:55:41.691 DEBUG:teuthology.orchestra.run.smithi169:> rpm -q kernel | sort -rV | head -n 1 2024-09-18T11:55:41.751 INFO:teuthology.orchestra.run.smithi169.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-18T11:55:41.751 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-18T11:55:41.751 DEBUG:teuthology.orchestra.run.smithi169:> sudo rpm -qi grub2-tools 2024-09-18T11:55:41.788 INFO:teuthology.orchestra.run.smithi169.stdout:Name : grub2-tools 2024-09-18T11:55:41.788 INFO:teuthology.orchestra.run.smithi169.stdout:Epoch : 1 2024-09-18T11:55:41.788 INFO:teuthology.orchestra.run.smithi169.stdout:Version : 2.06 2024-09-18T11:55:41.789 INFO:teuthology.orchestra.run.smithi169.stdout:Release : 82.el9 2024-09-18T11:55:41.789 INFO:teuthology.orchestra.run.smithi169.stdout:Architecture: x86_64 2024-09-18T11:55:41.789 INFO:teuthology.orchestra.run.smithi169.stdout:Install Date: Wed 28 Aug 2024 09:06:27 PM UTC 2024-09-18T11:55:41.789 INFO:teuthology.orchestra.run.smithi169.stdout:Group : Unspecified 2024-09-18T11:55:41.789 INFO:teuthology.orchestra.run.smithi169.stdout:Size : 8274670 2024-09-18T11:55:41.789 INFO:teuthology.orchestra.run.smithi169.stdout:License : GPLv3+ 2024-09-18T11:55:41.789 INFO:teuthology.orchestra.run.smithi169.stdout:Signature : RSA/SHA256, Mon 01 Jul 2024 07:46:42 AM UTC, Key ID 05b555b38483c65d 2024-09-18T11:55:41.789 INFO:teuthology.orchestra.run.smithi169.stdout:Source RPM : grub2-2.06-82.el9.src.rpm 2024-09-18T11:55:41.789 INFO:teuthology.orchestra.run.smithi169.stdout:Build Date : Fri 28 Jun 2024 09:24:44 AM UTC 2024-09-18T11:55:41.789 INFO:teuthology.orchestra.run.smithi169.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-09-18T11:55:41.789 INFO:teuthology.orchestra.run.smithi169.stdout:Packager : builder@centos.org 2024-09-18T11:55:41.790 INFO:teuthology.orchestra.run.smithi169.stdout:Vendor : CentOS 2024-09-18T11:55:41.790 INFO:teuthology.orchestra.run.smithi169.stdout:URL : http://www.gnu.org/software/grub/ 2024-09-18T11:55:41.790 INFO:teuthology.orchestra.run.smithi169.stdout:Summary : Support tools for GRUB. 2024-09-18T11:55:41.790 INFO:teuthology.orchestra.run.smithi169.stdout:Description : 2024-09-18T11:55:41.790 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T11:55:41.790 INFO:teuthology.orchestra.run.smithi169.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-09-18T11:55:41.790 INFO:teuthology.orchestra.run.smithi169.stdout:customizable bootloader with modular architecture. It supports a rich 2024-09-18T11:55:41.791 INFO:teuthology.orchestra.run.smithi169.stdout:variety of kernel formats, file systems, computer architectures and 2024-09-18T11:55:41.791 INFO:teuthology.orchestra.run.smithi169.stdout:hardware devices. 2024-09-18T11:55:41.791 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T11:55:41.791 INFO:teuthology.orchestra.run.smithi169.stdout:This subpackage provides tools for support of all platforms. 2024-09-18T11:55:41.792 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-09-18T11:55:41.792 INFO:teuthology.task.kernel:Updating grub on smithi169 to boot 5.14.0-508.el9.x86_64 2024-09-18T11:55:41.792 DEBUG:teuthology.orchestra.run.smithi169:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-09-18T11:55:42.208 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 4/4 2024-09-18T11:55:42.247 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 4/4 2024-09-18T11:55:42.467 INFO:teuthology.orchestra.run.smithi169.stderr:Generating grub configuration file ... 2024-09-18T11:55:42.524 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: kernel-5.14.0-508.el9.x86_64 4/4 2024-09-18T11:55:42.524 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : kernel-5.14.0-508.el9.x86_64 1/4 2024-09-18T11:55:42.524 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-18T11:55:42.524 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-18T11:55:43.443 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-18T11:55:43.443 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T11:55:43.444 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-09-18T11:55:43.444 INFO:teuthology.orchestra.run.smithi076.stdout: kernel-5.14.0-508.el9.x86_64 2024-09-18T11:55:43.444 INFO:teuthology.orchestra.run.smithi076.stdout: kernel-core-5.14.0-508.el9.x86_64 2024-09-18T11:55:43.444 INFO:teuthology.orchestra.run.smithi076.stdout: kernel-modules-5.14.0-508.el9.x86_64 2024-09-18T11:55:43.444 INFO:teuthology.orchestra.run.smithi076.stdout: kernel-modules-core-5.14.0-508.el9.x86_64 2024-09-18T11:55:43.444 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T11:55:43.444 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-09-18T11:55:43.799 DEBUG:teuthology.orchestra.run.smithi076:> rpm -q kernel | sort -rV | head -n 1 2024-09-18T11:55:43.810 INFO:teuthology.orchestra.run.smithi169.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-09-18T11:55:43.843 INFO:teuthology.orchestra.run.smithi169.stderr:done 2024-09-18T11:55:43.845 DEBUG:teuthology.orchestra.run.smithi169:> mktemp 2024-09-18T11:55:43.860 INFO:teuthology.orchestra.run.smithi169.stdout:/tmp/tmp.JNSxRXVSQJ 2024-09-18T11:55:43.861 DEBUG:teuthology.orchestra.run.smithi169:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.JNSxRXVSQJ 2024-09-18T11:55:43.937 INFO:teuthology.orchestra.run.smithi076.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-18T11:55:43.937 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-18T11:55:43.938 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-18T11:55:43.938 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-18T11:55:43.938 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-18T11:55:43.938 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-09-18T11:55:43.938 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi076.front.sepia.ceph.com, path=None, version=distro) 2024-09-18T11:55:43.938 DEBUG:teuthology.orchestra.run.smithi076:> rpm -q kernel | sort -rV | head -n 1 2024-09-18T11:55:43.939 DEBUG:teuthology.orchestra.run.smithi169:> sudo chmod 0666 /tmp/tmp.JNSxRXVSQJ 2024-09-18T11:55:43.997 INFO:teuthology.orchestra.run.smithi076.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-18T11:55:43.997 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-18T11:55:43.998 DEBUG:teuthology.orchestra.run.smithi076:> sudo rpm -qi grub2-tools 2024-09-18T11:55:44.035 INFO:teuthology.orchestra.run.smithi076.stdout:Name : grub2-tools 2024-09-18T11:55:44.035 INFO:teuthology.orchestra.run.smithi076.stdout:Epoch : 1 2024-09-18T11:55:44.035 INFO:teuthology.orchestra.run.smithi076.stdout:Version : 2.06 2024-09-18T11:55:44.035 INFO:teuthology.orchestra.run.smithi076.stdout:Release : 82.el9 2024-09-18T11:55:44.035 INFO:teuthology.orchestra.run.smithi076.stdout:Architecture: x86_64 2024-09-18T11:55:44.035 INFO:teuthology.orchestra.run.smithi076.stdout:Install Date: Wed 28 Aug 2024 09:06:27 PM UTC 2024-09-18T11:55:44.036 INFO:teuthology.orchestra.run.smithi076.stdout:Group : Unspecified 2024-09-18T11:55:44.036 INFO:teuthology.orchestra.run.smithi076.stdout:Size : 8274670 2024-09-18T11:55:44.036 INFO:teuthology.orchestra.run.smithi076.stdout:License : GPLv3+ 2024-09-18T11:55:44.036 INFO:teuthology.orchestra.run.smithi076.stdout:Signature : RSA/SHA256, Mon 01 Jul 2024 07:46:42 AM UTC, Key ID 05b555b38483c65d 2024-09-18T11:55:44.036 INFO:teuthology.orchestra.run.smithi076.stdout:Source RPM : grub2-2.06-82.el9.src.rpm 2024-09-18T11:55:44.036 INFO:teuthology.orchestra.run.smithi076.stdout:Build Date : Fri 28 Jun 2024 09:24:44 AM UTC 2024-09-18T11:55:44.036 INFO:teuthology.orchestra.run.smithi076.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-09-18T11:55:44.036 INFO:teuthology.orchestra.run.smithi076.stdout:Packager : builder@centos.org 2024-09-18T11:55:44.036 INFO:teuthology.orchestra.run.smithi076.stdout:Vendor : CentOS 2024-09-18T11:55:44.036 INFO:teuthology.orchestra.run.smithi076.stdout:URL : http://www.gnu.org/software/grub/ 2024-09-18T11:55:44.036 INFO:teuthology.orchestra.run.smithi076.stdout:Summary : Support tools for GRUB. 2024-09-18T11:55:44.036 INFO:teuthology.orchestra.run.smithi076.stdout:Description : 2024-09-18T11:55:44.036 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T11:55:44.037 INFO:teuthology.orchestra.run.smithi076.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-09-18T11:55:44.037 INFO:teuthology.orchestra.run.smithi076.stdout:customizable bootloader with modular architecture. It supports a rich 2024-09-18T11:55:44.037 INFO:teuthology.orchestra.run.smithi076.stdout:variety of kernel formats, file systems, computer architectures and 2024-09-18T11:55:44.037 INFO:teuthology.orchestra.run.smithi076.stdout:hardware devices. 2024-09-18T11:55:44.037 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T11:55:44.037 INFO:teuthology.orchestra.run.smithi076.stdout:This subpackage provides tools for support of all platforms. 2024-09-18T11:55:44.038 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-09-18T11:55:44.038 INFO:teuthology.task.kernel:Updating grub on smithi076 to boot 5.14.0-508.el9.x86_64 2024-09-18T11:55:44.038 DEBUG:teuthology.orchestra.run.smithi076:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-09-18T11:55:44.079 DEBUG:teuthology.orchestra.remote:smithi169:/tmp/tmp.JNSxRXVSQJ is 6KB 2024-09-18T11:55:44.127 DEBUG:teuthology.orchestra.run.smithi169:> rm -fr /tmp/tmp.JNSxRXVSQJ 2024-09-18T11:55:44.142 DEBUG:teuthology.orchestra.run.smithi169:> sudo /bin/ls /boot/loader/entries || true 2024-09-18T11:55:44.214 INFO:teuthology.orchestra.run.smithi169.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-0-rescue.conf 2024-09-18T11:55:44.214 INFO:teuthology.orchestra.run.smithi169.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-239.el9.x86_64.conf 2024-09-18T11:55:44.214 INFO:teuthology.orchestra.run.smithi169.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-503.el9.x86_64.conf 2024-09-18T11:55:44.214 INFO:teuthology.orchestra.run.smithi169.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64.conf 2024-09-18T11:55:44.215 DEBUG:teuthology.orchestra.run.smithi169:> sudo grub2-set-default fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64 2024-09-18T11:55:44.368 DEBUG:teuthology.orchestra.run.smithi169:> sudo shutdown -r now 2024-09-18T11:55:44.479 ERROR:paramiko.transport:Socket exception: Connection reset by peer (104) 2024-09-18T11:55:44.720 INFO:teuthology.orchestra.run.smithi076.stderr:Generating grub configuration file ... 2024-09-18T11:55:46.045 INFO:teuthology.orchestra.run.smithi076.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-09-18T11:55:46.071 INFO:teuthology.orchestra.run.smithi076.stderr:done 2024-09-18T11:55:46.074 DEBUG:teuthology.orchestra.run.smithi076:> mktemp 2024-09-18T11:55:46.089 INFO:teuthology.orchestra.run.smithi076.stdout:/tmp/tmp.DtJEa45kRi 2024-09-18T11:55:46.089 DEBUG:teuthology.orchestra.run.smithi076:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.DtJEa45kRi 2024-09-18T11:55:46.156 DEBUG:teuthology.orchestra.run.smithi076:> sudo chmod 0666 /tmp/tmp.DtJEa45kRi 2024-09-18T11:55:46.303 DEBUG:teuthology.orchestra.remote:smithi076:/tmp/tmp.DtJEa45kRi is 6KB 2024-09-18T11:55:46.352 DEBUG:teuthology.orchestra.run.smithi076:> rm -fr /tmp/tmp.DtJEa45kRi 2024-09-18T11:55:46.366 DEBUG:teuthology.orchestra.run.smithi076:> sudo /bin/ls /boot/loader/entries || true 2024-09-18T11:55:46.429 INFO:teuthology.orchestra.run.smithi076.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-0-rescue.conf 2024-09-18T11:55:46.429 INFO:teuthology.orchestra.run.smithi076.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-239.el9.x86_64.conf 2024-09-18T11:55:46.430 INFO:teuthology.orchestra.run.smithi076.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-503.el9.x86_64.conf 2024-09-18T11:55:46.430 INFO:teuthology.orchestra.run.smithi076.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64.conf 2024-09-18T11:55:46.431 DEBUG:teuthology.orchestra.run.smithi076:> sudo grub2-set-default fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64 2024-09-18T11:55:46.583 DEBUG:teuthology.orchestra.run.smithi076:> sudo shutdown -r now 2024-09-18T11:56:07.461 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-09-18T11:56:07.461 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi160.front.sepia.ceph.com' 2024-09-18T11:56:07.462 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi160.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-18T11:56:14.377 INFO:teuthology.task.kernel:Checking client host.c for new kernel version... 2024-09-18T11:56:14.378 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi169.front.sepia.ceph.com' 2024-09-18T11:56:14.378 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi169.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-18T11:56:16.588 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-09-18T11:56:16.588 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi076.front.sepia.ceph.com' 2024-09-18T11:56:16.589 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi076.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-18T11:56:25.793 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.160 2024-09-18T11:56:32.701 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.169 2024-09-18T11:56:34.797 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi160.front.sepia.ceph.com' 2024-09-18T11:56:34.798 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi160.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-18T11:56:35.005 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.76 2024-09-18T11:56:37.856 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.160 2024-09-18T11:56:41.706 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi169.front.sepia.ceph.com' 2024-09-18T11:56:41.707 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi169.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-18T11:56:44.007 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi076.front.sepia.ceph.com' 2024-09-18T11:56:44.008 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi076.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-18T11:56:44.769 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.169 2024-09-18T11:56:47.073 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.76 2024-09-18T11:56:49.859 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi160.front.sepia.ceph.com' 2024-09-18T11:56:49.859 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi160.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-18T11:56:56.777 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi169.front.sepia.ceph.com' 2024-09-18T11:56:56.777 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi169.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-18T11:56:59.076 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi076.front.sepia.ceph.com' 2024-09-18T11:56:59.077 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi076.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-18T11:57:02.145 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.76 2024-09-18T11:57:15.197 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.169 2024-09-18T11:57:17.148 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi076.front.sepia.ceph.com' 2024-09-18T11:57:17.149 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi076.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-18T11:57:21.876 DEBUG:teuthology.orchestra.run.smithi160:> true 2024-09-18T11:57:22.404 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi160.front.sepia.ceph.com' 2024-09-18T11:57:22.404 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.14.0-508.el9.x86_64"... 2024-09-18T11:57:22.404 DEBUG:teuthology.orchestra.run.smithi160:> uname -r 2024-09-18T11:57:22.419 INFO:teuthology.orchestra.run.smithi160.stdout:5.14.0-508.el9.x86_64 2024-09-18T11:57:22.419 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-18T11:57:22.419 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-18T11:57:22.419 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-09-18T11:57:23.420 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-09-18T11:57:23.420 DEBUG:teuthology.orchestra.run.smithi160:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-18T11:57:23.508 INFO:teuthology.orchestra.run.smithi160.stdout:ttyS1 2024-09-18T11:57:23.537 DEBUG:teuthology.parallel:result is None 2024-09-18T11:57:30.199 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi169.front.sepia.ceph.com' 2024-09-18T11:57:30.200 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi169.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-18T11:57:30.584 DEBUG:teuthology.orchestra.run.smithi169:> true 2024-09-18T11:57:30.996 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi169.front.sepia.ceph.com' 2024-09-18T11:57:30.996 INFO:teuthology.task.kernel:Checking kernel version of host.c, want "5.14.0-508.el9.x86_64"... 2024-09-18T11:57:30.996 DEBUG:teuthology.orchestra.run.smithi169:> uname -r 2024-09-18T11:57:31.011 INFO:teuthology.orchestra.run.smithi169.stdout:5.14.0-508.el9.x86_64 2024-09-18T11:57:31.011 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-18T11:57:31.011 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-18T11:57:31.011 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-09-18T11:57:32.012 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-09-18T11:57:32.013 DEBUG:teuthology.orchestra.run.smithi169:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-18T11:57:32.147 INFO:teuthology.orchestra.run.smithi169.stdout:ttyS1 2024-09-18T11:57:32.169 DEBUG:teuthology.parallel:result is None 2024-09-18T11:57:49.328 DEBUG:teuthology.orchestra.run.smithi076:> true 2024-09-18T11:57:49.820 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi076.front.sepia.ceph.com' 2024-09-18T11:57:49.820 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.14.0-508.el9.x86_64"... 2024-09-18T11:57:49.820 DEBUG:teuthology.orchestra.run.smithi076:> uname -r 2024-09-18T11:57:49.861 INFO:teuthology.orchestra.run.smithi076.stdout:5.14.0-508.el9.x86_64 2024-09-18T11:57:49.861 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-18T11:57:49.861 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-18T11:57:49.861 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-09-18T11:57:50.862 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-09-18T11:57:50.863 DEBUG:teuthology.orchestra.run.smithi076:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-18T11:57:51.052 INFO:teuthology.orchestra.run.smithi076.stdout:ttyS1 2024-09-18T11:57:51.081 DEBUG:teuthology.parallel:result is None 2024-09-18T11:57:51.081 INFO:teuthology.run_tasks:Running task internal.base... 2024-09-18T11:57:51.089 INFO:teuthology.task.internal:Creating test directory... 2024-09-18T11:57:51.089 DEBUG:teuthology.orchestra.run.smithi076:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-18T11:57:51.091 DEBUG:teuthology.orchestra.run.smithi160:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-18T11:57:51.095 DEBUG:teuthology.orchestra.run.smithi169:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-18T11:57:51.114 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-09-18T11:57:51.123 INFO:teuthology.run_tasks:Running task internal.archive... 2024-09-18T11:57:51.132 INFO:teuthology.task.internal:Creating archive directory... 2024-09-18T11:57:51.133 DEBUG:teuthology.orchestra.run.smithi076:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-18T11:57:51.148 DEBUG:teuthology.orchestra.run.smithi160:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-18T11:57:51.155 DEBUG:teuthology.orchestra.run.smithi169:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-18T11:57:51.235 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-09-18T11:57:51.242 INFO:teuthology.task.internal:Enabling coredump saving... 2024-09-18T11:57:51.243 DEBUG:teuthology.orchestra.run.smithi076:> 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-18T11:57:51.245 DEBUG:teuthology.orchestra.run.smithi160:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-09-18T11:57:51.247 DEBUG:teuthology.orchestra.run.smithi169:> 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-18T11:57:51.270 INFO:teuthology.orchestra.run.smithi076.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-18T11:57:51.276 INFO:teuthology.orchestra.run.smithi160.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-18T11:57:51.279 INFO:teuthology.orchestra.run.smithi169.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-18T11:57:51.279 INFO:teuthology.orchestra.run.smithi076.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-18T11:57:51.288 INFO:teuthology.orchestra.run.smithi160.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-18T11:57:51.290 INFO:teuthology.orchestra.run.smithi169.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-18T11:57:51.292 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-09-18T11:57:51.300 INFO:teuthology.task.internal:Configuring sudo... 2024-09-18T11:57:51.300 DEBUG:teuthology.orchestra.run.smithi076:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-18T11:57:51.324 DEBUG:teuthology.orchestra.run.smithi160:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-18T11:57:51.331 DEBUG:teuthology.orchestra.run.smithi169:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-18T11:57:51.359 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-09-18T11:57:51.370 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-09-18T11:57:51.370 DEBUG:teuthology.orchestra.run.smithi076:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-18T11:57:51.389 DEBUG:teuthology.orchestra.run.smithi160:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-18T11:57:51.399 DEBUG:teuthology.orchestra.run.smithi169:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-18T11:57:51.416 DEBUG:teuthology.orchestra.run.smithi076:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-18T11:57:51.486 DEBUG:teuthology.orchestra.run.smithi076:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-18T11:57:51.536 DEBUG:teuthology.orchestra.run.smithi076:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-18T11:57:51.619 DEBUG:teuthology.orchestra.run.smithi076:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-18T11:57:51.657 DEBUG:teuthology.orchestra.run.smithi076:> set -ex 2024-09-18T11:57:51.658 DEBUG:teuthology.orchestra.run.smithi076:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-18T11:57:51.722 DEBUG:teuthology.orchestra.run.smithi160:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-18T11:57:51.768 DEBUG:teuthology.orchestra.run.smithi160:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-18T11:57:51.815 DEBUG:teuthology.orchestra.run.smithi160:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-18T11:57:51.901 DEBUG:teuthology.orchestra.run.smithi160:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-18T11:57:51.941 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-09-18T11:57:51.941 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-18T11:57:52.008 DEBUG:teuthology.orchestra.run.smithi169:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-18T11:57:52.054 DEBUG:teuthology.orchestra.run.smithi169:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-18T11:57:52.118 DEBUG:teuthology.orchestra.run.smithi169:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-18T11:57:52.164 DEBUG:teuthology.orchestra.run.smithi169:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-18T11:57:52.205 DEBUG:teuthology.orchestra.run.smithi169:> set -ex 2024-09-18T11:57:52.205 DEBUG:teuthology.orchestra.run.smithi169:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-18T11:57:52.272 DEBUG:teuthology.orchestra.run.smithi076:> sudo service rsyslog restart 2024-09-18T11:57:52.275 DEBUG:teuthology.orchestra.run.smithi160:> sudo service rsyslog restart 2024-09-18T11:57:52.277 DEBUG:teuthology.orchestra.run.smithi169:> sudo service rsyslog restart 2024-09-18T11:57:52.309 INFO:teuthology.orchestra.run.smithi076.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-18T11:57:52.322 INFO:teuthology.orchestra.run.smithi160.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-18T11:57:52.351 INFO:teuthology.orchestra.run.smithi169.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-18T11:57:52.798 INFO:teuthology.run_tasks:Running task internal.timer... 2024-09-18T11:57:52.812 INFO:teuthology.task.internal:Starting timer... 2024-09-18T11:57:52.812 INFO:teuthology.run_tasks:Running task pcp... 2024-09-18T11:57:52.826 INFO:teuthology.run_tasks:Running task selinux... 2024-09-18T11:57:52.835 DEBUG:teuthology.task:Applying overrides for task selinux: {'whitelist': ['scontext=system_u:system_r:logrotate_t:s0']} 2024-09-18T11:57:52.836 DEBUG:teuthology.orchestra.run.smithi076:> sudo service auditd rotate 2024-09-18T11:57:52.876 INFO:teuthology.orchestra.run.smithi076.stdout:Rotating logs: 2024-09-18T11:57:52.878 DEBUG:teuthology.orchestra.run.smithi160:> sudo service auditd rotate 2024-09-18T11:57:52.937 INFO:teuthology.orchestra.run.smithi160.stdout:Rotating logs: 2024-09-18T11:57:52.939 DEBUG:teuthology.orchestra.run.smithi169:> sudo service auditd rotate 2024-09-18T11:57:52.979 INFO:teuthology.orchestra.run.smithi169.stdout:Rotating logs: 2024-09-18T11:57:52.981 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-09-18T11:57:52.981 DEBUG:teuthology.orchestra.run.smithi076:> /usr/sbin/getenforce 2024-09-18T11:57:53.022 INFO:teuthology.orchestra.run.smithi076.stdout:Permissive 2024-09-18T11:57:53.023 DEBUG:teuthology.orchestra.run.smithi160:> /usr/sbin/getenforce 2024-09-18T11:57:53.058 INFO:teuthology.orchestra.run.smithi160.stdout:Permissive 2024-09-18T11:57:53.059 DEBUG:teuthology.orchestra.run.smithi169:> /usr/sbin/getenforce 2024-09-18T11:57:53.078 INFO:teuthology.orchestra.run.smithi169.stdout:Permissive 2024-09-18T11:57:53.078 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi076.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi160.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi169.front.sepia.ceph.com': 'permissive'} 2024-09-18T11:57:53.079 DEBUG:teuthology.orchestra.run.smithi076:> 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-18T11:57:53.104 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-18T11:57:53.105 DEBUG:teuthology.orchestra.run.smithi160:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 2024-09-18T11:57:53.133 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-18T11:57:53.133 DEBUG:teuthology.orchestra.run.smithi169:> 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-18T11:57:53.160 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-18T11:57:53.160 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-09-18T11:57:53.161 DEBUG:teuthology.orchestra.run.smithi076:> sudo /usr/sbin/setenforce permissive 2024-09-18T11:57:53.190 DEBUG:teuthology.orchestra.run.smithi160:> sudo /usr/sbin/setenforce permissive 2024-09-18T11:57:53.220 DEBUG:teuthology.orchestra.run.smithi169:> sudo /usr/sbin/setenforce permissive 2024-09-18T11:57:53.251 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-09-18T11:57:53.261 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-09-18T11:57:53.273 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-18T11:57:53.274 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi076.front.sepia.ceph.com,smithi160.front.sepia.ceph.com,smithi169.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-09-18T12:01:41.767 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi076.front.sepia.ceph.com'), Remote(name='ubuntu@smithi160.front.sepia.ceph.com'), Remote(name='ubuntu@smithi169.front.sepia.ceph.com')] 2024-09-18T12:01:41.769 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi076.front.sepia.ceph.com' 2024-09-18T12:01:41.770 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi076.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-18T12:01:41.853 DEBUG:teuthology.orchestra.run.smithi076:> true 2024-09-18T12:01:41.932 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi076.front.sepia.ceph.com' 2024-09-18T12:01:41.933 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi160.front.sepia.ceph.com' 2024-09-18T12:01:41.933 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi160.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-18T12:01:42.007 DEBUG:teuthology.orchestra.run.smithi160:> true 2024-09-18T12:01:42.079 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi160.front.sepia.ceph.com' 2024-09-18T12:01:42.080 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi169.front.sepia.ceph.com' 2024-09-18T12:01:42.080 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi169.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-18T12:01:42.155 DEBUG:teuthology.orchestra.run.smithi169:> true 2024-09-18T12:01:42.193 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi169.front.sepia.ceph.com' 2024-09-18T12:01:42.194 INFO:teuthology.run_tasks:Running task clock... 2024-09-18T12:01:42.208 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-09-18T12:01:42.208 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-18T12:01:42.209 DEBUG:teuthology.orchestra.run.smithi076:> 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-18T12:01:42.211 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-18T12:01:42.212 DEBUG:teuthology.orchestra.run.smithi160:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-18T12:01:42.217 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-18T12:01:42.217 DEBUG:teuthology.orchestra.run.smithi169:> 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-18T12:01:42.239 INFO:teuthology.orchestra.run.smithi076.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-18T12:01:42.243 INFO:teuthology.orchestra.run.smithi160.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-18T12:01:42.253 INFO:teuthology.orchestra.run.smithi076.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-18T12:01:42.257 INFO:teuthology.orchestra.run.smithi160.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-18T12:01:42.263 INFO:teuthology.orchestra.run.smithi169.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-18T12:01:42.277 INFO:teuthology.orchestra.run.smithi076.stderr:sudo: ntpd: command not found 2024-09-18T12:01:42.278 INFO:teuthology.orchestra.run.smithi169.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-18T12:01:42.281 INFO:teuthology.orchestra.run.smithi160.stderr:sudo: ntpd: command not found 2024-09-18T12:01:42.288 INFO:teuthology.orchestra.run.smithi076.stdout:506 Cannot talk to daemon 2024-09-18T12:01:42.292 INFO:teuthology.orchestra.run.smithi160.stdout:506 Cannot talk to daemon 2024-09-18T12:01:42.302 INFO:teuthology.orchestra.run.smithi076.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-18T12:01:42.303 INFO:teuthology.orchestra.run.smithi169.stderr:sudo: ntpd: command not found 2024-09-18T12:01:42.306 INFO:teuthology.orchestra.run.smithi160.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-18T12:01:42.315 INFO:teuthology.orchestra.run.smithi169.stdout:506 Cannot talk to daemon 2024-09-18T12:01:42.316 INFO:teuthology.orchestra.run.smithi076.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-18T12:01:42.321 INFO:teuthology.orchestra.run.smithi160.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-18T12:01:42.329 INFO:teuthology.orchestra.run.smithi169.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-18T12:01:42.344 INFO:teuthology.orchestra.run.smithi169.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-18T12:01:42.372 INFO:teuthology.orchestra.run.smithi076.stderr:bash: line 1: ntpq: command not found 2024-09-18T12:01:42.376 INFO:teuthology.orchestra.run.smithi076.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-18T12:01:42.376 INFO:teuthology.orchestra.run.smithi076.stdout:=============================================================================== 2024-09-18T12:01:42.376 INFO:teuthology.orchestra.run.smithi076.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-18T12:01:42.376 INFO:teuthology.orchestra.run.smithi076.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-18T12:01:42.376 INFO:teuthology.orchestra.run.smithi076.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-18T12:01:42.376 INFO:teuthology.orchestra.run.smithi076.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-18T12:01:42.387 INFO:teuthology.orchestra.run.smithi160.stderr:bash: line 1: ntpq: command not found 2024-09-18T12:01:42.390 INFO:teuthology.orchestra.run.smithi160.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-18T12:01:42.390 INFO:teuthology.orchestra.run.smithi160.stdout:=============================================================================== 2024-09-18T12:01:42.390 INFO:teuthology.orchestra.run.smithi160.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-18T12:01:42.390 INFO:teuthology.orchestra.run.smithi160.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-18T12:01:42.390 INFO:teuthology.orchestra.run.smithi160.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-18T12:01:42.391 INFO:teuthology.orchestra.run.smithi160.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-18T12:01:42.401 INFO:teuthology.orchestra.run.smithi169.stderr:bash: line 1: ntpq: command not found 2024-09-18T12:01:42.404 INFO:teuthology.orchestra.run.smithi169.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-18T12:01:42.405 INFO:teuthology.orchestra.run.smithi169.stdout:=============================================================================== 2024-09-18T12:01:42.405 INFO:teuthology.orchestra.run.smithi169.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-18T12:01:42.405 INFO:teuthology.orchestra.run.smithi169.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-18T12:01:42.405 INFO:teuthology.orchestra.run.smithi169.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-18T12:01:42.405 INFO:teuthology.orchestra.run.smithi169.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-18T12:01:42.406 INFO:teuthology.run_tasks:Running task install... 2024-09-18T12:01:42.414 DEBUG:teuthology.task.install:project ceph 2024-09-18T12:01:42.414 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': '7061ea6ca50908d104e9f3979dc615e118d9e153'}} 2024-09-18T12:01:42.414 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': '7061ea6ca50908d104e9f3979dc615e118d9e153'} 2024-09-18T12:01:42.414 INFO:teuthology.task.install:Using flavor: default 2024-09-18T12:01:42.420 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-18T12:01:42.420 INFO:teuthology.task.install:extra packages: [] 2024-09-18T12:01:42.421 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': '7061ea6ca50908d104e9f3979dc615e118d9e153', 'tag': None, 'wait_for_package': False} 2024-09-18T12:01:42.421 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=7061ea6ca50908d104e9f3979dc615e118d9e153 2024-09-18T12:01:42.423 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': '7061ea6ca50908d104e9f3979dc615e118d9e153', 'tag': None, 'wait_for_package': False} 2024-09-18T12:01:42.423 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=7061ea6ca50908d104e9f3979dc615e118d9e153 2024-09-18T12:01:42.424 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': '7061ea6ca50908d104e9f3979dc615e118d9e153', 'tag': None, 'wait_for_package': False} 2024-09-18T12:01:42.425 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=7061ea6ca50908d104e9f3979dc615e118d9e153 2024-09-18T12:01:42.575 INFO:teuthology.task.install.rpm:Pulling from https://4.chacra.ceph.com/r/ceph/wip-bharath11-testing-2024-09-18-1115-quincy/7061ea6ca50908d104e9f3979dc615e118d9e153/centos/9/flavors/default/ 2024-09-18T12:01:42.575 INFO:teuthology.task.install.rpm:Package version is 17.2.7-1645.g7061ea6c 2024-09-18T12:01:42.578 INFO:teuthology.task.install.rpm:Pulling from https://4.chacra.ceph.com/r/ceph/wip-bharath11-testing-2024-09-18-1115-quincy/7061ea6ca50908d104e9f3979dc615e118d9e153/centos/9/flavors/default/ 2024-09-18T12:01:42.578 INFO:teuthology.task.install.rpm:Package version is 17.2.7-1645.g7061ea6c 2024-09-18T12:01:42.581 INFO:teuthology.task.install.rpm:Pulling from https://4.chacra.ceph.com/r/ceph/wip-bharath11-testing-2024-09-18-1115-quincy/7061ea6ca50908d104e9f3979dc615e118d9e153/centos/9/flavors/default/ 2024-09-18T12:01:42.581 INFO:teuthology.task.install.rpm:Package version is 17.2.7-1645.g7061ea6c 2024-09-18T12:01:42.683 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://4.chacra.ceph.com/r/ceph/wip-bharath11-testing-2024-09-18-1115-quincy/7061ea6ca50908d104e9f3979dc615e118d9e153/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/wip-bharath11-testing-2024-09-18-1115-quincy/7061ea6ca50908d104e9f3979dc615e118d9e153/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/wip-bharath11-testing-2024-09-18-1115-quincy/7061ea6ca50908d104e9f3979dc615e118d9e153/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-09-18T12:01:42.684 DEBUG:teuthology.orchestra.run.smithi076:> set -ex 2024-09-18T12:01:42.684 DEBUG:teuthology.orchestra.run.smithi076:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-09-18T12:01:42.691 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://4.chacra.ceph.com/r/ceph/wip-bharath11-testing-2024-09-18-1115-quincy/7061ea6ca50908d104e9f3979dc615e118d9e153/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/wip-bharath11-testing-2024-09-18-1115-quincy/7061ea6ca50908d104e9f3979dc615e118d9e153/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/wip-bharath11-testing-2024-09-18-1115-quincy/7061ea6ca50908d104e9f3979dc615e118d9e153/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-09-18T12:01:42.692 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-09-18T12:01:42.692 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-09-18T12:01:42.701 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://4.chacra.ceph.com/r/ceph/wip-bharath11-testing-2024-09-18-1115-quincy/7061ea6ca50908d104e9f3979dc615e118d9e153/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/wip-bharath11-testing-2024-09-18-1115-quincy/7061ea6ca50908d104e9f3979dc615e118d9e153/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/wip-bharath11-testing-2024-09-18-1115-quincy/7061ea6ca50908d104e9f3979dc615e118d9e153/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-09-18T12:01:42.701 DEBUG:teuthology.orchestra.run.smithi169:> set -ex 2024-09-18T12:01:42.701 DEBUG:teuthology.orchestra.run.smithi169:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-09-18T12:01:42.711 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-18T12:01:42.711 DEBUG:teuthology.orchestra.run.smithi076:> 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/7061ea6ca50908d104e9f3979dc615e118d9e153/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-09-18T12:01:42.718 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-18T12:01:42.718 DEBUG:teuthology.orchestra.run.smithi160:> if test -f /etc/yum.repos.d/ceph.repo ; then sudo sed -i -e ':a;N;$!ba;s/enabled=1\ngpg/enabled=1\npriority=1\ngpg/g' -e 's;ref/[a-zA-Z0-9_-]*/;sha1/7061ea6ca50908d104e9f3979dc615e118d9e153/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-09-18T12:01:42.726 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-18T12:01:42.727 DEBUG:teuthology.orchestra.run.smithi169:> 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/7061ea6ca50908d104e9f3979dc615e118d9e153/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-09-18T12:01:42.776 DEBUG:teuthology.orchestra.run.smithi076:> 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-18T12:01:42.784 DEBUG:teuthology.orchestra.run.smithi160:> sudo touch -a /etc/yum/pluginconf.d/priorities.conf ; test -e /etc/yum/pluginconf.d/priorities.conf.orig || sudo cp -af /etc/yum/pluginconf.d/priorities.conf /etc/yum/pluginconf.d/priorities.conf.orig 2024-09-18T12:01:42.793 DEBUG:teuthology.orchestra.run.smithi169:> 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-18T12:01:42.850 DEBUG:teuthology.orchestra.run.smithi076:> 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-18T12:01:42.859 DEBUG:teuthology.orchestra.run.smithi160:> grep check_obsoletes /etc/yum/pluginconf.d/priorities.conf && sudo sed -i 's/check_obsoletes.*0/check_obsoletes = 1/g' /etc/yum/pluginconf.d/priorities.conf || echo 'check_obsoletes = 1' | sudo tee -a /etc/yum/pluginconf.d/priorities.conf 2024-09-18T12:01:42.868 DEBUG:teuthology.orchestra.run.smithi169:> 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-18T12:01:42.914 INFO:teuthology.orchestra.run.smithi076.stdout:check_obsoletes = 1 2024-09-18T12:01:42.916 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum clean all 2024-09-18T12:01:42.923 INFO:teuthology.orchestra.run.smithi160.stdout:check_obsoletes = 1 2024-09-18T12:01:42.925 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum clean all 2024-09-18T12:01:42.932 INFO:teuthology.orchestra.run.smithi169.stdout:check_obsoletes = 1 2024-09-18T12:01:42.934 DEBUG:teuthology.orchestra.run.smithi169:> sudo yum clean all 2024-09-18T12:01:43.144 INFO:teuthology.orchestra.run.smithi076.stdout:45 files removed 2024-09-18T12:01:43.161 INFO:teuthology.orchestra.run.smithi169.stdout:45 files removed 2024-09-18T12:01:43.162 INFO:teuthology.orchestra.run.smithi160.stdout:45 files removed 2024-09-18T12:01:43.170 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install ceph-radosgw 2024-09-18T12:01:43.189 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph-radosgw 2024-09-18T12:01:43.190 DEBUG:teuthology.orchestra.run.smithi169:> sudo yum -y install ceph-radosgw 2024-09-18T12:01:43.724 INFO:teuthology.orchestra.run.smithi076.stdout:ceph packages for x86_64 285 kB/s | 77 kB 00:00 2024-09-18T12:01:43.745 INFO:teuthology.orchestra.run.smithi160.stdout:ceph packages for x86_64 288 kB/s | 77 kB 00:00 2024-09-18T12:01:43.760 INFO:teuthology.orchestra.run.smithi169.stdout:ceph packages for x86_64 274 kB/s | 77 kB 00:00 2024-09-18T12:01:44.017 INFO:teuthology.orchestra.run.smithi076.stdout:ceph noarch packages 43 kB/s | 11 kB 00:00 2024-09-18T12:01:44.029 INFO:teuthology.orchestra.run.smithi160.stdout:ceph noarch packages 45 kB/s | 11 kB 00:00 2024-09-18T12:01:44.041 INFO:teuthology.orchestra.run.smithi169.stdout:ceph noarch packages 45 kB/s | 11 kB 00:00 2024-09-18T12:01:44.285 INFO:teuthology.orchestra.run.smithi076.stdout:ceph source packages 7.7 kB/s | 1.8 kB 00:00 2024-09-18T12:01:44.296 INFO:teuthology.orchestra.run.smithi160.stdout:ceph source packages 7.7 kB/s | 1.8 kB 00:00 2024-09-18T12:01:44.309 INFO:teuthology.orchestra.run.smithi169.stdout:ceph source packages 7.7 kB/s | 1.8 kB 00:00 2024-09-18T12:01:44.909 INFO:teuthology.orchestra.run.smithi169.stdout:CentOS Stream 9 - BaseOS 15 MB/s | 8.3 MB 00:00 2024-09-18T12:01:45.038 INFO:teuthology.orchestra.run.smithi160.stdout:CentOS Stream 9 - BaseOS 12 MB/s | 8.3 MB 00:00 2024-09-18T12:01:46.059 INFO:teuthology.orchestra.run.smithi076.stdout:CentOS Stream 9 - BaseOS 4.7 MB/s | 8.3 MB 00:01 2024-09-18T12:01:46.668 INFO:teuthology.orchestra.run.smithi169.stdout:CentOS Stream 9 - AppStream 29 MB/s | 20 MB 00:00 2024-09-18T12:01:47.702 INFO:teuthology.orchestra.run.smithi076.stdout:CentOS Stream 9 - AppStream 36 MB/s | 20 MB 00:00 2024-09-18T12:01:51.828 INFO:teuthology.orchestra.run.smithi169.stdout:CentOS Stream 9 - CRB 4.8 MB/s | 6.5 MB 00:01 2024-09-18T12:01:52.028 INFO:teuthology.orchestra.run.smithi076.stdout:CentOS Stream 9 - CRB 13 MB/s | 6.5 MB 00:00 2024-09-18T12:01:53.538 INFO:teuthology.orchestra.run.smithi076.stdout:CentOS Stream 9 - Extras packages 69 kB/s | 19 kB 00:00 2024-09-18T12:01:53.570 INFO:teuthology.orchestra.run.smithi169.stdout:CentOS Stream 9 - Extras packages 44 kB/s | 19 kB 00:00 2024-09-18T12:01:54.883 INFO:teuthology.orchestra.run.smithi076.stdout:Extra Packages for Enterprise Linux 18 MB/s | 23 MB 00:01 2024-09-18T12:01:55.032 INFO:teuthology.orchestra.run.smithi169.stdout:Extra Packages for Enterprise Linux 17 MB/s | 23 MB 00:01 2024-09-18T12:02:00.331 INFO:teuthology.orchestra.run.smithi076.stdout:lab-extras 26 kB/s | 1.7 kB 00:00 2024-09-18T12:02:00.488 INFO:teuthology.orchestra.run.smithi169.stdout:lab-extras 32 kB/s | 1.7 kB 00:00 2024-09-18T12:02:02.522 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-09-18T12:02:02.557 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:02:02.557 INFO:teuthology.orchestra.run.smithi076.stdout: Package Arch Version Repository Size 2024-09-18T12:02:02.557 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:02:02.557 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-09-18T12:02:02.558 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-radosgw x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 14 M 2024-09-18T12:02:02.558 INFO:teuthology.orchestra.run.smithi076.stdout:Upgrading: 2024-09-18T12:02:02.558 INFO:teuthology.orchestra.run.smithi076.stdout: librados2 x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 3.1 M 2024-09-18T12:02:02.558 INFO:teuthology.orchestra.run.smithi076.stdout: librbd1 x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 2.9 M 2024-09-18T12:02:02.558 INFO:teuthology.orchestra.run.smithi076.stdout:Installing dependencies: 2024-09-18T12:02:02.558 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-base x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 5.0 M 2024-09-18T12:02:02.558 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-common x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 22 M 2024-09-18T12:02:02.558 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-selinux x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 25 k 2024-09-18T12:02:02.558 INFO:teuthology.orchestra.run.smithi076.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2024-09-18T12:02:02.558 INFO:teuthology.orchestra.run.smithi076.stdout: libcephfs2 x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 637 k 2024-09-18T12:02:02.558 INFO:teuthology.orchestra.run.smithi076.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-09-18T12:02:02.558 INFO:teuthology.orchestra.run.smithi076.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-09-18T12:02:02.559 INFO:teuthology.orchestra.run.smithi076.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-09-18T12:02:02.559 INFO:teuthology.orchestra.run.smithi076.stdout: libradosstriper1 x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 458 k 2024-09-18T12:02:02.559 INFO:teuthology.orchestra.run.smithi076.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-09-18T12:02:02.559 INFO:teuthology.orchestra.run.smithi076.stdout: librgw2 x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 4.9 M 2024-09-18T12:02:02.559 INFO:teuthology.orchestra.run.smithi076.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-09-18T12:02:02.559 INFO:teuthology.orchestra.run.smithi076.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-09-18T12:02:02.559 INFO:teuthology.orchestra.run.smithi076.stdout: python3-ceph-argparse x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 45 k 2024-09-18T12:02:02.559 INFO:teuthology.orchestra.run.smithi076.stdout: python3-ceph-common x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 120 k 2024-09-18T12:02:02.559 INFO:teuthology.orchestra.run.smithi076.stdout: python3-cephfs x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 156 k 2024-09-18T12:02:02.559 INFO:teuthology.orchestra.run.smithi076.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-09-18T12:02:02.559 INFO:teuthology.orchestra.run.smithi076.stdout: python3-rados x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 320 k 2024-09-18T12:02:02.559 INFO:teuthology.orchestra.run.smithi076.stdout: python3-rbd x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 296 k 2024-09-18T12:02:02.559 INFO:teuthology.orchestra.run.smithi076.stdout: python3-rgw x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 99 k 2024-09-18T12:02:02.560 INFO:teuthology.orchestra.run.smithi076.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-09-18T12:02:02.560 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:02:02.560 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-09-18T12:02:02.560 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:02:02.560 INFO:teuthology.orchestra.run.smithi076.stdout:Install 22 Packages 2024-09-18T12:02:02.560 INFO:teuthology.orchestra.run.smithi076.stdout:Upgrade 2 Packages 2024-09-18T12:02:02.560 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:02:02.561 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 58 M 2024-09-18T12:02:02.561 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-09-18T12:02:02.705 INFO:teuthology.orchestra.run.smithi169.stdout:Dependencies resolved. 2024-09-18T12:02:02.718 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:02:02.719 INFO:teuthology.orchestra.run.smithi169.stdout: Package Arch Version Repository Size 2024-09-18T12:02:02.719 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:02:02.719 INFO:teuthology.orchestra.run.smithi169.stdout:Installing: 2024-09-18T12:02:02.719 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-radosgw x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 14 M 2024-09-18T12:02:02.719 INFO:teuthology.orchestra.run.smithi169.stdout:Upgrading: 2024-09-18T12:02:02.720 INFO:teuthology.orchestra.run.smithi169.stdout: librados2 x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 3.1 M 2024-09-18T12:02:02.720 INFO:teuthology.orchestra.run.smithi169.stdout: librbd1 x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 2.9 M 2024-09-18T12:02:02.720 INFO:teuthology.orchestra.run.smithi169.stdout:Installing dependencies: 2024-09-18T12:02:02.720 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-base x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 5.0 M 2024-09-18T12:02:02.720 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-common x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 22 M 2024-09-18T12:02:02.721 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-selinux x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 25 k 2024-09-18T12:02:02.721 INFO:teuthology.orchestra.run.smithi169.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2024-09-18T12:02:02.721 INFO:teuthology.orchestra.run.smithi169.stdout: libcephfs2 x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 637 k 2024-09-18T12:02:02.721 INFO:teuthology.orchestra.run.smithi169.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-09-18T12:02:02.722 INFO:teuthology.orchestra.run.smithi169.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-09-18T12:02:02.722 INFO:teuthology.orchestra.run.smithi169.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-09-18T12:02:02.722 INFO:teuthology.orchestra.run.smithi169.stdout: libradosstriper1 x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 458 k 2024-09-18T12:02:02.722 INFO:teuthology.orchestra.run.smithi169.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-09-18T12:02:02.722 INFO:teuthology.orchestra.run.smithi169.stdout: librgw2 x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 4.9 M 2024-09-18T12:02:02.722 INFO:teuthology.orchestra.run.smithi169.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-09-18T12:02:02.723 INFO:teuthology.orchestra.run.smithi169.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-09-18T12:02:02.723 INFO:teuthology.orchestra.run.smithi169.stdout: python3-ceph-argparse x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 45 k 2024-09-18T12:02:02.723 INFO:teuthology.orchestra.run.smithi169.stdout: python3-ceph-common x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 120 k 2024-09-18T12:02:02.723 INFO:teuthology.orchestra.run.smithi169.stdout: python3-cephfs x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 156 k 2024-09-18T12:02:02.723 INFO:teuthology.orchestra.run.smithi169.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-09-18T12:02:02.724 INFO:teuthology.orchestra.run.smithi169.stdout: python3-rados x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 320 k 2024-09-18T12:02:02.724 INFO:teuthology.orchestra.run.smithi169.stdout: python3-rbd x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 296 k 2024-09-18T12:02:02.724 INFO:teuthology.orchestra.run.smithi169.stdout: python3-rgw x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 99 k 2024-09-18T12:02:02.724 INFO:teuthology.orchestra.run.smithi169.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-09-18T12:02:02.724 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:02:02.725 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction Summary 2024-09-18T12:02:02.725 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:02:02.725 INFO:teuthology.orchestra.run.smithi169.stdout:Install 22 Packages 2024-09-18T12:02:02.725 INFO:teuthology.orchestra.run.smithi169.stdout:Upgrade 2 Packages 2024-09-18T12:02:02.725 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:02:02.726 INFO:teuthology.orchestra.run.smithi169.stdout:Total download size: 58 M 2024-09-18T12:02:02.726 INFO:teuthology.orchestra.run.smithi169.stdout:Downloading Packages: 2024-09-18T12:02:03.107 INFO:teuthology.orchestra.run.smithi076.stdout:(1/24): ceph-base-17.2.7-1645.g7061ea6c.el9.x86 10 MB/s | 5.0 MB 00:00 2024-09-18T12:02:03.166 INFO:teuthology.orchestra.run.smithi076.stdout:(2/24): ceph-selinux-17.2.7-1645.g7061ea6c.el9. 432 kB/s | 25 kB 00:00 2024-09-18T12:02:03.283 INFO:teuthology.orchestra.run.smithi076.stdout:(3/24): libcephfs2-17.2.7-1645.g7061ea6c.el9.x8 5.3 MB/s | 637 kB 00:00 2024-09-18T12:02:03.366 INFO:teuthology.orchestra.run.smithi076.stdout:(4/24): libradosstriper1-17.2.7-1645.g7061ea6c. 5.4 MB/s | 458 kB 00:00 2024-09-18T12:02:03.792 INFO:teuthology.orchestra.run.smithi076.stdout:(5/24): ceph-common-17.2.7-1645.g7061ea6c.el9.x 19 MB/s | 22 MB 00:01 2024-09-18T12:02:03.884 INFO:teuthology.orchestra.run.smithi076.stdout:(6/24): librgw2-17.2.7-1645.g7061ea6c.el9.x86_6 9.5 MB/s | 4.9 MB 00:00 2024-09-18T12:02:03.909 INFO:teuthology.orchestra.run.smithi076.stdout:(7/24): python3-ceph-argparse-17.2.7-1645.g7061 387 kB/s | 45 kB 00:00 2024-09-18T12:02:04.051 INFO:teuthology.orchestra.run.smithi076.stdout:(8/24): ceph-radosgw-17.2.7-1645.g7061ea6c.el9. 10 MB/s | 14 MB 00:01 2024-09-18T12:02:04.067 INFO:teuthology.orchestra.run.smithi076.stdout:(9/24): python3-ceph-common-17.2.7-1645.g7061ea 655 kB/s | 120 kB 00:00 2024-09-18T12:02:04.096 INFO:teuthology.orchestra.run.smithi076.stdout:(10/24): python3-cephfs-17.2.7-1645.g7061ea6c.e 851 kB/s | 156 kB 00:00 2024-09-18T12:02:04.118 INFO:teuthology.orchestra.run.smithi076.stdout:(11/24): python3-rados-17.2.7-1645.g7061ea6c.el 6.3 MB/s | 320 kB 00:00 2024-09-18T12:02:04.151 INFO:teuthology.orchestra.run.smithi076.stdout:(12/24): python3-rbd-17.2.7-1645.g7061ea6c.el9. 3.5 MB/s | 296 kB 00:00 2024-09-18T12:02:04.178 INFO:teuthology.orchestra.run.smithi076.stdout:(13/24): python3-rgw-17.2.7-1645.g7061ea6c.el9. 1.2 MB/s | 99 kB 00:00 2024-09-18T12:02:04.261 INFO:teuthology.orchestra.run.smithi076.stdout:(14/24): librabbitmq-0.11.0-7.el9.x86_64.rpm 416 kB/s | 45 kB 00:00 2024-09-18T12:02:04.302 INFO:teuthology.orchestra.run.smithi076.stdout:(15/24): libpmemobj-1.12.1-1.el9.x86_64.rpm 870 kB/s | 160 kB 00:00 2024-09-18T12:02:04.344 INFO:teuthology.orchestra.run.smithi076.stdout:(16/24): python3-prettytable-0.7.2-27.el9.noarc 1.0 MB/s | 42 kB 00:00 2024-09-18T12:02:04.373 INFO:teuthology.orchestra.run.smithi169.stdout:(1/24): ceph-base-17.2.7-1645.g7061ea6c.el9.x86 3.4 MB/s | 5.0 MB 00:01 2024-09-18T12:02:04.378 INFO:teuthology.orchestra.run.smithi076.stdout:(17/24): lttng-ust-2.12.0-6.el9.x86_64.rpm 2.4 MB/s | 292 kB 00:00 2024-09-18T12:02:04.423 INFO:teuthology.orchestra.run.smithi169.stdout:(2/24): ceph-selinux-17.2.7-1645.g7061ea6c.el9. 505 kB/s | 25 kB 00:00 2024-09-18T12:02:04.428 INFO:teuthology.orchestra.run.smithi076.stdout:(18/24): gperftools-libs-2.9.1-3.el9.x86_64.rpm 3.6 MB/s | 308 kB 00:00 2024-09-18T12:02:04.453 INFO:teuthology.orchestra.run.smithi076.stdout:(19/24): libunwind-1.6.2-1.el9.x86_64.rpm 2.9 MB/s | 67 kB 00:00 2024-09-18T12:02:04.470 INFO:teuthology.orchestra.run.smithi076.stdout:(20/24): liboath-2.6.7-2.el9.x86_64.rpm 538 kB/s | 49 kB 00:00 2024-09-18T12:02:04.504 INFO:teuthology.orchestra.run.smithi076.stdout:(21/24): librdkafka-1.6.1-102.el9.x86_64.rpm 2.0 MB/s | 662 kB 00:00 2024-09-18T12:02:04.546 INFO:teuthology.orchestra.run.smithi076.stdout:(22/24): thrift-0.15.0-2.el9.x86_64.rpm 17 MB/s | 1.6 MB 00:00 2024-09-18T12:02:04.556 INFO:teuthology.orchestra.run.smithi169.stdout:(3/24): libcephfs2-17.2.7-1645.g7061ea6c.el9.x8 4.7 MB/s | 637 kB 00:00 2024-09-18T12:02:04.705 INFO:teuthology.orchestra.run.smithi076.stdout:(23/24): librados2-17.2.7-1645.g7061ea6c.el9.x8 13 MB/s | 3.1 MB 00:00 2024-09-18T12:02:04.723 INFO:teuthology.orchestra.run.smithi169.stdout:(4/24): libradosstriper1-17.2.7-1645.g7061ea6c. 2.7 MB/s | 458 kB 00:00 2024-09-18T12:02:04.757 INFO:teuthology.orchestra.run.smithi076.stdout:(24/24): librbd1-17.2.7-1645.g7061ea6c.el9.x86_ 12 MB/s | 2.9 MB 00:00 2024-09-18T12:02:04.759 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:02:04.759 INFO:teuthology.orchestra.run.smithi076.stdout:Total 26 MB/s | 58 MB 00:02 2024-09-18T12:02:04.821 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-09-18T12:02:04.854 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-09-18T12:02:04.854 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-09-18T12:02:04.933 INFO:teuthology.orchestra.run.smithi169.stdout:(5/24): ceph-radosgw-17.2.7-1645.g7061ea6c.el9. 7.1 MB/s | 14 MB 00:02 2024-09-18T12:02:05.166 INFO:teuthology.orchestra.run.smithi169.stdout:(6/24): ceph-common-17.2.7-1645.g7061ea6c.el9.x 9.9 MB/s | 22 MB 00:02 2024-09-18T12:02:05.191 INFO:teuthology.orchestra.run.smithi169.stdout:(7/24): python3-ceph-argparse-17.2.7-1645.g7061 175 kB/s | 45 kB 00:00 2024-09-18T12:02:05.216 INFO:teuthology.orchestra.run.smithi169.stdout:(8/24): python3-ceph-common-17.2.7-1645.g7061ea 2.3 MB/s | 120 kB 00:00 2024-09-18T12:02:05.242 INFO:teuthology.orchestra.run.smithi169.stdout:(9/24): python3-cephfs-17.2.7-1645.g7061ea6c.el 3.0 MB/s | 156 kB 00:00 2024-09-18T12:02:05.267 INFO:teuthology.orchestra.run.smithi169.stdout:(10/24): python3-rados-17.2.7-1645.g7061ea6c.el 6.2 MB/s | 320 kB 00:00 2024-09-18T12:02:05.301 INFO:teuthology.orchestra.run.smithi169.stdout:(11/24): python3-rbd-17.2.7-1645.g7061ea6c.el9. 4.9 MB/s | 296 kB 00:00 2024-09-18T12:02:05.326 INFO:teuthology.orchestra.run.smithi169.stdout:(12/24): python3-rgw-17.2.7-1645.g7061ea6c.el9. 1.7 MB/s | 99 kB 00:00 2024-09-18T12:02:05.401 INFO:teuthology.orchestra.run.smithi169.stdout:(13/24): librgw2-17.2.7-1645.g7061ea6c.el9.x86_ 7.3 MB/s | 4.9 MB 00:00 2024-09-18T12:02:05.468 INFO:teuthology.orchestra.run.smithi169.stdout:(14/24): libpmemobj-1.12.1-1.el9.x86_64.rpm 958 kB/s | 160 kB 00:00 2024-09-18T12:02:05.478 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-09-18T12:02:05.479 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-09-18T12:02:05.493 INFO:teuthology.orchestra.run.smithi169.stdout:(15/24): librabbitmq-0.11.0-7.el9.x86_64.rpm 271 kB/s | 45 kB 00:00 2024-09-18T12:02:05.536 INFO:teuthology.orchestra.run.smithi169.stdout:(16/24): lttng-ust-2.12.0-6.el9.x86_64.rpm 4.3 MB/s | 292 kB 00:00 2024-09-18T12:02:05.561 INFO:teuthology.orchestra.run.smithi169.stdout:(17/24): python3-prettytable-0.7.2-27.el9.noarc 630 kB/s | 42 kB 00:00 2024-09-18T12:02:05.603 INFO:teuthology.orchestra.run.smithi169.stdout:(18/24): librdkafka-1.6.1-102.el9.x86_64.rpm 3.2 MB/s | 662 kB 00:00 2024-09-18T12:02:05.628 INFO:teuthology.orchestra.run.smithi169.stdout:(19/24): liboath-2.6.7-2.el9.x86_64.rpm 728 kB/s | 49 kB 00:00 2024-09-18T12:02:05.637 INFO:teuthology.orchestra.run.smithi160.stdout:CentOS Stream 9 - AppStream 1.0 MB/s | 20 MB 00:19 2024-09-18T12:02:05.670 INFO:teuthology.orchestra.run.smithi169.stdout:(20/24): gperftools-libs-2.9.1-3.el9.x86_64.rpm 2.2 MB/s | 308 kB 00:00 2024-09-18T12:02:05.704 INFO:teuthology.orchestra.run.smithi169.stdout:(21/24): libunwind-1.6.2-1.el9.x86_64.rpm 682 kB/s | 67 kB 00:00 2024-09-18T12:02:05.745 INFO:teuthology.orchestra.run.smithi169.stdout:(22/24): thrift-0.15.0-2.el9.x86_64.rpm 14 MB/s | 1.6 MB 00:00 2024-09-18T12:02:05.887 INFO:teuthology.orchestra.run.smithi169.stdout:(23/24): librbd1-17.2.7-1645.g7061ea6c.el9.x86_ 16 MB/s | 2.9 MB 00:00 2024-09-18T12:02:05.937 INFO:teuthology.orchestra.run.smithi169.stdout:(24/24): librados2-17.2.7-1645.g7061ea6c.el9.x8 12 MB/s | 3.1 MB 00:00 2024-09-18T12:02:05.942 INFO:teuthology.orchestra.run.smithi169.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:02:05.942 INFO:teuthology.orchestra.run.smithi169.stdout:Total 18 MB/s | 58 MB 00:03 2024-09-18T12:02:06.005 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction check 2024-09-18T12:02:06.038 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction check succeeded. 2024-09-18T12:02:06.038 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction test 2024-09-18T12:02:06.684 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction test succeeded. 2024-09-18T12:02:06.685 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction 2024-09-18T12:02:06.704 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-09-18T12:02:07.091 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/26 2024-09-18T12:02:07.141 INFO:teuthology.orchestra.run.smithi076.stdout: Upgrading : librados2-2:17.2.7-1645.g7061ea6c.el9.x86_64 2/26 2024-09-18T12:02:07.216 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: librados2-2:17.2.7-1645.g7061ea6c.el9.x86_64 2/26 2024-09-18T12:02:07.302 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-rados-2:17.2.7-1645.g7061ea6c.el9.x86_64 3/26 2024-09-18T12:02:07.325 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : libcephfs2-2:17.2.7-1645.g7061ea6c.el9.x86_64 4/26 2024-09-18T12:02:07.414 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: libcephfs2-2:17.2.7-1645.g7061ea6c.el9.x86_64 4/26 2024-09-18T12:02:07.463 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : thrift-0.15.0-2.el9.x86_64 5/26 2024-09-18T12:02:07.497 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 6/26 2024-09-18T12:02:07.934 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 7/26 2024-09-18T12:02:07.939 INFO:teuthology.orchestra.run.smithi169.stdout: Preparing : 1/1 2024-09-18T12:02:07.961 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : librgw2-2:17.2.7-1645.g7061ea6c.el9.x86_64 8/26 2024-09-18T12:02:08.024 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: librgw2-2:17.2.7-1645.g7061ea6c.el9.x86_64 8/26 2024-09-18T12:02:08.061 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : liboath-2.6.7-2.el9.x86_64 9/26 2024-09-18T12:02:08.104 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-ceph-argparse-2:17.2.7-1645.g7061ea6c.el9. 10/26 2024-09-18T12:02:08.141 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-cephfs-2:17.2.7-1645.g7061ea6c.el9.x86_64 11/26 2024-09-18T12:02:08.207 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-rgw-2:17.2.7-1645.g7061ea6c.el9.x86_64 12/26 2024-09-18T12:02:08.239 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : libradosstriper1-2:17.2.7-1645.g7061ea6c.el9.x86_6 13/26 2024-09-18T12:02:08.305 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: libradosstriper1-2:17.2.7-1645.g7061ea6c.el9.x86_6 13/26 2024-09-18T12:02:08.342 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/26 2024-09-18T12:02:08.345 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 14/26 2024-09-18T12:02:08.381 INFO:teuthology.orchestra.run.smithi169.stdout: Upgrading : librados2-2:17.2.7-1645.g7061ea6c.el9.x86_64 2/26 2024-09-18T12:02:08.389 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 15/26 2024-09-18T12:02:08.425 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 16/26 2024-09-18T12:02:08.474 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: librados2-2:17.2.7-1645.g7061ea6c.el9.x86_64 2/26 2024-09-18T12:02:08.553 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-rados-2:17.2.7-1645.g7061ea6c.el9.x86_64 3/26 2024-09-18T12:02:08.574 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : libcephfs2-2:17.2.7-1645.g7061ea6c.el9.x86_64 4/26 2024-09-18T12:02:08.663 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: libcephfs2-2:17.2.7-1645.g7061ea6c.el9.x86_64 4/26 2024-09-18T12:02:08.713 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : thrift-0.15.0-2.el9.x86_64 5/26 2024-09-18T12:02:08.724 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 17/26 2024-09-18T12:02:08.738 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 6/26 2024-09-18T12:02:08.768 INFO:teuthology.orchestra.run.smithi076.stdout: Upgrading : librbd1-2:17.2.7-1645.g7061ea6c.el9.x86_64 18/26 2024-09-18T12:02:08.858 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: librbd1-2:17.2.7-1645.g7061ea6c.el9.x86_64 18/26 2024-09-18T12:02:08.931 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-rbd-2:17.2.7-1645.g7061ea6c.el9.x86_64 19/26 2024-09-18T12:02:08.962 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-ceph-common-2:17.2.7-1645.g7061ea6c.el9.x8 20/26 2024-09-18T12:02:09.173 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 7/26 2024-09-18T12:02:09.202 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : librgw2-2:17.2.7-1645.g7061ea6c.el9.x86_64 8/26 2024-09-18T12:02:09.265 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: librgw2-2:17.2.7-1645.g7061ea6c.el9.x86_64 8/26 2024-09-18T12:02:09.294 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : liboath-2.6.7-2.el9.x86_64 9/26 2024-09-18T12:02:09.336 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-ceph-argparse-2:17.2.7-1645.g7061ea6c.el9. 10/26 2024-09-18T12:02:09.374 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-cephfs-2:17.2.7-1645.g7061ea6c.el9.x86_64 11/26 2024-09-18T12:02:09.445 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-rgw-2:17.2.7-1645.g7061ea6c.el9.x86_64 12/26 2024-09-18T12:02:09.471 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : libradosstriper1-2:17.2.7-1645.g7061ea6c.el9.x86_6 13/26 2024-09-18T12:02:09.537 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: libradosstriper1-2:17.2.7-1645.g7061ea6c.el9.x86_6 13/26 2024-09-18T12:02:09.578 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 14/26 2024-09-18T12:02:09.621 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 15/26 2024-09-18T12:02:09.660 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 16/26 2024-09-18T12:02:09.948 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 17/26 2024-09-18T12:02:09.992 INFO:teuthology.orchestra.run.smithi169.stdout: Upgrading : librbd1-2:17.2.7-1645.g7061ea6c.el9.x86_64 18/26 2024-09-18T12:02:10.082 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: librbd1-2:17.2.7-1645.g7061ea6c.el9.x86_64 18/26 2024-09-18T12:02:10.156 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-rbd-2:17.2.7-1645.g7061ea6c.el9.x86_64 19/26 2024-09-18T12:02:10.186 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-ceph-common-2:17.2.7-1645.g7061ea6c.el9.x8 20/26 2024-09-18T12:02:11.146 INFO:teuthology.orchestra.run.smithi160.stdout:CentOS Stream 9 - CRB 3.9 MB/s | 6.5 MB 00:01 2024-09-18T12:02:11.403 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-common-2:17.2.7-1645.g7061ea6c.el9.x86_64 21/26 2024-09-18T12:02:11.442 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-common-2:17.2.7-1645.g7061ea6c.el9.x86_64 21/26 2024-09-18T12:02:11.973 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-common-2:17.2.7-1645.g7061ea6c.el9.x86_64 21/26 2024-09-18T12:02:12.012 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-base-2:17.2.7-1645.g7061ea6c.el9.x86_64 22/26 2024-09-18T12:02:12.101 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-base-2:17.2.7-1645.g7061ea6c.el9.x86_64 22/26 2024-09-18T12:02:12.101 INFO:teuthology.orchestra.run.smithi076.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-09-18T12:02:12.101 INFO:teuthology.orchestra.run.smithi076.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-09-18T12:02:12.101 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:02:12.139 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-selinux-2:17.2.7-1645.g7061ea6c.el9.x86_64 23/26 2024-09-18T12:02:12.681 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: ceph-common-2:17.2.7-1645.g7061ea6c.el9.x86_64 21/26 2024-09-18T12:02:12.724 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : ceph-common-2:17.2.7-1645.g7061ea6c.el9.x86_64 21/26 2024-09-18T12:02:12.847 INFO:teuthology.orchestra.run.smithi160.stdout:CentOS Stream 9 - Extras packages 88 kB/s | 19 kB 00:00 2024-09-18T12:02:13.247 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: ceph-common-2:17.2.7-1645.g7061ea6c.el9.x86_64 21/26 2024-09-18T12:02:13.286 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : ceph-base-2:17.2.7-1645.g7061ea6c.el9.x86_64 22/26 2024-09-18T12:02:13.385 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: ceph-base-2:17.2.7-1645.g7061ea6c.el9.x86_64 22/26 2024-09-18T12:02:13.385 INFO:teuthology.orchestra.run.smithi169.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-09-18T12:02:13.385 INFO:teuthology.orchestra.run.smithi169.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-09-18T12:02:13.385 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:02:13.420 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : ceph-selinux-2:17.2.7-1645.g7061ea6c.el9.x86_64 23/26 2024-09-18T12:02:13.793 INFO:teuthology.orchestra.run.smithi160.stdout:Extra Packages for Enterprise Linux 28 MB/s | 23 MB 00:00 2024-09-18T12:02:19.449 INFO:teuthology.orchestra.run.smithi160.stdout:lab-extras 45 kB/s | 1.7 kB 00:00 2024-09-18T12:02:21.674 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-18T12:02:21.687 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:02:21.687 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repository Size 2024-09-18T12:02:21.687 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:02:21.687 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-18T12:02:21.687 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-radosgw x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 14 M 2024-09-18T12:02:21.687 INFO:teuthology.orchestra.run.smithi160.stdout:Upgrading: 2024-09-18T12:02:21.687 INFO:teuthology.orchestra.run.smithi160.stdout: librados2 x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 3.1 M 2024-09-18T12:02:21.687 INFO:teuthology.orchestra.run.smithi160.stdout: librbd1 x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 2.9 M 2024-09-18T12:02:21.687 INFO:teuthology.orchestra.run.smithi160.stdout:Installing dependencies: 2024-09-18T12:02:21.688 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-base x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 5.0 M 2024-09-18T12:02:21.688 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-common x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 22 M 2024-09-18T12:02:21.688 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-selinux x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 25 k 2024-09-18T12:02:21.688 INFO:teuthology.orchestra.run.smithi160.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2024-09-18T12:02:21.688 INFO:teuthology.orchestra.run.smithi160.stdout: libcephfs2 x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 637 k 2024-09-18T12:02:21.688 INFO:teuthology.orchestra.run.smithi160.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-09-18T12:02:21.688 INFO:teuthology.orchestra.run.smithi160.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-09-18T12:02:21.688 INFO:teuthology.orchestra.run.smithi160.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-09-18T12:02:21.688 INFO:teuthology.orchestra.run.smithi160.stdout: libradosstriper1 x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 458 k 2024-09-18T12:02:21.688 INFO:teuthology.orchestra.run.smithi160.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-09-18T12:02:21.688 INFO:teuthology.orchestra.run.smithi160.stdout: librgw2 x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 4.9 M 2024-09-18T12:02:21.688 INFO:teuthology.orchestra.run.smithi160.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-09-18T12:02:21.689 INFO:teuthology.orchestra.run.smithi160.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-09-18T12:02:21.689 INFO:teuthology.orchestra.run.smithi160.stdout: python3-ceph-argparse x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 45 k 2024-09-18T12:02:21.689 INFO:teuthology.orchestra.run.smithi160.stdout: python3-ceph-common x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 120 k 2024-09-18T12:02:21.689 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cephfs x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 156 k 2024-09-18T12:02:21.689 INFO:teuthology.orchestra.run.smithi160.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-09-18T12:02:21.689 INFO:teuthology.orchestra.run.smithi160.stdout: python3-rados x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 320 k 2024-09-18T12:02:21.689 INFO:teuthology.orchestra.run.smithi160.stdout: python3-rbd x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 296 k 2024-09-18T12:02:21.689 INFO:teuthology.orchestra.run.smithi160.stdout: python3-rgw x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 99 k 2024-09-18T12:02:21.689 INFO:teuthology.orchestra.run.smithi160.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-09-18T12:02:21.689 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:02:21.689 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-18T12:02:21.689 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:02:21.689 INFO:teuthology.orchestra.run.smithi160.stdout:Install 22 Packages 2024-09-18T12:02:21.690 INFO:teuthology.orchestra.run.smithi160.stdout:Upgrade 2 Packages 2024-09-18T12:02:21.690 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:02:21.690 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 58 M 2024-09-18T12:02:21.690 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-18T12:02:21.866 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-selinux-2:17.2.7-1645.g7061ea6c.el9.x86_64 23/26 2024-09-18T12:02:21.867 INFO:teuthology.orchestra.run.smithi076.stdout:skipping the directory /sys 2024-09-18T12:02:21.867 INFO:teuthology.orchestra.run.smithi076.stdout:skipping the directory /proc 2024-09-18T12:02:21.867 INFO:teuthology.orchestra.run.smithi076.stdout:skipping the directory /mnt 2024-09-18T12:02:21.867 INFO:teuthology.orchestra.run.smithi076.stdout:skipping the directory /var/tmp 2024-09-18T12:02:21.867 INFO:teuthology.orchestra.run.smithi076.stdout:skipping the directory /home 2024-09-18T12:02:21.867 INFO:teuthology.orchestra.run.smithi076.stdout:skipping the directory /root 2024-09-18T12:02:21.867 INFO:teuthology.orchestra.run.smithi076.stdout:skipping the directory /tmp 2024-09-18T12:02:21.867 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:02:22.650 INFO:teuthology.orchestra.run.smithi160.stdout:(1/24): ceph-base-17.2.7-1645.g7061ea6c.el9.x86 10 MB/s | 5.0 MB 00:00 2024-09-18T12:02:22.700 INFO:teuthology.orchestra.run.smithi160.stdout:(2/24): ceph-selinux-17.2.7-1645.g7061ea6c.el9. 505 kB/s | 25 kB 00:00 2024-09-18T12:02:22.784 INFO:teuthology.orchestra.run.smithi160.stdout:(3/24): libcephfs2-17.2.7-1645.g7061ea6c.el9.x8 7.5 MB/s | 637 kB 00:00 2024-09-18T12:02:22.876 INFO:teuthology.orchestra.run.smithi160.stdout:(4/24): libradosstriper1-17.2.7-1645.g7061ea6c. 4.9 MB/s | 458 kB 00:00 2024-09-18T12:02:23.126 INFO:teuthology.orchestra.run.smithi160.stdout:(5/24): ceph-radosgw-17.2.7-1645.g7061ea6c.el9. 15 MB/s | 14 MB 00:00 2024-09-18T12:02:23.160 INFO:teuthology.orchestra.run.smithi160.stdout:(6/24): python3-ceph-argparse-17.2.7-1645.g7061 1.3 MB/s | 45 kB 00:00 2024-09-18T12:02:23.209 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-radosgw-2:17.2.7-1645.g7061ea6c.el9.x86_64 24/26 2024-09-18T12:02:23.235 INFO:teuthology.orchestra.run.smithi160.stdout:(7/24): librgw2-17.2.7-1645.g7061ea6c.el9.x86_6 14 MB/s | 4.9 MB 00:00 2024-09-18T12:02:23.244 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: ceph-selinux-2:17.2.7-1645.g7061ea6c.el9.x86_64 23/26 2024-09-18T12:02:23.244 INFO:teuthology.orchestra.run.smithi169.stdout:skipping the directory /sys 2024-09-18T12:02:23.244 INFO:teuthology.orchestra.run.smithi169.stdout:skipping the directory /proc 2024-09-18T12:02:23.244 INFO:teuthology.orchestra.run.smithi169.stdout:skipping the directory /mnt 2024-09-18T12:02:23.244 INFO:teuthology.orchestra.run.smithi169.stdout:skipping the directory /var/tmp 2024-09-18T12:02:23.244 INFO:teuthology.orchestra.run.smithi169.stdout:skipping the directory /home 2024-09-18T12:02:23.245 INFO:teuthology.orchestra.run.smithi169.stdout:skipping the directory /root 2024-09-18T12:02:23.245 INFO:teuthology.orchestra.run.smithi169.stdout:skipping the directory /tmp 2024-09-18T12:02:23.245 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:02:23.259 INFO:teuthology.orchestra.run.smithi160.stdout:(8/24): python3-ceph-common-17.2.7-1645.g7061ea 1.2 MB/s | 120 kB 00:00 2024-09-18T12:02:23.285 INFO:teuthology.orchestra.run.smithi160.stdout:(9/24): python3-cephfs-17.2.7-1645.g7061ea6c.el 3.1 MB/s | 156 kB 00:00 2024-09-18T12:02:23.287 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-radosgw-2:17.2.7-1645.g7061ea6c.el9.x86_64 24/26 2024-09-18T12:02:23.287 INFO:teuthology.orchestra.run.smithi076.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-18T12:02:23.287 INFO:teuthology.orchestra.run.smithi076.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-09-18T12:02:23.287 INFO:teuthology.orchestra.run.smithi076.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-18T12:02:23.288 INFO:teuthology.orchestra.run.smithi076.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-18T12:02:23.288 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:02:23.289 INFO:teuthology.orchestra.run.smithi076.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 25/26 2024-09-18T12:02:23.310 INFO:teuthology.orchestra.run.smithi160.stdout:(10/24): python3-rados-17.2.7-1645.g7061ea6c.el 6.2 MB/s | 320 kB 00:00 2024-09-18T12:02:23.335 INFO:teuthology.orchestra.run.smithi160.stdout:(11/24): python3-rbd-17.2.7-1645.g7061ea6c.el9. 5.8 MB/s | 296 kB 00:00 2024-09-18T12:02:23.361 INFO:teuthology.orchestra.run.smithi160.stdout:(12/24): python3-rgw-17.2.7-1645.g7061ea6c.el9. 1.9 MB/s | 99 kB 00:00 2024-09-18T12:02:23.387 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 25/26 2024-09-18T12:02:23.387 INFO:teuthology.orchestra.run.smithi076.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 26/26 2024-09-18T12:02:23.569 INFO:teuthology.orchestra.run.smithi160.stdout:(13/24): ceph-common-17.2.7-1645.g7061ea6c.el9. 16 MB/s | 22 MB 00:01 2024-09-18T12:02:23.637 INFO:teuthology.orchestra.run.smithi160.stdout:(14/24): libpmemobj-1.12.1-1.el9.x86_64.rpm 533 kB/s | 160 kB 00:00 2024-09-18T12:02:23.662 INFO:teuthology.orchestra.run.smithi160.stdout:(15/24): librabbitmq-0.11.0-7.el9.x86_64.rpm 151 kB/s | 45 kB 00:00 2024-09-18T12:02:23.704 INFO:teuthology.orchestra.run.smithi160.stdout:(16/24): python3-prettytable-0.7.2-27.el9.noarc 1.0 MB/s | 42 kB 00:00 2024-09-18T12:02:23.737 INFO:teuthology.orchestra.run.smithi160.stdout:(17/24): lttng-ust-2.12.0-6.el9.x86_64.rpm 2.8 MB/s | 292 kB 00:00 2024-09-18T12:02:23.788 INFO:teuthology.orchestra.run.smithi160.stdout:(18/24): librdkafka-1.6.1-102.el9.x86_64.rpm 3.0 MB/s | 662 kB 00:00 2024-09-18T12:02:23.821 INFO:teuthology.orchestra.run.smithi160.stdout:(19/24): liboath-2.6.7-2.el9.x86_64.rpm 581 kB/s | 49 kB 00:00 2024-09-18T12:02:23.846 INFO:teuthology.orchestra.run.smithi160.stdout:(20/24): gperftools-libs-2.9.1-3.el9.x86_64.rpm 2.1 MB/s | 308 kB 00:00 2024-09-18T12:02:23.872 INFO:teuthology.orchestra.run.smithi160.stdout:(21/24): libunwind-1.6.2-1.el9.x86_64.rpm 823 kB/s | 67 kB 00:00 2024-09-18T12:02:23.930 INFO:teuthology.orchestra.run.smithi160.stdout:(22/24): thrift-0.15.0-2.el9.x86_64.rpm 15 MB/s | 1.6 MB 00:00 2024-09-18T12:02:24.039 INFO:teuthology.orchestra.run.smithi160.stdout:(23/24): librados2-17.2.7-1645.g7061ea6c.el9.x8 16 MB/s | 3.1 MB 00:00 2024-09-18T12:02:24.107 INFO:teuthology.orchestra.run.smithi160.stdout:(24/24): librbd1-17.2.7-1645.g7061ea6c.el9.x86_ 13 MB/s | 2.9 MB 00:00 2024-09-18T12:02:24.110 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:02:24.110 INFO:teuthology.orchestra.run.smithi160.stdout:Total 24 MB/s | 58 MB 00:02 2024-09-18T12:02:24.171 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-18T12:02:24.203 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-18T12:02:24.203 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-18T12:02:24.572 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : ceph-radosgw-2:17.2.7-1645.g7061ea6c.el9.x86_64 24/26 2024-09-18T12:02:24.642 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: ceph-radosgw-2:17.2.7-1645.g7061ea6c.el9.x86_64 24/26 2024-09-18T12:02:24.642 INFO:teuthology.orchestra.run.smithi169.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-18T12:02:24.642 INFO:teuthology.orchestra.run.smithi169.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-09-18T12:02:24.642 INFO:teuthology.orchestra.run.smithi169.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-18T12:02:24.642 INFO:teuthology.orchestra.run.smithi169.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-18T12:02:24.642 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:02:24.644 INFO:teuthology.orchestra.run.smithi169.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 25/26 2024-09-18T12:02:24.660 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 26/26 2024-09-18T12:02:24.660 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-base-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/26 2024-09-18T12:02:24.660 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-common-2:17.2.7-1645.g7061ea6c.el9.x86_64 2/26 2024-09-18T12:02:24.660 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-radosgw-2:17.2.7-1645.g7061ea6c.el9.x86_64 3/26 2024-09-18T12:02:24.661 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-selinux-2:17.2.7-1645.g7061ea6c.el9.x86_64 4/26 2024-09-18T12:02:24.661 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : libcephfs2-2:17.2.7-1645.g7061ea6c.el9.x86_64 5/26 2024-09-18T12:02:24.661 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : libradosstriper1-2:17.2.7-1645.g7061ea6c.el9.x86_6 6/26 2024-09-18T12:02:24.661 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : librgw2-2:17.2.7-1645.g7061ea6c.el9.x86_64 7/26 2024-09-18T12:02:24.661 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-ceph-argparse-2:17.2.7-1645.g7061ea6c.el9. 8/26 2024-09-18T12:02:24.661 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-ceph-common-2:17.2.7-1645.g7061ea6c.el9.x8 9/26 2024-09-18T12:02:24.661 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-cephfs-2:17.2.7-1645.g7061ea6c.el9.x86_64 10/26 2024-09-18T12:02:24.661 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-rados-2:17.2.7-1645.g7061ea6c.el9.x86_64 11/26 2024-09-18T12:02:24.661 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-rbd-2:17.2.7-1645.g7061ea6c.el9.x86_64 12/26 2024-09-18T12:02:24.661 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-rgw-2:17.2.7-1645.g7061ea6c.el9.x86_64 13/26 2024-09-18T12:02:24.661 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 14/26 2024-09-18T12:02:24.661 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 15/26 2024-09-18T12:02:24.661 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 16/26 2024-09-18T12:02:24.662 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 17/26 2024-09-18T12:02:24.662 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 18/26 2024-09-18T12:02:24.662 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 19/26 2024-09-18T12:02:24.662 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 20/26 2024-09-18T12:02:24.662 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 21/26 2024-09-18T12:02:24.662 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 22/26 2024-09-18T12:02:24.662 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : librados2-2:17.2.7-1645.g7061ea6c.el9.x86_64 23/26 2024-09-18T12:02:24.662 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 24/26 2024-09-18T12:02:24.662 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : librbd1-2:17.2.7-1645.g7061ea6c.el9.x86_64 25/26 2024-09-18T12:02:24.725 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 25/26 2024-09-18T12:02:24.725 INFO:teuthology.orchestra.run.smithi169.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 26/26 2024-09-18T12:02:24.857 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-18T12:02:24.858 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-18T12:02:25.602 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 26/26 2024-09-18T12:02:25.602 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:02:25.602 INFO:teuthology.orchestra.run.smithi076.stdout:Upgraded: 2024-09-18T12:02:25.602 INFO:teuthology.orchestra.run.smithi076.stdout: librados2-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:25.602 INFO:teuthology.orchestra.run.smithi076.stdout: librbd1-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:25.602 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-09-18T12:02:25.602 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-base-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:25.602 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-common-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:25.602 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-radosgw-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:25.603 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-selinux-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:25.603 INFO:teuthology.orchestra.run.smithi076.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2024-09-18T12:02:25.603 INFO:teuthology.orchestra.run.smithi076.stdout: libcephfs2-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:25.603 INFO:teuthology.orchestra.run.smithi076.stdout: liboath-2.6.7-2.el9.x86_64 2024-09-18T12:02:25.603 INFO:teuthology.orchestra.run.smithi076.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-09-18T12:02:25.603 INFO:teuthology.orchestra.run.smithi076.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-09-18T12:02:25.603 INFO:teuthology.orchestra.run.smithi076.stdout: libradosstriper1-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:25.603 INFO:teuthology.orchestra.run.smithi076.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-09-18T12:02:25.603 INFO:teuthology.orchestra.run.smithi076.stdout: librgw2-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:25.603 INFO:teuthology.orchestra.run.smithi076.stdout: libunwind-1.6.2-1.el9.x86_64 2024-09-18T12:02:25.603 INFO:teuthology.orchestra.run.smithi076.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-09-18T12:02:25.603 INFO:teuthology.orchestra.run.smithi076.stdout: python3-ceph-argparse-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:25.603 INFO:teuthology.orchestra.run.smithi076.stdout: python3-ceph-common-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:25.604 INFO:teuthology.orchestra.run.smithi076.stdout: python3-cephfs-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:25.604 INFO:teuthology.orchestra.run.smithi076.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-09-18T12:02:25.604 INFO:teuthology.orchestra.run.smithi076.stdout: python3-rados-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:25.604 INFO:teuthology.orchestra.run.smithi076.stdout: python3-rbd-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:25.604 INFO:teuthology.orchestra.run.smithi076.stdout: python3-rgw-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:25.604 INFO:teuthology.orchestra.run.smithi076.stdout: thrift-0.15.0-2.el9.x86_64 2024-09-18T12:02:25.604 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:02:25.604 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-09-18T12:02:25.948 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 26/26 2024-09-18T12:02:25.948 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : ceph-base-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/26 2024-09-18T12:02:25.948 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : ceph-common-2:17.2.7-1645.g7061ea6c.el9.x86_64 2/26 2024-09-18T12:02:25.948 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : ceph-radosgw-2:17.2.7-1645.g7061ea6c.el9.x86_64 3/26 2024-09-18T12:02:25.948 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : ceph-selinux-2:17.2.7-1645.g7061ea6c.el9.x86_64 4/26 2024-09-18T12:02:25.948 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : libcephfs2-2:17.2.7-1645.g7061ea6c.el9.x86_64 5/26 2024-09-18T12:02:25.948 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : libradosstriper1-2:17.2.7-1645.g7061ea6c.el9.x86_6 6/26 2024-09-18T12:02:25.948 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : librgw2-2:17.2.7-1645.g7061ea6c.el9.x86_64 7/26 2024-09-18T12:02:25.948 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-ceph-argparse-2:17.2.7-1645.g7061ea6c.el9. 8/26 2024-09-18T12:02:25.948 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-ceph-common-2:17.2.7-1645.g7061ea6c.el9.x8 9/26 2024-09-18T12:02:25.948 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-cephfs-2:17.2.7-1645.g7061ea6c.el9.x86_64 10/26 2024-09-18T12:02:25.949 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-rados-2:17.2.7-1645.g7061ea6c.el9.x86_64 11/26 2024-09-18T12:02:25.949 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-rbd-2:17.2.7-1645.g7061ea6c.el9.x86_64 12/26 2024-09-18T12:02:25.949 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-rgw-2:17.2.7-1645.g7061ea6c.el9.x86_64 13/26 2024-09-18T12:02:25.949 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 14/26 2024-09-18T12:02:25.949 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 15/26 2024-09-18T12:02:25.949 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 16/26 2024-09-18T12:02:25.949 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 17/26 2024-09-18T12:02:25.949 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 18/26 2024-09-18T12:02:25.949 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 19/26 2024-09-18T12:02:25.949 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 20/26 2024-09-18T12:02:25.949 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 21/26 2024-09-18T12:02:25.949 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 22/26 2024-09-18T12:02:25.949 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : librados2-2:17.2.7-1645.g7061ea6c.el9.x86_64 23/26 2024-09-18T12:02:25.950 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 24/26 2024-09-18T12:02:25.950 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : librbd1-2:17.2.7-1645.g7061ea6c.el9.x86_64 25/26 2024-09-18T12:02:25.981 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install ceph-test 2024-09-18T12:02:26.267 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-18T12:02:26.562 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:00:26 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:02:26.642 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/26 2024-09-18T12:02:26.694 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-09-18T12:02:26.694 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:02:26.695 INFO:teuthology.orchestra.run.smithi076.stdout: Package Arch Version Repository Size 2024-09-18T12:02:26.695 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:02:26.695 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-09-18T12:02:26.695 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-test x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 48 M 2024-09-18T12:02:26.695 INFO:teuthology.orchestra.run.smithi076.stdout:Installing dependencies: 2024-09-18T12:02:26.695 INFO:teuthology.orchestra.run.smithi076.stdout: libcephsqlite x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 163 k 2024-09-18T12:02:26.695 INFO:teuthology.orchestra.run.smithi076.stdout: socat x86_64 1.7.4.1-6.el9 appstream 304 k 2024-09-18T12:02:26.695 INFO:teuthology.orchestra.run.smithi076.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-09-18T12:02:26.695 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:02:26.695 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-09-18T12:02:26.695 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:02:26.695 INFO:teuthology.orchestra.run.smithi076.stdout:Install 4 Packages 2024-09-18T12:02:26.696 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:02:26.696 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 48 M 2024-09-18T12:02:26.696 INFO:teuthology.orchestra.run.smithi076.stdout:Installed size: 193 M 2024-09-18T12:02:26.696 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-09-18T12:02:26.708 INFO:teuthology.orchestra.run.smithi160.stdout: Upgrading : librados2-2:17.2.7-1645.g7061ea6c.el9.x86_64 2/26 2024-09-18T12:02:26.800 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: librados2-2:17.2.7-1645.g7061ea6c.el9.x86_64 2/26 2024-09-18T12:02:26.806 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 26/26 2024-09-18T12:02:26.806 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:02:26.806 INFO:teuthology.orchestra.run.smithi169.stdout:Upgraded: 2024-09-18T12:02:26.806 INFO:teuthology.orchestra.run.smithi169.stdout: librados2-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:26.806 INFO:teuthology.orchestra.run.smithi169.stdout: librbd1-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:26.806 INFO:teuthology.orchestra.run.smithi169.stdout:Installed: 2024-09-18T12:02:26.806 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-base-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:26.806 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-common-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:26.806 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-radosgw-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:26.806 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-selinux-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:26.807 INFO:teuthology.orchestra.run.smithi169.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2024-09-18T12:02:26.807 INFO:teuthology.orchestra.run.smithi169.stdout: libcephfs2-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:26.807 INFO:teuthology.orchestra.run.smithi169.stdout: liboath-2.6.7-2.el9.x86_64 2024-09-18T12:02:26.807 INFO:teuthology.orchestra.run.smithi169.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-09-18T12:02:26.807 INFO:teuthology.orchestra.run.smithi169.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-09-18T12:02:26.807 INFO:teuthology.orchestra.run.smithi169.stdout: libradosstriper1-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:26.807 INFO:teuthology.orchestra.run.smithi169.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-09-18T12:02:26.807 INFO:teuthology.orchestra.run.smithi169.stdout: librgw2-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:26.807 INFO:teuthology.orchestra.run.smithi169.stdout: libunwind-1.6.2-1.el9.x86_64 2024-09-18T12:02:26.807 INFO:teuthology.orchestra.run.smithi169.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-09-18T12:02:26.807 INFO:teuthology.orchestra.run.smithi169.stdout: python3-ceph-argparse-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:26.807 INFO:teuthology.orchestra.run.smithi169.stdout: python3-ceph-common-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:26.807 INFO:teuthology.orchestra.run.smithi169.stdout: python3-cephfs-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:26.807 INFO:teuthology.orchestra.run.smithi169.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-09-18T12:02:26.808 INFO:teuthology.orchestra.run.smithi169.stdout: python3-rados-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:26.808 INFO:teuthology.orchestra.run.smithi169.stdout: python3-rbd-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:26.808 INFO:teuthology.orchestra.run.smithi169.stdout: python3-rgw-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:26.808 INFO:teuthology.orchestra.run.smithi169.stdout: thrift-0.15.0-2.el9.x86_64 2024-09-18T12:02:26.808 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:02:26.808 INFO:teuthology.orchestra.run.smithi169.stdout:Complete! 2024-09-18T12:02:26.886 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-rados-2:17.2.7-1645.g7061ea6c.el9.x86_64 3/26 2024-09-18T12:02:26.909 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : libcephfs2-2:17.2.7-1645.g7061ea6c.el9.x86_64 4/26 2024-09-18T12:02:26.967 INFO:teuthology.orchestra.run.smithi076.stdout:(1/4): socat-1.7.4.1-6.el9.x86_64.rpm 1.4 MB/s | 304 kB 00:00 2024-09-18T12:02:26.992 INFO:teuthology.orchestra.run.smithi076.stdout:(2/4): libcephsqlite-17.2.7-1645.g7061ea6c.el9. 685 kB/s | 163 kB 00:00 2024-09-18T12:02:26.997 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: libcephfs2-2:17.2.7-1645.g7061ea6c.el9.x86_64 4/26 2024-09-18T12:02:27.017 INFO:teuthology.orchestra.run.smithi076.stdout:(3/4): xmlstarlet-1.6.1-20.el9.x86_64.rpm 1.2 MB/s | 64 kB 00:00 2024-09-18T12:02:27.043 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : thrift-0.15.0-2.el9.x86_64 5/26 2024-09-18T12:02:27.072 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 6/26 2024-09-18T12:02:27.161 DEBUG:teuthology.orchestra.run.smithi169:> sudo yum -y install ceph-test 2024-09-18T12:02:27.507 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 7/26 2024-09-18T12:02:27.528 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : librgw2-2:17.2.7-1645.g7061ea6c.el9.x86_64 8/26 2024-09-18T12:02:27.591 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: librgw2-2:17.2.7-1645.g7061ea6c.el9.x86_64 8/26 2024-09-18T12:02:27.620 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : liboath-2.6.7-2.el9.x86_64 9/26 2024-09-18T12:02:27.662 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-ceph-argparse-2:17.2.7-1645.g7061ea6c.el9. 10/26 2024-09-18T12:02:27.699 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-cephfs-2:17.2.7-1645.g7061ea6c.el9.x86_64 11/26 2024-09-18T12:02:27.744 INFO:teuthology.orchestra.run.smithi169.stdout:Last metadata expiration check: 0:00:27 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:02:27.764 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-rgw-2:17.2.7-1645.g7061ea6c.el9.x86_64 12/26 2024-09-18T12:02:27.789 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : libradosstriper1-2:17.2.7-1645.g7061ea6c.el9.x86_6 13/26 2024-09-18T12:02:27.855 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: libradosstriper1-2:17.2.7-1645.g7061ea6c.el9.x86_6 13/26 2024-09-18T12:02:27.874 INFO:teuthology.orchestra.run.smithi169.stdout:Dependencies resolved. 2024-09-18T12:02:27.875 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:02:27.875 INFO:teuthology.orchestra.run.smithi169.stdout: Package Arch Version Repository Size 2024-09-18T12:02:27.875 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:02:27.875 INFO:teuthology.orchestra.run.smithi169.stdout:Installing: 2024-09-18T12:02:27.875 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-test x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 48 M 2024-09-18T12:02:27.875 INFO:teuthology.orchestra.run.smithi169.stdout:Installing dependencies: 2024-09-18T12:02:27.876 INFO:teuthology.orchestra.run.smithi169.stdout: libcephsqlite x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 163 k 2024-09-18T12:02:27.876 INFO:teuthology.orchestra.run.smithi169.stdout: socat x86_64 1.7.4.1-6.el9 appstream 304 k 2024-09-18T12:02:27.876 INFO:teuthology.orchestra.run.smithi169.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-09-18T12:02:27.876 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:02:27.876 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction Summary 2024-09-18T12:02:27.876 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:02:27.876 INFO:teuthology.orchestra.run.smithi169.stdout:Install 4 Packages 2024-09-18T12:02:27.876 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:02:27.877 INFO:teuthology.orchestra.run.smithi169.stdout:Total download size: 48 M 2024-09-18T12:02:27.877 INFO:teuthology.orchestra.run.smithi169.stdout:Installed size: 193 M 2024-09-18T12:02:27.878 INFO:teuthology.orchestra.run.smithi169.stdout:Downloading Packages: 2024-09-18T12:02:27.903 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 14/26 2024-09-18T12:02:27.948 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 15/26 2024-09-18T12:02:27.989 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 16/26 2024-09-18T12:02:28.221 INFO:teuthology.orchestra.run.smithi169.stdout:(1/4): libcephsqlite-17.2.7-1645.g7061ea6c.el9. 755 kB/s | 163 kB 00:00 2024-09-18T12:02:28.281 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 17/26 2024-09-18T12:02:28.284 INFO:teuthology.orchestra.run.smithi076.stdout:(4/4): ceph-test-17.2.7-1645.g7061ea6c.el9.x86_ 31 MB/s | 48 MB 00:01 2024-09-18T12:02:28.286 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:02:28.286 INFO:teuthology.orchestra.run.smithi076.stdout:Total 30 MB/s | 48 MB 00:01 2024-09-18T12:02:28.313 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-09-18T12:02:28.318 INFO:teuthology.orchestra.run.smithi160.stdout: Upgrading : librbd1-2:17.2.7-1645.g7061ea6c.el9.x86_64 18/26 2024-09-18T12:02:28.331 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-09-18T12:02:28.331 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-09-18T12:02:28.408 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: librbd1-2:17.2.7-1645.g7061ea6c.el9.x86_64 18/26 2024-09-18T12:02:28.482 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-rbd-2:17.2.7-1645.g7061ea6c.el9.x86_64 19/26 2024-09-18T12:02:28.512 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-ceph-common-2:17.2.7-1645.g7061ea6c.el9.x8 20/26 2024-09-18T12:02:28.588 INFO:teuthology.orchestra.run.smithi169.stdout:(2/4): xmlstarlet-1.6.1-20.el9.x86_64.rpm 174 kB/s | 64 kB 00:00 2024-09-18T12:02:28.646 INFO:teuthology.orchestra.run.smithi169.stdout:(3/4): socat-1.7.4.1-6.el9.x86_64.rpm 475 kB/s | 304 kB 00:00 2024-09-18T12:02:28.698 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-09-18T12:02:28.698 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-09-18T12:02:29.222 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-09-18T12:02:29.292 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/4 2024-09-18T12:02:29.332 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : socat-1.7.4.1-6.el9.x86_64 2/4 2024-09-18T12:02:29.361 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : libcephsqlite-2:17.2.7-1645.g7061ea6c.el9.x86_64 3/4 2024-09-18T12:02:29.530 INFO:teuthology.orchestra.run.smithi169.stdout:(4/4): ceph-test-17.2.7-1645.g7061ea6c.el9.x86_ 31 MB/s | 48 MB 00:01 2024-09-18T12:02:29.532 INFO:teuthology.orchestra.run.smithi169.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:02:29.532 INFO:teuthology.orchestra.run.smithi169.stdout:Total 29 MB/s | 48 MB 00:01 2024-09-18T12:02:29.560 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction check 2024-09-18T12:02:29.580 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction check succeeded. 2024-09-18T12:02:29.580 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction test 2024-09-18T12:02:29.947 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction test succeeded. 2024-09-18T12:02:29.947 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction 2024-09-18T12:02:30.483 INFO:teuthology.orchestra.run.smithi169.stdout: Preparing : 1/1 2024-09-18T12:02:30.557 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/4 2024-09-18T12:02:30.595 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : socat-1.7.4.1-6.el9.x86_64 2/4 2024-09-18T12:02:30.624 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : libcephsqlite-2:17.2.7-1645.g7061ea6c.el9.x86_64 3/4 2024-09-18T12:02:30.935 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-common-2:17.2.7-1645.g7061ea6c.el9.x86_64 21/26 2024-09-18T12:02:30.976 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-common-2:17.2.7-1645.g7061ea6c.el9.x86_64 21/26 2024-09-18T12:02:31.504 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-common-2:17.2.7-1645.g7061ea6c.el9.x86_64 21/26 2024-09-18T12:02:31.537 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-base-2:17.2.7-1645.g7061ea6c.el9.x86_64 22/26 2024-09-18T12:02:31.615 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-base-2:17.2.7-1645.g7061ea6c.el9.x86_64 22/26 2024-09-18T12:02:31.615 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-09-18T12:02:31.615 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-09-18T12:02:31.615 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:02:31.646 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-selinux-2:17.2.7-1645.g7061ea6c.el9.x86_64 23/26 2024-09-18T12:02:33.814 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: libcephsqlite-2:17.2.7-1645.g7061ea6c.el9.x86_64 3/4 2024-09-18T12:02:33.884 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-test-2:17.2.7-1645.g7061ea6c.el9.x86_64 4/4 2024-09-18T12:02:35.055 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: libcephsqlite-2:17.2.7-1645.g7061ea6c.el9.x86_64 3/4 2024-09-18T12:02:35.130 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : ceph-test-2:17.2.7-1645.g7061ea6c.el9.x86_64 4/4 2024-09-18T12:02:36.095 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-test-2:17.2.7-1645.g7061ea6c.el9.x86_64 4/4 2024-09-18T12:02:36.095 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-test-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/4 2024-09-18T12:02:36.095 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : libcephsqlite-2:17.2.7-1645.g7061ea6c.el9.x86_64 2/4 2024-09-18T12:02:36.095 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : socat-1.7.4.1-6.el9.x86_64 3/4 2024-09-18T12:02:36.424 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 4/4 2024-09-18T12:02:36.425 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:02:36.425 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-09-18T12:02:36.425 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-test-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:36.425 INFO:teuthology.orchestra.run.smithi076.stdout: libcephsqlite-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:36.425 INFO:teuthology.orchestra.run.smithi076.stdout: socat-1.7.4.1-6.el9.x86_64 2024-09-18T12:02:36.425 INFO:teuthology.orchestra.run.smithi076.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-09-18T12:02:36.425 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:02:36.425 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-09-18T12:02:36.708 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install ceph 2024-09-18T12:02:37.290 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:00:37 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:02:37.420 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: ceph-test-2:17.2.7-1645.g7061ea6c.el9.x86_64 4/4 2024-09-18T12:02:37.420 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : ceph-test-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/4 2024-09-18T12:02:37.420 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : libcephsqlite-2:17.2.7-1645.g7061ea6c.el9.x86_64 2/4 2024-09-18T12:02:37.420 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : socat-1.7.4.1-6.el9.x86_64 3/4 2024-09-18T12:02:37.423 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-09-18T12:02:37.425 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:02:37.425 INFO:teuthology.orchestra.run.smithi076.stdout: Package Arch Version Repository Size 2024-09-18T12:02:37.425 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:02:37.425 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-09-18T12:02:37.425 INFO:teuthology.orchestra.run.smithi076.stdout: ceph x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 6.5 k 2024-09-18T12:02:37.425 INFO:teuthology.orchestra.run.smithi076.stdout:Installing dependencies: 2024-09-18T12:02:37.426 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-mds x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 2.1 M 2024-09-18T12:02:37.426 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-mgr x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 1.4 M 2024-09-18T12:02:37.426 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-mgr-modules-core noarch 2:17.2.7-1645.g7061ea6c.el9 ceph-noarch 240 k 2024-09-18T12:02:37.426 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-mon x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 3.9 M 2024-09-18T12:02:37.426 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-osd x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 15 M 2024-09-18T12:02:37.426 INFO:teuthology.orchestra.run.smithi076.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-09-18T12:02:37.426 INFO:teuthology.orchestra.run.smithi076.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-09-18T12:02:37.426 INFO:teuthology.orchestra.run.smithi076.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-09-18T12:02:37.426 INFO:teuthology.orchestra.run.smithi076.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-09-18T12:02:37.426 INFO:teuthology.orchestra.run.smithi076.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-09-18T12:02:37.426 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-09-18T12:02:37.427 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-09-18T12:02:37.427 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jaraco-collections 2024-09-18T12:02:37.427 INFO:teuthology.orchestra.run.smithi076.stdout: noarch 3.0.0-8.el9 epel 23 k 2024-09-18T12:02:37.427 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-09-18T12:02:37.427 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-09-18T12:02:37.427 INFO:teuthology.orchestra.run.smithi076.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-09-18T12:02:37.427 INFO:teuthology.orchestra.run.smithi076.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-09-18T12:02:37.427 INFO:teuthology.orchestra.run.smithi076.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-09-18T12:02:37.427 INFO:teuthology.orchestra.run.smithi076.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-09-18T12:02:37.427 INFO:teuthology.orchestra.run.smithi076.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-09-18T12:02:37.427 INFO:teuthology.orchestra.run.smithi076.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-09-18T12:02:37.427 INFO:teuthology.orchestra.run.smithi076.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-09-18T12:02:37.427 INFO:teuthology.orchestra.run.smithi076.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-09-18T12:02:37.428 INFO:teuthology.orchestra.run.smithi076.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-09-18T12:02:37.428 INFO:teuthology.orchestra.run.smithi076.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-09-18T12:02:37.428 INFO:teuthology.orchestra.run.smithi076.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-09-18T12:02:37.428 INFO:teuthology.orchestra.run.smithi076.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-09-18T12:02:37.428 INFO:teuthology.orchestra.run.smithi076.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-09-18T12:02:37.428 INFO:teuthology.orchestra.run.smithi076.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-09-18T12:02:37.428 INFO:teuthology.orchestra.run.smithi076.stdout: python3-urllib3 noarch 1.26.5-6.el9 baseos 215 k 2024-09-18T12:02:37.428 INFO:teuthology.orchestra.run.smithi076.stdout: python3-webob noarch 1.8.8-2.el9 epel 230 k 2024-09-18T12:02:37.428 INFO:teuthology.orchestra.run.smithi076.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-09-18T12:02:37.428 INFO:teuthology.orchestra.run.smithi076.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-09-18T12:02:37.428 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:02:37.429 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-09-18T12:02:37.429 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:02:37.429 INFO:teuthology.orchestra.run.smithi076.stdout:Install 34 Packages 2024-09-18T12:02:37.429 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:02:37.432 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 27 M 2024-09-18T12:02:37.432 INFO:teuthology.orchestra.run.smithi076.stdout:Installed size: 96 M 2024-09-18T12:02:37.432 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-09-18T12:02:37.739 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 4/4 2024-09-18T12:02:37.739 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:02:37.739 INFO:teuthology.orchestra.run.smithi169.stdout:Installed: 2024-09-18T12:02:37.740 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-test-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:37.740 INFO:teuthology.orchestra.run.smithi169.stdout: libcephsqlite-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:37.740 INFO:teuthology.orchestra.run.smithi169.stdout: socat-1.7.4.1-6.el9.x86_64 2024-09-18T12:02:37.740 INFO:teuthology.orchestra.run.smithi169.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-09-18T12:02:37.740 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:02:37.740 INFO:teuthology.orchestra.run.smithi169.stdout:Complete! 2024-09-18T12:02:37.918 INFO:teuthology.orchestra.run.smithi076.stdout:(1/34): ceph-17.2.7-1645.g7061ea6c.el9.x86_64.r 52 kB/s | 6.5 kB 00:00 2024-09-18T12:02:38.004 DEBUG:teuthology.orchestra.run.smithi169:> sudo yum -y install ceph 2024-09-18T12:02:38.077 INFO:teuthology.orchestra.run.smithi076.stdout:(2/34): ceph-mgr-17.2.7-1645.g7061ea6c.el9.x86_ 5.0 MB/s | 1.4 MB 00:00 2024-09-18T12:02:38.118 INFO:teuthology.orchestra.run.smithi076.stdout:(3/34): ceph-mds-17.2.7-1645.g7061ea6c.el9.x86_ 6.4 MB/s | 2.1 MB 00:00 2024-09-18T12:02:38.269 INFO:teuthology.orchestra.run.smithi076.stdout:(4/34): ceph-mgr-modules-core-17.2.7-1645.g7061 1.6 MB/s | 240 kB 00:00 2024-09-18T12:02:38.411 INFO:teuthology.orchestra.run.smithi076.stdout:(5/34): ceph-mon-17.2.7-1645.g7061ea6c.el9.x86_ 8.0 MB/s | 3.9 MB 00:00 2024-09-18T12:02:38.469 INFO:teuthology.orchestra.run.smithi076.stdout:(6/34): python3-cffi-1.14.5-5.el9.x86_64.rpm 1.2 MB/s | 253 kB 00:00 2024-09-18T12:02:38.536 INFO:teuthology.orchestra.run.smithi076.stdout:(7/34): python3-ply-3.11-14.el9.noarch.rpm 1.6 MB/s | 106 kB 00:00 2024-09-18T12:02:38.590 INFO:teuthology.orchestra.run.smithi169.stdout:Last metadata expiration check: 0:00:38 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:02:38.695 INFO:teuthology.orchestra.run.smithi076.stdout:(8/34): ceph-osd-17.2.7-1645.g7061ea6c.el9.x86_ 25 MB/s | 15 MB 00:00 2024-09-18T12:02:38.720 INFO:teuthology.orchestra.run.smithi076.stdout:(9/34): python3-pycparser-2.20-6.el9.noarch.rpm 737 kB/s | 135 kB 00:00 2024-09-18T12:02:38.723 INFO:teuthology.orchestra.run.smithi169.stdout:Dependencies resolved. 2024-09-18T12:02:38.726 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:02:38.726 INFO:teuthology.orchestra.run.smithi169.stdout: Package Arch Version Repository Size 2024-09-18T12:02:38.726 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:02:38.726 INFO:teuthology.orchestra.run.smithi169.stdout:Installing: 2024-09-18T12:02:38.726 INFO:teuthology.orchestra.run.smithi169.stdout: ceph x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 6.5 k 2024-09-18T12:02:38.726 INFO:teuthology.orchestra.run.smithi169.stdout:Installing dependencies: 2024-09-18T12:02:38.726 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-mds x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 2.1 M 2024-09-18T12:02:38.726 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-mgr x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 1.4 M 2024-09-18T12:02:38.726 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-mgr-modules-core noarch 2:17.2.7-1645.g7061ea6c.el9 ceph-noarch 240 k 2024-09-18T12:02:38.727 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-mon x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 3.9 M 2024-09-18T12:02:38.727 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-osd x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 15 M 2024-09-18T12:02:38.727 INFO:teuthology.orchestra.run.smithi169.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-09-18T12:02:38.727 INFO:teuthology.orchestra.run.smithi169.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-09-18T12:02:38.727 INFO:teuthology.orchestra.run.smithi169.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-09-18T12:02:38.727 INFO:teuthology.orchestra.run.smithi169.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-09-18T12:02:38.727 INFO:teuthology.orchestra.run.smithi169.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-09-18T12:02:38.727 INFO:teuthology.orchestra.run.smithi169.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-09-18T12:02:38.727 INFO:teuthology.orchestra.run.smithi169.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-09-18T12:02:38.727 INFO:teuthology.orchestra.run.smithi169.stdout: python3-jaraco-collections 2024-09-18T12:02:38.727 INFO:teuthology.orchestra.run.smithi169.stdout: noarch 3.0.0-8.el9 epel 23 k 2024-09-18T12:02:38.728 INFO:teuthology.orchestra.run.smithi169.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-09-18T12:02:38.728 INFO:teuthology.orchestra.run.smithi169.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-09-18T12:02:38.728 INFO:teuthology.orchestra.run.smithi169.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-09-18T12:02:38.728 INFO:teuthology.orchestra.run.smithi169.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-09-18T12:02:38.728 INFO:teuthology.orchestra.run.smithi169.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-09-18T12:02:38.728 INFO:teuthology.orchestra.run.smithi169.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-09-18T12:02:38.728 INFO:teuthology.orchestra.run.smithi169.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-09-18T12:02:38.728 INFO:teuthology.orchestra.run.smithi169.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-09-18T12:02:38.728 INFO:teuthology.orchestra.run.smithi169.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-09-18T12:02:38.728 INFO:teuthology.orchestra.run.smithi169.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-09-18T12:02:38.728 INFO:teuthology.orchestra.run.smithi169.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-09-18T12:02:38.728 INFO:teuthology.orchestra.run.smithi169.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-09-18T12:02:38.729 INFO:teuthology.orchestra.run.smithi169.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-09-18T12:02:38.729 INFO:teuthology.orchestra.run.smithi169.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-09-18T12:02:38.729 INFO:teuthology.orchestra.run.smithi169.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-09-18T12:02:38.729 INFO:teuthology.orchestra.run.smithi169.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-09-18T12:02:38.729 INFO:teuthology.orchestra.run.smithi169.stdout: python3-urllib3 noarch 1.26.5-6.el9 baseos 215 k 2024-09-18T12:02:38.729 INFO:teuthology.orchestra.run.smithi169.stdout: python3-webob noarch 1.8.8-2.el9 epel 230 k 2024-09-18T12:02:38.729 INFO:teuthology.orchestra.run.smithi169.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-09-18T12:02:38.729 INFO:teuthology.orchestra.run.smithi169.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-09-18T12:02:38.730 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:02:38.730 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction Summary 2024-09-18T12:02:38.730 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:02:38.730 INFO:teuthology.orchestra.run.smithi169.stdout:Install 34 Packages 2024-09-18T12:02:38.730 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:02:38.731 INFO:teuthology.orchestra.run.smithi169.stdout:Total download size: 27 M 2024-09-18T12:02:38.731 INFO:teuthology.orchestra.run.smithi169.stdout:Installed size: 96 M 2024-09-18T12:02:38.731 INFO:teuthology.orchestra.run.smithi169.stdout:Downloading Packages: 2024-09-18T12:02:38.779 INFO:teuthology.orchestra.run.smithi076.stdout:(10/34): python3-urllib3-1.26.5-6.el9.noarch.rp 3.6 MB/s | 215 kB 00:00 2024-09-18T12:02:38.879 INFO:teuthology.orchestra.run.smithi076.stdout:(11/34): python3-requests-2.25.1-8.el9.noarch.r 680 kB/s | 125 kB 00:00 2024-09-18T12:02:39.004 INFO:teuthology.orchestra.run.smithi076.stdout:(12/34): python3-cryptography-36.0.1-4.el9.x86_ 2.1 MB/s | 1.2 MB 00:00 2024-09-18T12:02:39.029 INFO:teuthology.orchestra.run.smithi076.stdout:(13/34): python3-markupsafe-1.1.1-12.el9.x86_64 231 kB/s | 35 kB 00:00 2024-09-18T12:02:39.063 INFO:teuthology.orchestra.run.smithi076.stdout:(14/34): python3-mako-1.1.4-6.el9.noarch.rpm 605 kB/s | 172 kB 00:00 2024-09-18T12:02:39.114 INFO:teuthology.orchestra.run.smithi076.stdout:(15/34): python3-pytz-2021.1-5.el9.noarch.rpm 608 kB/s | 51 kB 00:00 2024-09-18T12:02:39.139 INFO:teuthology.orchestra.run.smithi076.stdout:(16/34): python3-toml-0.10.2-6.el9.noarch.rpm 554 kB/s | 42 kB 00:00 2024-09-18T12:02:39.180 INFO:teuthology.orchestra.run.smithi169.stdout:(1/34): ceph-17.2.7-1645.g7061ea6c.el9.x86_64.r 49 kB/s | 6.5 kB 00:00 2024-09-18T12:02:39.181 INFO:teuthology.orchestra.run.smithi076.stdout:(17/34): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 650 kB/s | 43 kB 00:00 2024-09-18T12:02:39.197 INFO:teuthology.orchestra.run.smithi076.stdout:(18/34): python3-packaging-20.9-5.el9.noarch.rp 399 kB/s | 77 kB 00:00 2024-09-18T12:02:39.231 INFO:teuthology.orchestra.run.smithi076.stdout:(19/34): python3-cheroot-8.6.0-4.el9.noarch.rpm 1.8 MB/s | 172 kB 00:00 2024-09-18T12:02:39.257 INFO:teuthology.orchestra.run.smithi076.stdout:(20/34): python3-jaraco-8.2.1-3.el9.noarch.rpm 182 kB/s | 11 kB 00:00 2024-09-18T12:02:39.282 INFO:teuthology.orchestra.run.smithi076.stdout:(21/34): python3-jaraco-classes-3.2.1-5.el9.noa 365 kB/s | 18 kB 00:00 2024-09-18T12:02:39.315 INFO:teuthology.orchestra.run.smithi076.stdout:(22/34): python3-cherrypy-18.6.1-2.el9.noarch.r 2.6 MB/s | 358 kB 00:00 2024-09-18T12:02:39.341 INFO:teuthology.orchestra.run.smithi076.stdout:(23/34): python3-jaraco-functools-3.5.0-2.el9.n 332 kB/s | 19 kB 00:00 2024-09-18T12:02:39.355 INFO:teuthology.orchestra.run.smithi169.stdout:(2/34): ceph-mgr-17.2.7-1645.g7061ea6c.el9.x86_ 4.6 MB/s | 1.4 MB 00:00 2024-09-18T12:02:39.366 INFO:teuthology.orchestra.run.smithi076.stdout:(24/34): python3-jaraco-collections-3.0.0-8.el9 276 kB/s | 23 kB 00:00 2024-09-18T12:02:39.391 INFO:teuthology.orchestra.run.smithi076.stdout:(25/34): python3-jaraco-text-3.2.0-6.el9.noarch 261 kB/s | 20 kB 00:00 2024-09-18T12:02:39.406 INFO:teuthology.orchestra.run.smithi169.stdout:(3/34): ceph-mds-17.2.7-1645.g7061ea6c.el9.x86_ 5.8 MB/s | 2.1 MB 00:00 2024-09-18T12:02:39.416 INFO:teuthology.orchestra.run.smithi076.stdout:(26/34): python3-logutils-0.3.5-21.el9.noarch.r 614 kB/s | 46 kB 00:00 2024-09-18T12:02:39.442 INFO:teuthology.orchestra.run.smithi076.stdout:(27/34): python3-more-itertools-8.12.0-2.el9.no 1.0 MB/s | 79 kB 00:00 2024-09-18T12:02:39.467 INFO:teuthology.orchestra.run.smithi076.stdout:(28/34): python3-portend-3.1.0-2.el9.noarch.rpm 326 kB/s | 16 kB 00:00 2024-09-18T12:02:39.489 INFO:teuthology.orchestra.run.smithi169.stdout:(4/34): ceph-mgr-modules-core-17.2.7-1645.g7061 2.8 MB/s | 240 kB 00:00 2024-09-18T12:02:39.492 INFO:teuthology.orchestra.run.smithi076.stdout:(29/34): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.8 MB/s | 90 kB 00:00 2024-09-18T12:02:39.518 INFO:teuthology.orchestra.run.smithi076.stdout:(30/34): python3-tempora-5.0.0-2.el9.noarch.rpm 710 kB/s | 36 kB 00:00 2024-09-18T12:02:39.543 INFO:teuthology.orchestra.run.smithi076.stdout:(31/34): python3-pecan-1.4.2-3.el9.noarch.rpm 1.8 MB/s | 272 kB 00:00 2024-09-18T12:02:39.549 INFO:teuthology.orchestra.run.smithi169.stdout:(5/34): ceph-mon-17.2.7-1645.g7061ea6c.el9.x86_ 11 MB/s | 3.9 MB 00:00 2024-09-18T12:02:39.568 INFO:teuthology.orchestra.run.smithi076.stdout:(32/34): python3-zc-lockfile-2.0-10.el9.noarch. 801 kB/s | 20 kB 00:00 2024-09-18T12:02:39.593 INFO:teuthology.orchestra.run.smithi076.stdout:(33/34): python3-webob-1.8.8-2.el9.noarch.rpm 2.2 MB/s | 230 kB 00:00 2024-09-18T12:02:39.618 INFO:teuthology.orchestra.run.smithi076.stdout:(34/34): python3-werkzeug-2.0.3-3.el9.1.noarch. 4.2 MB/s | 427 kB 00:00 2024-09-18T12:02:39.622 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:02:39.622 INFO:teuthology.orchestra.run.smithi076.stdout:Total 12 MB/s | 27 MB 00:02 2024-09-18T12:02:39.665 INFO:teuthology.orchestra.run.smithi169.stdout:(6/34): python3-cffi-1.14.5-5.el9.x86_64.rpm 1.4 MB/s | 253 kB 00:00 2024-09-18T12:02:39.707 INFO:teuthology.orchestra.run.smithi169.stdout:(7/34): python3-ply-3.11-14.el9.noarch.rpm 2.5 MB/s | 106 kB 00:00 2024-09-18T12:02:39.747 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-09-18T12:02:39.783 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-09-18T12:02:39.783 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-09-18T12:02:39.866 INFO:teuthology.orchestra.run.smithi169.stdout:(8/34): ceph-osd-17.2.7-1645.g7061ea6c.el9.x86_ 30 MB/s | 15 MB 00:00 2024-09-18T12:02:39.891 INFO:teuthology.orchestra.run.smithi169.stdout:(9/34): python3-pycparser-2.20-6.el9.noarch.rpm 736 kB/s | 135 kB 00:00 2024-09-18T12:02:39.925 INFO:teuthology.orchestra.run.smithi169.stdout:(10/34): python3-cryptography-36.0.1-4.el9.x86_ 3.3 MB/s | 1.2 MB 00:00 2024-09-18T12:02:39.950 INFO:teuthology.orchestra.run.smithi169.stdout:(11/34): python3-urllib3-1.26.5-6.el9.noarch.rp 3.6 MB/s | 215 kB 00:00 2024-09-18T12:02:40.000 INFO:teuthology.orchestra.run.smithi169.stdout:(12/34): python3-requests-2.25.1-8.el9.noarch.r 934 kB/s | 125 kB 00:00 2024-09-18T12:02:40.084 INFO:teuthology.orchestra.run.smithi169.stdout:(13/34): python3-markupsafe-1.1.1-12.el9.x86_64 260 kB/s | 35 kB 00:00 2024-09-18T12:02:40.126 INFO:teuthology.orchestra.run.smithi169.stdout:(14/34): python3-mako-1.1.4-6.el9.noarch.rpm 858 kB/s | 172 kB 00:00 2024-09-18T12:02:40.151 INFO:teuthology.orchestra.run.smithi169.stdout:(15/34): python3-packaging-20.9-5.el9.noarch.rp 512 kB/s | 77 kB 00:00 2024-09-18T12:02:40.176 INFO:teuthology.orchestra.run.smithi169.stdout:(16/34): python3-pytz-2021.1-5.el9.noarch.rpm 554 kB/s | 51 kB 00:00 2024-09-18T12:02:40.184 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-09-18T12:02:40.184 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-09-18T12:02:40.201 INFO:teuthology.orchestra.run.smithi169.stdout:(17/34): python3-toml-0.10.2-6.el9.noarch.rpm 553 kB/s | 42 kB 00:00 2024-09-18T12:02:40.252 INFO:teuthology.orchestra.run.smithi169.stdout:(18/34): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 433 kB/s | 43 kB 00:00 2024-09-18T12:02:40.277 INFO:teuthology.orchestra.run.smithi169.stdout:(19/34): python3-jaraco-8.2.1-3.el9.noarch.rpm 463 kB/s | 11 kB 00:00 2024-09-18T12:02:40.302 INFO:teuthology.orchestra.run.smithi169.stdout:(20/34): python3-cheroot-8.6.0-4.el9.noarch.rpm 1.3 MB/s | 172 kB 00:00 2024-09-18T12:02:40.319 INFO:teuthology.orchestra.run.smithi169.stdout:(21/34): python3-jaraco-classes-3.2.1-5.el9.noa 422 kB/s | 18 kB 00:00 2024-09-18T12:02:40.336 INFO:teuthology.orchestra.run.smithi169.stdout:(22/34): python3-jaraco-collections-3.0.0-8.el9 690 kB/s | 23 kB 00:00 2024-09-18T12:02:40.353 INFO:teuthology.orchestra.run.smithi169.stdout:(23/34): python3-jaraco-functools-3.5.0-2.el9.n 579 kB/s | 19 kB 00:00 2024-09-18T12:02:40.370 INFO:teuthology.orchestra.run.smithi169.stdout:(24/34): python3-jaraco-text-3.2.0-6.el9.noarch 586 kB/s | 20 kB 00:00 2024-09-18T12:02:40.387 INFO:teuthology.orchestra.run.smithi169.stdout:(25/34): python3-logutils-0.3.5-21.el9.noarch.r 1.3 MB/s | 46 kB 00:00 2024-09-18T12:02:40.412 INFO:teuthology.orchestra.run.smithi169.stdout:(26/34): python3-more-itertools-8.12.0-2.el9.no 1.8 MB/s | 79 kB 00:00 2024-09-18T12:02:40.437 INFO:teuthology.orchestra.run.smithi169.stdout:(27/34): python3-cherrypy-18.6.1-2.el9.noarch.r 1.6 MB/s | 358 kB 00:00 2024-09-18T12:02:40.463 INFO:teuthology.orchestra.run.smithi169.stdout:(28/34): python3-portend-3.1.0-2.el9.noarch.rpm 326 kB/s | 16 kB 00:00 2024-09-18T12:02:40.488 INFO:teuthology.orchestra.run.smithi169.stdout:(29/34): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.8 MB/s | 90 kB 00:00 2024-09-18T12:02:40.513 INFO:teuthology.orchestra.run.smithi169.stdout:(30/34): python3-tempora-5.0.0-2.el9.noarch.rpm 714 kB/s | 36 kB 00:00 2024-09-18T12:02:40.538 INFO:teuthology.orchestra.run.smithi169.stdout:(31/34): python3-pecan-1.4.2-3.el9.noarch.rpm 1.8 MB/s | 272 kB 00:00 2024-09-18T12:02:40.564 INFO:teuthology.orchestra.run.smithi169.stdout:(32/34): python3-zc-lockfile-2.0-10.el9.noarch. 798 kB/s | 20 kB 00:00 2024-09-18T12:02:40.589 INFO:teuthology.orchestra.run.smithi169.stdout:(33/34): python3-webob-1.8.8-2.el9.noarch.rpm 2.2 MB/s | 230 kB 00:00 2024-09-18T12:02:40.614 INFO:teuthology.orchestra.run.smithi169.stdout:(34/34): python3-werkzeug-2.0.3-3.el9.1.noarch. 4.2 MB/s | 427 kB 00:00 2024-09-18T12:02:40.618 INFO:teuthology.orchestra.run.smithi169.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:02:40.618 INFO:teuthology.orchestra.run.smithi169.stdout:Total 14 MB/s | 27 MB 00:01 2024-09-18T12:02:40.742 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction check 2024-09-18T12:02:40.778 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction check succeeded. 2024-09-18T12:02:40.778 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction test 2024-09-18T12:02:41.173 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction test succeeded. 2024-09-18T12:02:41.174 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction 2024-09-18T12:02:41.441 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-09-18T12:02:41.496 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/34 2024-09-18T12:02:41.522 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-selinux-2:17.2.7-1645.g7061ea6c.el9.x86_64 23/26 2024-09-18T12:02:41.522 INFO:teuthology.orchestra.run.smithi160.stdout:skipping the directory /sys 2024-09-18T12:02:41.522 INFO:teuthology.orchestra.run.smithi160.stdout:skipping the directory /proc 2024-09-18T12:02:41.522 INFO:teuthology.orchestra.run.smithi160.stdout:skipping the directory /mnt 2024-09-18T12:02:41.523 INFO:teuthology.orchestra.run.smithi160.stdout:skipping the directory /var/tmp 2024-09-18T12:02:41.523 INFO:teuthology.orchestra.run.smithi160.stdout:skipping the directory /home 2024-09-18T12:02:41.523 INFO:teuthology.orchestra.run.smithi160.stdout:skipping the directory /root 2024-09-18T12:02:41.523 INFO:teuthology.orchestra.run.smithi160.stdout:skipping the directory /tmp 2024-09-18T12:02:41.523 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:02:41.529 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/34 2024-09-18T12:02:41.562 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 3/34 2024-09-18T12:02:41.654 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 4/34 2024-09-18T12:02:41.723 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 5/34 2024-09-18T12:02:41.773 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-webob-1.8.8-2.el9.noarch 6/34 2024-09-18T12:02:41.816 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 7/34 2024-09-18T12:02:41.856 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 8/34 2024-09-18T12:02:41.890 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 9/34 2024-09-18T12:02:41.923 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 10/34 2024-09-18T12:02:41.963 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 11/34 2024-09-18T12:02:42.007 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 12/34 2024-09-18T12:02:42.041 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 13/34 2024-09-18T12:02:42.090 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 14/34 2024-09-18T12:02:42.146 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-packaging-20.9-5.el9.noarch 15/34 2024-09-18T12:02:42.229 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 16/34 2024-09-18T12:02:42.391 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 17/34 2024-09-18T12:02:42.463 INFO:teuthology.orchestra.run.smithi169.stdout: Preparing : 1/1 2024-09-18T12:02:42.477 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 18/34 2024-09-18T12:02:42.517 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/34 2024-09-18T12:02:42.529 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-urllib3-1.26.5-6.el9.noarch 19/34 2024-09-18T12:02:42.557 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/34 2024-09-18T12:02:42.567 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 20/34 2024-09-18T12:02:42.591 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 3/34 2024-09-18T12:02:42.624 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-ply-3.11-14.el9.noarch 21/34 2024-09-18T12:02:42.680 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 22/34 2024-09-18T12:02:42.682 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 4/34 2024-09-18T12:02:42.752 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 5/34 2024-09-18T12:02:42.793 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-webob-1.8.8-2.el9.noarch 6/34 2024-09-18T12:02:42.837 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 7/34 2024-09-18T12:02:42.862 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-radosgw-2:17.2.7-1645.g7061ea6c.el9.x86_64 24/26 2024-09-18T12:02:42.870 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 23/34 2024-09-18T12:02:42.870 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 8/34 2024-09-18T12:02:42.905 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 9/34 2024-09-18T12:02:42.920 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 24/34 2024-09-18T12:02:42.932 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-radosgw-2:17.2.7-1645.g7061ea6c.el9.x86_64 24/26 2024-09-18T12:02:42.932 INFO:teuthology.orchestra.run.smithi160.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-18T12:02:42.932 INFO:teuthology.orchestra.run.smithi160.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-09-18T12:02:42.932 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-18T12:02:42.933 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-18T12:02:42.933 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:02:42.934 INFO:teuthology.orchestra.run.smithi160.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 25/26 2024-09-18T12:02:42.938 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 10/34 2024-09-18T12:02:42.978 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 11/34 2024-09-18T12:02:43.000 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 25/34 2024-09-18T12:02:43.013 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 12/34 2024-09-18T12:02:43.023 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 25/26 2024-09-18T12:02:43.023 INFO:teuthology.orchestra.run.smithi160.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 26/26 2024-09-18T12:02:43.048 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 13/34 2024-09-18T12:02:43.087 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 26/34 2024-09-18T12:02:43.105 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 14/34 2024-09-18T12:02:43.121 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 27/34 2024-09-18T12:02:43.156 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-packaging-20.9-5.el9.noarch 15/34 2024-09-18T12:02:43.228 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 16/34 2024-09-18T12:02:43.233 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 28/34 2024-09-18T12:02:43.366 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 17/34 2024-09-18T12:02:43.389 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-mgr-modules-core-2:17.2.7-1645.g7061ea6c.el9. 29/34 2024-09-18T12:02:43.421 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-mgr-2:17.2.7-1645.g7061ea6c.el9.x86_64 30/34 2024-09-18T12:02:43.448 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-mgr-2:17.2.7-1645.g7061ea6c.el9.x86_64 30/34 2024-09-18T12:02:43.448 INFO:teuthology.orchestra.run.smithi076.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-18T12:02:43.448 INFO:teuthology.orchestra.run.smithi076.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-09-18T12:02:43.448 INFO:teuthology.orchestra.run.smithi076.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-18T12:02:43.449 INFO:teuthology.orchestra.run.smithi076.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-18T12:02:43.449 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:02:43.453 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 18/34 2024-09-18T12:02:43.506 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-urllib3-1.26.5-6.el9.noarch 19/34 2024-09-18T12:02:43.545 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 20/34 2024-09-18T12:02:43.602 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-ply-3.11-14.el9.noarch 21/34 2024-09-18T12:02:43.657 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 22/34 2024-09-18T12:02:43.844 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 23/34 2024-09-18T12:02:43.915 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 24/34 2024-09-18T12:02:43.986 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 25/34 2024-09-18T12:02:44.074 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 26/34 2024-09-18T12:02:44.122 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 27/34 2024-09-18T12:02:44.240 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 28/34 2024-09-18T12:02:44.285 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 26/26 2024-09-18T12:02:44.286 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-base-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/26 2024-09-18T12:02:44.286 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-common-2:17.2.7-1645.g7061ea6c.el9.x86_64 2/26 2024-09-18T12:02:44.286 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-radosgw-2:17.2.7-1645.g7061ea6c.el9.x86_64 3/26 2024-09-18T12:02:44.286 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-selinux-2:17.2.7-1645.g7061ea6c.el9.x86_64 4/26 2024-09-18T12:02:44.286 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : libcephfs2-2:17.2.7-1645.g7061ea6c.el9.x86_64 5/26 2024-09-18T12:02:44.286 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : libradosstriper1-2:17.2.7-1645.g7061ea6c.el9.x86_6 6/26 2024-09-18T12:02:44.286 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : librgw2-2:17.2.7-1645.g7061ea6c.el9.x86_64 7/26 2024-09-18T12:02:44.286 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-ceph-argparse-2:17.2.7-1645.g7061ea6c.el9. 8/26 2024-09-18T12:02:44.286 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-ceph-common-2:17.2.7-1645.g7061ea6c.el9.x8 9/26 2024-09-18T12:02:44.286 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-cephfs-2:17.2.7-1645.g7061ea6c.el9.x86_64 10/26 2024-09-18T12:02:44.287 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-rados-2:17.2.7-1645.g7061ea6c.el9.x86_64 11/26 2024-09-18T12:02:44.287 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-rbd-2:17.2.7-1645.g7061ea6c.el9.x86_64 12/26 2024-09-18T12:02:44.287 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-rgw-2:17.2.7-1645.g7061ea6c.el9.x86_64 13/26 2024-09-18T12:02:44.287 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 14/26 2024-09-18T12:02:44.287 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 15/26 2024-09-18T12:02:44.287 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 16/26 2024-09-18T12:02:44.287 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 17/26 2024-09-18T12:02:44.287 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 18/26 2024-09-18T12:02:44.287 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 19/26 2024-09-18T12:02:44.287 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 20/26 2024-09-18T12:02:44.287 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 21/26 2024-09-18T12:02:44.287 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 22/26 2024-09-18T12:02:44.288 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : librados2-2:17.2.7-1645.g7061ea6c.el9.x86_64 23/26 2024-09-18T12:02:44.288 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 24/26 2024-09-18T12:02:44.288 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : librbd1-2:17.2.7-1645.g7061ea6c.el9.x86_64 25/26 2024-09-18T12:02:44.386 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : ceph-mgr-modules-core-2:17.2.7-1645.g7061ea6c.el9. 29/34 2024-09-18T12:02:44.417 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : ceph-mgr-2:17.2.7-1645.g7061ea6c.el9.x86_64 30/34 2024-09-18T12:02:44.443 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: ceph-mgr-2:17.2.7-1645.g7061ea6c.el9.x86_64 30/34 2024-09-18T12:02:44.443 INFO:teuthology.orchestra.run.smithi169.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-18T12:02:44.443 INFO:teuthology.orchestra.run.smithi169.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-09-18T12:02:44.443 INFO:teuthology.orchestra.run.smithi169.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-18T12:02:44.443 INFO:teuthology.orchestra.run.smithi169.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-18T12:02:44.443 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:02:44.756 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-osd-2:17.2.7-1645.g7061ea6c.el9.x86_64 31/34 2024-09-18T12:02:44.783 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-osd-2:17.2.7-1645.g7061ea6c.el9.x86_64 31/34 2024-09-18T12:02:44.784 INFO:teuthology.orchestra.run.smithi076.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-18T12:02:44.784 INFO:teuthology.orchestra.run.smithi076.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-09-18T12:02:44.784 INFO:teuthology.orchestra.run.smithi076.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-18T12:02:44.784 INFO:teuthology.orchestra.run.smithi076.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-18T12:02:44.784 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:02:45.156 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-mon-2:17.2.7-1645.g7061ea6c.el9.x86_64 32/34 2024-09-18T12:02:45.180 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-mon-2:17.2.7-1645.g7061ea6c.el9.x86_64 32/34 2024-09-18T12:02:45.181 INFO:teuthology.orchestra.run.smithi076.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-18T12:02:45.181 INFO:teuthology.orchestra.run.smithi076.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-09-18T12:02:45.181 INFO:teuthology.orchestra.run.smithi076.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-18T12:02:45.181 INFO:teuthology.orchestra.run.smithi076.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-18T12:02:45.181 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:02:45.204 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 26/26 2024-09-18T12:02:45.205 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:02:45.205 INFO:teuthology.orchestra.run.smithi160.stdout:Upgraded: 2024-09-18T12:02:45.205 INFO:teuthology.orchestra.run.smithi160.stdout: librados2-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:45.205 INFO:teuthology.orchestra.run.smithi160.stdout: librbd1-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:45.205 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-18T12:02:45.205 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-base-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:45.205 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-common-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:45.205 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-radosgw-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:45.205 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-selinux-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:45.205 INFO:teuthology.orchestra.run.smithi160.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2024-09-18T12:02:45.205 INFO:teuthology.orchestra.run.smithi160.stdout: libcephfs2-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:45.205 INFO:teuthology.orchestra.run.smithi160.stdout: liboath-2.6.7-2.el9.x86_64 2024-09-18T12:02:45.206 INFO:teuthology.orchestra.run.smithi160.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-09-18T12:02:45.206 INFO:teuthology.orchestra.run.smithi160.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-09-18T12:02:45.206 INFO:teuthology.orchestra.run.smithi160.stdout: libradosstriper1-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:45.206 INFO:teuthology.orchestra.run.smithi160.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-09-18T12:02:45.206 INFO:teuthology.orchestra.run.smithi160.stdout: librgw2-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:45.206 INFO:teuthology.orchestra.run.smithi160.stdout: libunwind-1.6.2-1.el9.x86_64 2024-09-18T12:02:45.206 INFO:teuthology.orchestra.run.smithi160.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-09-18T12:02:45.206 INFO:teuthology.orchestra.run.smithi160.stdout: python3-ceph-argparse-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:45.206 INFO:teuthology.orchestra.run.smithi160.stdout: python3-ceph-common-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:45.206 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cephfs-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:45.206 INFO:teuthology.orchestra.run.smithi160.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-09-18T12:02:45.206 INFO:teuthology.orchestra.run.smithi160.stdout: python3-rados-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:45.206 INFO:teuthology.orchestra.run.smithi160.stdout: python3-rbd-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:45.207 INFO:teuthology.orchestra.run.smithi160.stdout: python3-rgw-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:45.207 INFO:teuthology.orchestra.run.smithi160.stdout: thrift-0.15.0-2.el9.x86_64 2024-09-18T12:02:45.207 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:02:45.207 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-18T12:02:45.382 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-mds-2:17.2.7-1645.g7061ea6c.el9.x86_64 33/34 2024-09-18T12:02:45.406 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-mds-2:17.2.7-1645.g7061ea6c.el9.x86_64 33/34 2024-09-18T12:02:45.406 INFO:teuthology.orchestra.run.smithi076.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-18T12:02:45.407 INFO:teuthology.orchestra.run.smithi076.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-09-18T12:02:45.407 INFO:teuthology.orchestra.run.smithi076.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-18T12:02:45.407 INFO:teuthology.orchestra.run.smithi076.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-18T12:02:45.407 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:02:45.470 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-2:17.2.7-1645.g7061ea6c.el9.x86_64 34/34 2024-09-18T12:02:45.568 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph-test 2024-09-18T12:02:45.760 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : ceph-osd-2:17.2.7-1645.g7061ea6c.el9.x86_64 31/34 2024-09-18T12:02:45.788 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: ceph-osd-2:17.2.7-1645.g7061ea6c.el9.x86_64 31/34 2024-09-18T12:02:45.788 INFO:teuthology.orchestra.run.smithi169.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-18T12:02:45.788 INFO:teuthology.orchestra.run.smithi169.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-09-18T12:02:45.788 INFO:teuthology.orchestra.run.smithi169.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-18T12:02:45.788 INFO:teuthology.orchestra.run.smithi169.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-18T12:02:45.788 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:02:46.146 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:00:27 ago on Wed 18 Sep 2024 12:02:19 PM UTC. 2024-09-18T12:02:46.153 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : ceph-mon-2:17.2.7-1645.g7061ea6c.el9.x86_64 32/34 2024-09-18T12:02:46.177 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: ceph-mon-2:17.2.7-1645.g7061ea6c.el9.x86_64 32/34 2024-09-18T12:02:46.177 INFO:teuthology.orchestra.run.smithi169.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-18T12:02:46.177 INFO:teuthology.orchestra.run.smithi169.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-09-18T12:02:46.177 INFO:teuthology.orchestra.run.smithi169.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-18T12:02:46.177 INFO:teuthology.orchestra.run.smithi169.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-18T12:02:46.177 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:02:46.285 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-18T12:02:46.286 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:02:46.286 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repository Size 2024-09-18T12:02:46.286 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:02:46.286 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-18T12:02:46.286 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-test x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 48 M 2024-09-18T12:02:46.286 INFO:teuthology.orchestra.run.smithi160.stdout:Installing dependencies: 2024-09-18T12:02:46.286 INFO:teuthology.orchestra.run.smithi160.stdout: libcephsqlite x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 163 k 2024-09-18T12:02:46.286 INFO:teuthology.orchestra.run.smithi160.stdout: socat x86_64 1.7.4.1-6.el9 appstream 304 k 2024-09-18T12:02:46.286 INFO:teuthology.orchestra.run.smithi160.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-09-18T12:02:46.286 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:02:46.287 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-18T12:02:46.287 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:02:46.287 INFO:teuthology.orchestra.run.smithi160.stdout:Install 4 Packages 2024-09-18T12:02:46.287 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:02:46.287 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 48 M 2024-09-18T12:02:46.287 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 193 M 2024-09-18T12:02:46.287 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-18T12:02:46.378 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : ceph-mds-2:17.2.7-1645.g7061ea6c.el9.x86_64 33/34 2024-09-18T12:02:46.402 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: ceph-mds-2:17.2.7-1645.g7061ea6c.el9.x86_64 33/34 2024-09-18T12:02:46.402 INFO:teuthology.orchestra.run.smithi169.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-18T12:02:46.402 INFO:teuthology.orchestra.run.smithi169.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-09-18T12:02:46.402 INFO:teuthology.orchestra.run.smithi169.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-18T12:02:46.403 INFO:teuthology.orchestra.run.smithi169.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-18T12:02:46.403 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:02:46.468 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : ceph-2:17.2.7-1645.g7061ea6c.el9.x86_64 34/34 2024-09-18T12:02:46.819 INFO:teuthology.orchestra.run.smithi160.stdout:(1/4): socat-1.7.4.1-6.el9.x86_64.rpm 2.0 MB/s | 304 kB 00:00 2024-09-18T12:02:46.903 INFO:teuthology.orchestra.run.smithi160.stdout:(2/4): libcephsqlite-17.2.7-1645.g7061ea6c.el9. 690 kB/s | 163 kB 00:00 2024-09-18T12:02:46.928 INFO:teuthology.orchestra.run.smithi160.stdout:(3/4): xmlstarlet-1.6.1-20.el9.x86_64.rpm 587 kB/s | 64 kB 00:00 2024-09-18T12:02:47.142 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-2:17.2.7-1645.g7061ea6c.el9.x86_64 34/34 2024-09-18T12:02:47.142 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/34 2024-09-18T12:02:47.142 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-mds-2:17.2.7-1645.g7061ea6c.el9.x86_64 2/34 2024-09-18T12:02:47.143 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-mgr-2:17.2.7-1645.g7061ea6c.el9.x86_64 3/34 2024-09-18T12:02:47.143 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-mon-2:17.2.7-1645.g7061ea6c.el9.x86_64 4/34 2024-09-18T12:02:47.143 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-osd-2:17.2.7-1645.g7061ea6c.el9.x86_64 5/34 2024-09-18T12:02:47.143 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-mgr-modules-core-2:17.2.7-1645.g7061ea6c.el9. 6/34 2024-09-18T12:02:47.143 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/34 2024-09-18T12:02:47.143 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/34 2024-09-18T12:02:47.143 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/34 2024-09-18T12:02:47.143 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/34 2024-09-18T12:02:47.143 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/34 2024-09-18T12:02:47.143 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-urllib3-1.26.5-6.el9.noarch 12/34 2024-09-18T12:02:47.143 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 13/34 2024-09-18T12:02:47.143 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 14/34 2024-09-18T12:02:47.143 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 15/34 2024-09-18T12:02:47.144 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 16/34 2024-09-18T12:02:47.144 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 17/34 2024-09-18T12:02:47.144 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 18/34 2024-09-18T12:02:47.144 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 19/34 2024-09-18T12:02:47.144 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 20/34 2024-09-18T12:02:47.144 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 21/34 2024-09-18T12:02:47.144 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 22/34 2024-09-18T12:02:47.144 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 23/34 2024-09-18T12:02:47.144 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 24/34 2024-09-18T12:02:47.144 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 25/34 2024-09-18T12:02:47.144 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 26/34 2024-09-18T12:02:47.144 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 27/34 2024-09-18T12:02:47.144 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 28/34 2024-09-18T12:02:47.145 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 29/34 2024-09-18T12:02:47.145 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 30/34 2024-09-18T12:02:47.145 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 31/34 2024-09-18T12:02:47.145 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-webob-1.8.8-2.el9.noarch 32/34 2024-09-18T12:02:47.145 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 33/34 2024-09-18T12:02:48.064 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 34/34 2024-09-18T12:02:48.064 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:02:48.064 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-09-18T12:02:48.064 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:48.064 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-mds-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:48.064 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-mgr-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:48.065 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-mgr-modules-core-2:17.2.7-1645.g7061ea6c.el9.noarch 2024-09-18T12:02:48.065 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-mon-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:48.065 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-osd-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:48.065 INFO:teuthology.orchestra.run.smithi076.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-09-18T12:02:48.065 INFO:teuthology.orchestra.run.smithi076.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-09-18T12:02:48.065 INFO:teuthology.orchestra.run.smithi076.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-09-18T12:02:48.065 INFO:teuthology.orchestra.run.smithi076.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-09-18T12:02:48.065 INFO:teuthology.orchestra.run.smithi076.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-09-18T12:02:48.065 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-09-18T12:02:48.065 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-09-18T12:02:48.065 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-09-18T12:02:48.065 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-09-18T12:02:48.065 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-09-18T12:02:48.066 INFO:teuthology.orchestra.run.smithi076.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-09-18T12:02:48.066 INFO:teuthology.orchestra.run.smithi076.stdout: python3-mako-1.1.4-6.el9.noarch 2024-09-18T12:02:48.066 INFO:teuthology.orchestra.run.smithi076.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-09-18T12:02:48.066 INFO:teuthology.orchestra.run.smithi076.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-09-18T12:02:48.066 INFO:teuthology.orchestra.run.smithi076.stdout: python3-packaging-20.9-5.el9.noarch 2024-09-18T12:02:48.066 INFO:teuthology.orchestra.run.smithi076.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-09-18T12:02:48.066 INFO:teuthology.orchestra.run.smithi076.stdout: python3-ply-3.11-14.el9.noarch 2024-09-18T12:02:48.066 INFO:teuthology.orchestra.run.smithi076.stdout: python3-portend-3.1.0-2.el9.noarch 2024-09-18T12:02:48.066 INFO:teuthology.orchestra.run.smithi076.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-09-18T12:02:48.066 INFO:teuthology.orchestra.run.smithi076.stdout: python3-pycparser-2.20-6.el9.noarch 2024-09-18T12:02:48.066 INFO:teuthology.orchestra.run.smithi076.stdout: python3-pytz-2021.1-5.el9.noarch 2024-09-18T12:02:48.066 INFO:teuthology.orchestra.run.smithi076.stdout: python3-requests-2.25.1-8.el9.noarch 2024-09-18T12:02:48.066 INFO:teuthology.orchestra.run.smithi076.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-09-18T12:02:48.067 INFO:teuthology.orchestra.run.smithi076.stdout: python3-toml-0.10.2-6.el9.noarch 2024-09-18T12:02:48.067 INFO:teuthology.orchestra.run.smithi076.stdout: python3-urllib3-1.26.5-6.el9.noarch 2024-09-18T12:02:48.067 INFO:teuthology.orchestra.run.smithi076.stdout: python3-webob-1.8.8-2.el9.noarch 2024-09-18T12:02:48.067 INFO:teuthology.orchestra.run.smithi076.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-09-18T12:02:48.067 INFO:teuthology.orchestra.run.smithi076.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-09-18T12:02:48.067 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:02:48.067 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-09-18T12:02:48.102 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: ceph-2:17.2.7-1645.g7061ea6c.el9.x86_64 34/34 2024-09-18T12:02:48.102 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : ceph-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/34 2024-09-18T12:02:48.102 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : ceph-mds-2:17.2.7-1645.g7061ea6c.el9.x86_64 2/34 2024-09-18T12:02:48.103 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : ceph-mgr-2:17.2.7-1645.g7061ea6c.el9.x86_64 3/34 2024-09-18T12:02:48.103 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : ceph-mon-2:17.2.7-1645.g7061ea6c.el9.x86_64 4/34 2024-09-18T12:02:48.103 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : ceph-osd-2:17.2.7-1645.g7061ea6c.el9.x86_64 5/34 2024-09-18T12:02:48.103 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : ceph-mgr-modules-core-2:17.2.7-1645.g7061ea6c.el9. 6/34 2024-09-18T12:02:48.103 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/34 2024-09-18T12:02:48.103 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/34 2024-09-18T12:02:48.103 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/34 2024-09-18T12:02:48.103 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/34 2024-09-18T12:02:48.103 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/34 2024-09-18T12:02:48.103 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-urllib3-1.26.5-6.el9.noarch 12/34 2024-09-18T12:02:48.103 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 13/34 2024-09-18T12:02:48.103 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 14/34 2024-09-18T12:02:48.103 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 15/34 2024-09-18T12:02:48.104 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 16/34 2024-09-18T12:02:48.104 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 17/34 2024-09-18T12:02:48.104 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 18/34 2024-09-18T12:02:48.104 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 19/34 2024-09-18T12:02:48.104 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 20/34 2024-09-18T12:02:48.104 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 21/34 2024-09-18T12:02:48.104 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 22/34 2024-09-18T12:02:48.104 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 23/34 2024-09-18T12:02:48.104 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 24/34 2024-09-18T12:02:48.104 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 25/34 2024-09-18T12:02:48.104 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 26/34 2024-09-18T12:02:48.104 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 27/34 2024-09-18T12:02:48.104 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 28/34 2024-09-18T12:02:48.105 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 29/34 2024-09-18T12:02:48.105 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 30/34 2024-09-18T12:02:48.105 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 31/34 2024-09-18T12:02:48.105 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-webob-1.8.8-2.el9.noarch 32/34 2024-09-18T12:02:48.105 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 33/34 2024-09-18T12:02:48.137 INFO:teuthology.orchestra.run.smithi160.stdout:(4/4): ceph-test-17.2.7-1645.g7061ea6c.el9.x86_ 33 MB/s | 48 MB 00:01 2024-09-18T12:02:48.139 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:02:48.139 INFO:teuthology.orchestra.run.smithi160.stdout:Total 26 MB/s | 48 MB 00:01 2024-09-18T12:02:48.168 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-18T12:02:48.188 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-18T12:02:48.188 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-18T12:02:48.480 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install ceph-base 2024-09-18T12:02:48.556 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-18T12:02:48.556 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-18T12:02:49.063 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:00:49 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:02:49.078 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-18T12:02:49.151 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/4 2024-09-18T12:02:49.153 INFO:teuthology.orchestra.run.smithi076.stdout:Package ceph-base-2:17.2.7-1645.g7061ea6c.el9.x86_64 is already installed. 2024-09-18T12:02:49.172 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 34/34 2024-09-18T12:02:49.172 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:02:49.172 INFO:teuthology.orchestra.run.smithi169.stdout:Installed: 2024-09-18T12:02:49.173 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:49.173 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-mds-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:49.173 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-mgr-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:49.173 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-mgr-modules-core-2:17.2.7-1645.g7061ea6c.el9.noarch 2024-09-18T12:02:49.173 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-mon-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:49.173 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-osd-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:49.173 INFO:teuthology.orchestra.run.smithi169.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-09-18T12:02:49.173 INFO:teuthology.orchestra.run.smithi169.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-09-18T12:02:49.173 INFO:teuthology.orchestra.run.smithi169.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-09-18T12:02:49.174 INFO:teuthology.orchestra.run.smithi169.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-09-18T12:02:49.174 INFO:teuthology.orchestra.run.smithi169.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-09-18T12:02:49.174 INFO:teuthology.orchestra.run.smithi169.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-09-18T12:02:49.174 INFO:teuthology.orchestra.run.smithi169.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-09-18T12:02:49.174 INFO:teuthology.orchestra.run.smithi169.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-09-18T12:02:49.174 INFO:teuthology.orchestra.run.smithi169.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-09-18T12:02:49.174 INFO:teuthology.orchestra.run.smithi169.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-09-18T12:02:49.174 INFO:teuthology.orchestra.run.smithi169.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-09-18T12:02:49.175 INFO:teuthology.orchestra.run.smithi169.stdout: python3-mako-1.1.4-6.el9.noarch 2024-09-18T12:02:49.175 INFO:teuthology.orchestra.run.smithi169.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-09-18T12:02:49.175 INFO:teuthology.orchestra.run.smithi169.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-09-18T12:02:49.175 INFO:teuthology.orchestra.run.smithi169.stdout: python3-packaging-20.9-5.el9.noarch 2024-09-18T12:02:49.175 INFO:teuthology.orchestra.run.smithi169.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-09-18T12:02:49.175 INFO:teuthology.orchestra.run.smithi169.stdout: python3-ply-3.11-14.el9.noarch 2024-09-18T12:02:49.175 INFO:teuthology.orchestra.run.smithi169.stdout: python3-portend-3.1.0-2.el9.noarch 2024-09-18T12:02:49.175 INFO:teuthology.orchestra.run.smithi169.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-09-18T12:02:49.175 INFO:teuthology.orchestra.run.smithi169.stdout: python3-pycparser-2.20-6.el9.noarch 2024-09-18T12:02:49.175 INFO:teuthology.orchestra.run.smithi169.stdout: python3-pytz-2021.1-5.el9.noarch 2024-09-18T12:02:49.175 INFO:teuthology.orchestra.run.smithi169.stdout: python3-requests-2.25.1-8.el9.noarch 2024-09-18T12:02:49.175 INFO:teuthology.orchestra.run.smithi169.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-09-18T12:02:49.175 INFO:teuthology.orchestra.run.smithi169.stdout: python3-toml-0.10.2-6.el9.noarch 2024-09-18T12:02:49.176 INFO:teuthology.orchestra.run.smithi169.stdout: python3-urllib3-1.26.5-6.el9.noarch 2024-09-18T12:02:49.176 INFO:teuthology.orchestra.run.smithi169.stdout: python3-webob-1.8.8-2.el9.noarch 2024-09-18T12:02:49.176 INFO:teuthology.orchestra.run.smithi169.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-09-18T12:02:49.176 INFO:teuthology.orchestra.run.smithi169.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-09-18T12:02:49.176 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:02:49.176 INFO:teuthology.orchestra.run.smithi169.stdout:Complete! 2024-09-18T12:02:49.195 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-09-18T12:02:49.196 INFO:teuthology.orchestra.run.smithi076.stdout:Nothing to do. 2024-09-18T12:02:49.196 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-09-18T12:02:49.202 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : socat-1.7.4.1-6.el9.x86_64 2/4 2024-09-18T12:02:49.230 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : libcephsqlite-2:17.2.7-1645.g7061ea6c.el9.x86_64 3/4 2024-09-18T12:02:49.276 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install cephadm 2024-09-18T12:02:49.553 DEBUG:teuthology.orchestra.run.smithi169:> sudo yum -y install ceph-base 2024-09-18T12:02:49.845 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:00:49 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:02:49.973 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-09-18T12:02:49.974 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:02:49.974 INFO:teuthology.orchestra.run.smithi076.stdout: Package Arch Version Repository Size 2024-09-18T12:02:49.974 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:02:49.974 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-09-18T12:02:49.974 INFO:teuthology.orchestra.run.smithi076.stdout: cephadm noarch 2:17.2.7-1645.g7061ea6c.el9 ceph-noarch 83 k 2024-09-18T12:02:49.974 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:02:49.974 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-09-18T12:02:49.974 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:02:49.975 INFO:teuthology.orchestra.run.smithi076.stdout:Install 1 Package 2024-09-18T12:02:49.975 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:02:49.975 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 83 k 2024-09-18T12:02:49.975 INFO:teuthology.orchestra.run.smithi076.stdout:Installed size: 375 k 2024-09-18T12:02:49.975 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-09-18T12:02:50.139 INFO:teuthology.orchestra.run.smithi169.stdout:Last metadata expiration check: 0:00:50 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:02:50.169 INFO:teuthology.orchestra.run.smithi076.stdout:cephadm-17.2.7-1645.g7061ea6c.el9.noarch.rpm 427 kB/s | 83 kB 00:00 2024-09-18T12:02:50.169 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:02:50.170 INFO:teuthology.orchestra.run.smithi076.stdout:Total 423 kB/s | 83 kB 00:00 2024-09-18T12:02:50.170 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-09-18T12:02:50.175 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-09-18T12:02:50.175 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-09-18T12:02:50.177 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-09-18T12:02:50.177 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-09-18T12:02:50.226 INFO:teuthology.orchestra.run.smithi169.stdout:Package ceph-base-2:17.2.7-1645.g7061ea6c.el9.x86_64 is already installed. 2024-09-18T12:02:50.246 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-09-18T12:02:50.269 INFO:teuthology.orchestra.run.smithi169.stdout:Dependencies resolved. 2024-09-18T12:02:50.270 INFO:teuthology.orchestra.run.smithi169.stdout:Nothing to do. 2024-09-18T12:02:50.270 INFO:teuthology.orchestra.run.smithi169.stdout:Complete! 2024-09-18T12:02:50.340 DEBUG:teuthology.orchestra.run.smithi169:> sudo yum -y install cephadm 2024-09-18T12:02:50.677 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: cephadm-2:17.2.7-1645.g7061ea6c.el9.noarch 1/1 2024-09-18T12:02:50.780 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : cephadm-2:17.2.7-1645.g7061ea6c.el9.noarch 1/1 2024-09-18T12:02:50.914 INFO:teuthology.orchestra.run.smithi169.stdout:Last metadata expiration check: 0:00:50 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:02:51.043 INFO:teuthology.orchestra.run.smithi169.stdout:Dependencies resolved. 2024-09-18T12:02:51.044 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:02:51.044 INFO:teuthology.orchestra.run.smithi169.stdout: Package Arch Version Repository Size 2024-09-18T12:02:51.044 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:02:51.044 INFO:teuthology.orchestra.run.smithi169.stdout:Installing: 2024-09-18T12:02:51.044 INFO:teuthology.orchestra.run.smithi169.stdout: cephadm noarch 2:17.2.7-1645.g7061ea6c.el9 ceph-noarch 83 k 2024-09-18T12:02:51.045 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:02:51.045 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction Summary 2024-09-18T12:02:51.045 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:02:51.045 INFO:teuthology.orchestra.run.smithi169.stdout:Install 1 Package 2024-09-18T12:02:51.045 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:02:51.045 INFO:teuthology.orchestra.run.smithi169.stdout:Total download size: 83 k 2024-09-18T12:02:51.045 INFO:teuthology.orchestra.run.smithi169.stdout:Installed size: 375 k 2024-09-18T12:02:51.045 INFO:teuthology.orchestra.run.smithi169.stdout:Downloading Packages: 2024-09-18T12:02:51.149 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: cephadm-2:17.2.7-1645.g7061ea6c.el9.noarch 1/1 2024-09-18T12:02:51.237 INFO:teuthology.orchestra.run.smithi169.stdout:cephadm-17.2.7-1645.g7061ea6c.el9.noarch.rpm 431 kB/s | 83 kB 00:00 2024-09-18T12:02:51.238 INFO:teuthology.orchestra.run.smithi169.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:02:51.238 INFO:teuthology.orchestra.run.smithi169.stdout:Total 428 kB/s | 83 kB 00:00 2024-09-18T12:02:51.238 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction check 2024-09-18T12:02:51.243 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction check succeeded. 2024-09-18T12:02:51.243 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction test 2024-09-18T12:02:51.245 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction test succeeded. 2024-09-18T12:02:51.245 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction 2024-09-18T12:02:51.321 INFO:teuthology.orchestra.run.smithi169.stdout: Preparing : 1/1 2024-09-18T12:02:51.382 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : cephadm-2:17.2.7-1645.g7061ea6c.el9.noarch 1/1 2024-09-18T12:02:51.383 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:02:51.383 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-09-18T12:02:51.383 INFO:teuthology.orchestra.run.smithi076.stdout: cephadm-2:17.2.7-1645.g7061ea6c.el9.noarch 2024-09-18T12:02:51.383 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:02:51.383 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-09-18T12:02:51.606 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install ceph-immutable-object-cache 2024-09-18T12:02:51.778 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: cephadm-2:17.2.7-1645.g7061ea6c.el9.noarch 1/1 2024-09-18T12:02:51.866 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : cephadm-2:17.2.7-1645.g7061ea6c.el9.noarch 1/1 2024-09-18T12:02:52.196 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:00:52 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:02:52.211 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: cephadm-2:17.2.7-1645.g7061ea6c.el9.noarch 1/1 2024-09-18T12:02:52.330 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-09-18T12:02:52.331 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:02:52.331 INFO:teuthology.orchestra.run.smithi076.stdout: Package Arch Version Repo Size 2024-09-18T12:02:52.331 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:02:52.331 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-09-18T12:02:52.331 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-immutable-object-cache x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 137 k 2024-09-18T12:02:52.331 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:02:52.331 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-09-18T12:02:52.331 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:02:52.331 INFO:teuthology.orchestra.run.smithi076.stdout:Install 1 Package 2024-09-18T12:02:52.331 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:02:52.331 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 137 k 2024-09-18T12:02:52.332 INFO:teuthology.orchestra.run.smithi076.stdout:Installed size: 379 k 2024-09-18T12:02:52.332 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-09-18T12:02:52.454 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : cephadm-2:17.2.7-1645.g7061ea6c.el9.noarch 1/1 2024-09-18T12:02:52.454 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:02:52.454 INFO:teuthology.orchestra.run.smithi169.stdout:Installed: 2024-09-18T12:02:52.454 INFO:teuthology.orchestra.run.smithi169.stdout: cephadm-2:17.2.7-1645.g7061ea6c.el9.noarch 2024-09-18T12:02:52.454 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:02:52.454 INFO:teuthology.orchestra.run.smithi169.stdout:Complete! 2024-09-18T12:02:52.550 INFO:teuthology.orchestra.run.smithi076.stdout:ceph-immutable-object-cache-17.2.7-1645.g7061ea 629 kB/s | 137 kB 00:00 2024-09-18T12:02:52.551 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:02:52.551 INFO:teuthology.orchestra.run.smithi076.stdout:Total 623 kB/s | 137 kB 00:00 2024-09-18T12:02:52.552 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-09-18T12:02:52.559 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-09-18T12:02:52.559 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-09-18T12:02:52.616 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-09-18T12:02:52.616 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-09-18T12:02:52.675 DEBUG:teuthology.orchestra.run.smithi169:> sudo yum -y install ceph-immutable-object-cache 2024-09-18T12:02:52.761 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-09-18T12:02:52.835 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-immutable-object-cache-2:17.2.7-1645.g7061ea6c. 1/1 2024-09-18T12:02:52.860 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-immutable-object-cache-2:17.2.7-1645.g7061ea6c. 1/1 2024-09-18T12:02:52.860 INFO:teuthology.orchestra.run.smithi076.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-18T12:02:52.860 INFO:teuthology.orchestra.run.smithi076.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-09-18T12:02:52.860 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:02:53.273 INFO:teuthology.orchestra.run.smithi169.stdout:Last metadata expiration check: 0:00:53 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:02:53.408 INFO:teuthology.orchestra.run.smithi169.stdout:Dependencies resolved. 2024-09-18T12:02:53.409 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:02:53.409 INFO:teuthology.orchestra.run.smithi169.stdout: Package Arch Version Repo Size 2024-09-18T12:02:53.409 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:02:53.409 INFO:teuthology.orchestra.run.smithi169.stdout:Installing: 2024-09-18T12:02:53.409 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-immutable-object-cache x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 137 k 2024-09-18T12:02:53.409 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:02:53.409 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction Summary 2024-09-18T12:02:53.410 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:02:53.410 INFO:teuthology.orchestra.run.smithi169.stdout:Install 1 Package 2024-09-18T12:02:53.410 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:02:53.410 INFO:teuthology.orchestra.run.smithi169.stdout:Total download size: 137 k 2024-09-18T12:02:53.410 INFO:teuthology.orchestra.run.smithi169.stdout:Installed size: 379 k 2024-09-18T12:02:53.410 INFO:teuthology.orchestra.run.smithi169.stdout:Downloading Packages: 2024-09-18T12:02:53.627 INFO:teuthology.orchestra.run.smithi169.stdout:ceph-immutable-object-cache-17.2.7-1645.g7061ea 633 kB/s | 137 kB 00:00 2024-09-18T12:02:53.628 INFO:teuthology.orchestra.run.smithi169.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:02:53.628 INFO:teuthology.orchestra.run.smithi169.stdout:Total 628 kB/s | 137 kB 00:00 2024-09-18T12:02:53.628 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction check 2024-09-18T12:02:53.636 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction check succeeded. 2024-09-18T12:02:53.636 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction test 2024-09-18T12:02:53.693 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction test succeeded. 2024-09-18T12:02:53.693 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: libcephsqlite-2:17.2.7-1645.g7061ea6c.el9.x86_64 3/4 2024-09-18T12:02:53.693 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction 2024-09-18T12:02:53.760 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-test-2:17.2.7-1645.g7061ea6c.el9.x86_64 4/4 2024-09-18T12:02:53.765 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-immutable-object-cache-2:17.2.7-1645.g7061ea6c. 1/1 2024-09-18T12:02:53.765 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:02:53.765 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-09-18T12:02:53.765 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-immutable-object-cache-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:53.766 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:02:53.766 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-09-18T12:02:53.843 INFO:teuthology.orchestra.run.smithi169.stdout: Preparing : 1/1 2024-09-18T12:02:53.911 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : ceph-immutable-object-cache-2:17.2.7-1645.g7061ea6c. 1/1 2024-09-18T12:02:53.936 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: ceph-immutable-object-cache-2:17.2.7-1645.g7061ea6c. 1/1 2024-09-18T12:02:53.936 INFO:teuthology.orchestra.run.smithi169.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-18T12:02:53.936 INFO:teuthology.orchestra.run.smithi169.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-09-18T12:02:53.937 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:02:54.004 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install ceph-mgr 2024-09-18T12:02:54.600 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:00:54 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:02:54.687 INFO:teuthology.orchestra.run.smithi076.stdout:Package ceph-mgr-2:17.2.7-1645.g7061ea6c.el9.x86_64 is already installed. 2024-09-18T12:02:54.730 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-09-18T12:02:54.731 INFO:teuthology.orchestra.run.smithi076.stdout:Nothing to do. 2024-09-18T12:02:54.731 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-09-18T12:02:54.814 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install ceph-mgr-dashboard 2024-09-18T12:02:54.846 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : ceph-immutable-object-cache-2:17.2.7-1645.g7061ea6c. 1/1 2024-09-18T12:02:54.846 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:02:54.846 INFO:teuthology.orchestra.run.smithi169.stdout:Installed: 2024-09-18T12:02:54.846 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-immutable-object-cache-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:54.846 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:02:54.846 INFO:teuthology.orchestra.run.smithi169.stdout:Complete! 2024-09-18T12:02:55.065 DEBUG:teuthology.orchestra.run.smithi169:> sudo yum -y install ceph-mgr 2024-09-18T12:02:55.401 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:00:55 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:02:55.534 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-09-18T12:02:55.535 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:02:55.535 INFO:teuthology.orchestra.run.smithi076.stdout: Package Arch Version Repository Size 2024-09-18T12:02:55.535 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:02:55.535 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-09-18T12:02:55.535 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-mgr-dashboard noarch 2:17.2.7-1645.g7061ea6c.el9 ceph-noarch 3.4 M 2024-09-18T12:02:55.535 INFO:teuthology.orchestra.run.smithi076.stdout:Installing dependencies: 2024-09-18T12:02:55.535 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-grafana-dashboards noarch 2:17.2.7-1645.g7061ea6c.el9 ceph-noarch 24 k 2024-09-18T12:02:55.535 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-prometheus-alerts noarch 2:17.2.7-1645.g7061ea6c.el9 ceph-noarch 15 k 2024-09-18T12:02:55.536 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jwt noarch 2.4.0-1.el9 epel 41 k 2024-09-18T12:02:55.536 INFO:teuthology.orchestra.run.smithi076.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-09-18T12:02:55.536 INFO:teuthology.orchestra.run.smithi076.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-09-18T12:02:55.536 INFO:teuthology.orchestra.run.smithi076.stdout:Installing weak dependencies: 2024-09-18T12:02:55.536 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jwt+crypto noarch 2.4.0-1.el9 epel 9.0 k 2024-09-18T12:02:55.536 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:02:55.536 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-09-18T12:02:55.536 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:02:55.536 INFO:teuthology.orchestra.run.smithi076.stdout:Install 7 Packages 2024-09-18T12:02:55.536 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:02:55.537 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 3.7 M 2024-09-18T12:02:55.537 INFO:teuthology.orchestra.run.smithi076.stdout:Installed size: 80 M 2024-09-18T12:02:55.537 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-09-18T12:02:55.652 INFO:teuthology.orchestra.run.smithi169.stdout:Last metadata expiration check: 0:00:55 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:02:55.745 INFO:teuthology.orchestra.run.smithi169.stdout:Package ceph-mgr-2:17.2.7-1645.g7061ea6c.el9.x86_64 is already installed. 2024-09-18T12:02:55.787 INFO:teuthology.orchestra.run.smithi169.stdout:Dependencies resolved. 2024-09-18T12:02:55.789 INFO:teuthology.orchestra.run.smithi169.stdout:Nothing to do. 2024-09-18T12:02:55.789 INFO:teuthology.orchestra.run.smithi169.stdout:Complete! 2024-09-18T12:02:55.864 DEBUG:teuthology.orchestra.run.smithi169:> sudo yum -y install ceph-mgr-dashboard 2024-09-18T12:02:55.879 INFO:teuthology.orchestra.run.smithi076.stdout:(1/7): ceph-grafana-dashboards-17.2.7-1645.g706 164 kB/s | 24 kB 00:00 2024-09-18T12:02:55.899 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-test-2:17.2.7-1645.g7061ea6c.el9.x86_64 4/4 2024-09-18T12:02:55.899 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-test-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/4 2024-09-18T12:02:55.899 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : libcephsqlite-2:17.2.7-1645.g7061ea6c.el9.x86_64 2/4 2024-09-18T12:02:55.899 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : socat-1.7.4.1-6.el9.x86_64 3/4 2024-09-18T12:02:55.904 INFO:teuthology.orchestra.run.smithi076.stdout:(2/7): ceph-prometheus-alerts-17.2.7-1645.g7061 84 kB/s | 15 kB 00:00 2024-09-18T12:02:55.946 INFO:teuthology.orchestra.run.smithi076.stdout:(3/7): python3-jwt+crypto-2.4.0-1.el9.noarch.rp 135 kB/s | 9.0 kB 00:00 2024-09-18T12:02:55.971 INFO:teuthology.orchestra.run.smithi076.stdout:(4/7): python3-repoze-lru-0.7-16.el9.noarch.rpm 1.3 MB/s | 31 kB 00:00 2024-09-18T12:02:55.997 INFO:teuthology.orchestra.run.smithi076.stdout:(5/7): python3-jwt-2.4.0-1.el9.noarch.rpm 443 kB/s | 41 kB 00:00 2024-09-18T12:02:56.030 INFO:teuthology.orchestra.run.smithi076.stdout:(6/7): python3-routes-2.5.1-5.el9.noarch.rpm 3.2 MB/s | 188 kB 00:00 2024-09-18T12:02:56.131 INFO:teuthology.orchestra.run.smithi076.stdout:(7/7): ceph-mgr-dashboard-17.2.7-1645.g7061ea6c 8.4 MB/s | 3.4 MB 00:00 2024-09-18T12:02:56.134 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:02:56.134 INFO:teuthology.orchestra.run.smithi076.stdout:Total 6.1 MB/s | 3.7 MB 00:00 2024-09-18T12:02:56.134 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-09-18T12:02:56.142 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-09-18T12:02:56.142 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-09-18T12:02:56.215 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 4/4 2024-09-18T12:02:56.215 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:02:56.215 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-18T12:02:56.216 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-test-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:56.216 INFO:teuthology.orchestra.run.smithi160.stdout: libcephsqlite-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:02:56.216 INFO:teuthology.orchestra.run.smithi160.stdout: socat-1.7.4.1-6.el9.x86_64 2024-09-18T12:02:56.216 INFO:teuthology.orchestra.run.smithi160.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-09-18T12:02:56.216 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:02:56.216 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-18T12:02:56.223 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-09-18T12:02:56.223 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-09-18T12:02:56.439 INFO:teuthology.orchestra.run.smithi169.stdout:Last metadata expiration check: 0:00:56 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:02:56.503 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph 2024-09-18T12:02:56.526 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-09-18T12:02:56.571 INFO:teuthology.orchestra.run.smithi169.stdout:Dependencies resolved. 2024-09-18T12:02:56.572 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:02:56.572 INFO:teuthology.orchestra.run.smithi169.stdout: Package Arch Version Repository Size 2024-09-18T12:02:56.572 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:02:56.572 INFO:teuthology.orchestra.run.smithi169.stdout:Installing: 2024-09-18T12:02:56.572 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-mgr-dashboard noarch 2:17.2.7-1645.g7061ea6c.el9 ceph-noarch 3.4 M 2024-09-18T12:02:56.573 INFO:teuthology.orchestra.run.smithi169.stdout:Installing dependencies: 2024-09-18T12:02:56.573 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-grafana-dashboards noarch 2:17.2.7-1645.g7061ea6c.el9 ceph-noarch 24 k 2024-09-18T12:02:56.573 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-prometheus-alerts noarch 2:17.2.7-1645.g7061ea6c.el9 ceph-noarch 15 k 2024-09-18T12:02:56.573 INFO:teuthology.orchestra.run.smithi169.stdout: python3-jwt noarch 2.4.0-1.el9 epel 41 k 2024-09-18T12:02:56.573 INFO:teuthology.orchestra.run.smithi169.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-09-18T12:02:56.573 INFO:teuthology.orchestra.run.smithi169.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-09-18T12:02:56.574 INFO:teuthology.orchestra.run.smithi169.stdout:Installing weak dependencies: 2024-09-18T12:02:56.574 INFO:teuthology.orchestra.run.smithi169.stdout: python3-jwt+crypto noarch 2.4.0-1.el9 epel 9.0 k 2024-09-18T12:02:56.574 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:02:56.574 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction Summary 2024-09-18T12:02:56.574 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:02:56.574 INFO:teuthology.orchestra.run.smithi169.stdout:Install 7 Packages 2024-09-18T12:02:56.574 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:02:56.575 INFO:teuthology.orchestra.run.smithi169.stdout:Total download size: 3.7 M 2024-09-18T12:02:56.575 INFO:teuthology.orchestra.run.smithi169.stdout:Installed size: 80 M 2024-09-18T12:02:56.575 INFO:teuthology.orchestra.run.smithi169.stdout:Downloading Packages: 2024-09-18T12:02:56.582 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-jwt-2.4.0-1.el9.noarch 1/7 2024-09-18T12:02:56.615 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-jwt+crypto-2.4.0-1.el9.noarch 2/7 2024-09-18T12:02:56.671 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/7 2024-09-18T12:02:56.703 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/7 2024-09-18T12:02:56.732 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-prometheus-alerts-2:17.2.7-1645.g7061ea6c.el9.n 5/7 2024-09-18T12:02:56.773 INFO:teuthology.orchestra.run.smithi169.stdout:(1/7): ceph-grafana-dashboards-17.2.7-1645.g706 154 kB/s | 24 kB 00:00 2024-09-18T12:02:56.798 INFO:teuthology.orchestra.run.smithi169.stdout:(2/7): ceph-prometheus-alerts-17.2.7-1645.g7061 80 kB/s | 15 kB 00:00 2024-09-18T12:02:56.840 INFO:teuthology.orchestra.run.smithi169.stdout:(3/7): python3-jwt+crypto-2.4.0-1.el9.noarch.rp 136 kB/s | 9.0 kB 00:00 2024-09-18T12:02:56.865 INFO:teuthology.orchestra.run.smithi169.stdout:(4/7): python3-repoze-lru-0.7-16.el9.noarch.rpm 1.3 MB/s | 31 kB 00:00 2024-09-18T12:02:56.891 INFO:teuthology.orchestra.run.smithi169.stdout:(5/7): python3-jwt-2.4.0-1.el9.noarch.rpm 444 kB/s | 41 kB 00:00 2024-09-18T12:02:56.924 INFO:teuthology.orchestra.run.smithi169.stdout:(6/7): python3-routes-2.5.1-5.el9.noarch.rpm 3.2 MB/s | 188 kB 00:00 2024-09-18T12:02:57.024 INFO:teuthology.orchestra.run.smithi169.stdout:(7/7): ceph-mgr-dashboard-17.2.7-1645.g7061ea6c 8.2 MB/s | 3.4 MB 00:00 2024-09-18T12:02:57.027 INFO:teuthology.orchestra.run.smithi169.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:02:57.028 INFO:teuthology.orchestra.run.smithi169.stdout:Total 8.0 MB/s | 3.7 MB 00:00 2024-09-18T12:02:57.028 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction check 2024-09-18T12:02:57.036 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction check succeeded. 2024-09-18T12:02:57.036 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction test 2024-09-18T12:02:57.095 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:00:38 ago on Wed 18 Sep 2024 12:02:19 PM UTC. 2024-09-18T12:02:57.114 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction test succeeded. 2024-09-18T12:02:57.114 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction 2024-09-18T12:02:57.237 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-18T12:02:57.239 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:02:57.239 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repository Size 2024-09-18T12:02:57.239 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:02:57.239 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-18T12:02:57.239 INFO:teuthology.orchestra.run.smithi160.stdout: ceph x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 6.5 k 2024-09-18T12:02:57.239 INFO:teuthology.orchestra.run.smithi160.stdout:Installing dependencies: 2024-09-18T12:02:57.239 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mds x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 2.1 M 2024-09-18T12:02:57.240 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 1.4 M 2024-09-18T12:02:57.240 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr-modules-core noarch 2:17.2.7-1645.g7061ea6c.el9 ceph-noarch 240 k 2024-09-18T12:02:57.240 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mon x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 3.9 M 2024-09-18T12:02:57.240 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-osd x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 15 M 2024-09-18T12:02:57.240 INFO:teuthology.orchestra.run.smithi160.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-09-18T12:02:57.240 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-09-18T12:02:57.240 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-09-18T12:02:57.240 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-09-18T12:02:57.240 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-09-18T12:02:57.240 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-09-18T12:02:57.240 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-09-18T12:02:57.240 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jaraco-collections 2024-09-18T12:02:57.240 INFO:teuthology.orchestra.run.smithi160.stdout: noarch 3.0.0-8.el9 epel 23 k 2024-09-18T12:02:57.241 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-09-18T12:02:57.241 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-09-18T12:02:57.241 INFO:teuthology.orchestra.run.smithi160.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-09-18T12:02:57.241 INFO:teuthology.orchestra.run.smithi160.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-09-18T12:02:57.241 INFO:teuthology.orchestra.run.smithi160.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-09-18T12:02:57.241 INFO:teuthology.orchestra.run.smithi160.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-09-18T12:02:57.241 INFO:teuthology.orchestra.run.smithi160.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-09-18T12:02:57.241 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-09-18T12:02:57.241 INFO:teuthology.orchestra.run.smithi160.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-09-18T12:02:57.241 INFO:teuthology.orchestra.run.smithi160.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-09-18T12:02:57.241 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-09-18T12:02:57.241 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-09-18T12:02:57.241 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-09-18T12:02:57.242 INFO:teuthology.orchestra.run.smithi160.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-09-18T12:02:57.242 INFO:teuthology.orchestra.run.smithi160.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-09-18T12:02:57.242 INFO:teuthology.orchestra.run.smithi160.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-09-18T12:02:57.242 INFO:teuthology.orchestra.run.smithi160.stdout: python3-urllib3 noarch 1.26.5-6.el9 baseos 215 k 2024-09-18T12:02:57.242 INFO:teuthology.orchestra.run.smithi160.stdout: python3-webob noarch 1.8.8-2.el9 epel 230 k 2024-09-18T12:02:57.242 INFO:teuthology.orchestra.run.smithi160.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-09-18T12:02:57.242 INFO:teuthology.orchestra.run.smithi160.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-09-18T12:02:57.242 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:02:57.242 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-18T12:02:57.242 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:02:57.242 INFO:teuthology.orchestra.run.smithi160.stdout:Install 34 Packages 2024-09-18T12:02:57.242 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:02:57.243 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 27 M 2024-09-18T12:02:57.243 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 96 M 2024-09-18T12:02:57.243 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-18T12:02:57.416 INFO:teuthology.orchestra.run.smithi169.stdout: Preparing : 1/1 2024-09-18T12:02:57.475 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-jwt-2.4.0-1.el9.noarch 1/7 2024-09-18T12:02:57.510 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-jwt+crypto-2.4.0-1.el9.noarch 2/7 2024-09-18T12:02:57.565 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/7 2024-09-18T12:02:57.596 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/7 2024-09-18T12:02:57.634 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : ceph-prometheus-alerts-2:17.2.7-1645.g7061ea6c.el9.n 5/7 2024-09-18T12:02:57.727 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-grafana-dashboards-2:17.2.7-1645.g7061ea6c.el9. 6/7 2024-09-18T12:02:57.760 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-mgr-dashboard-2:17.2.7-1645.g7061ea6c.el9.noarc 7/7 2024-09-18T12:02:57.787 INFO:teuthology.orchestra.run.smithi160.stdout:(1/34): ceph-17.2.7-1645.g7061ea6c.el9.x86_64.r 58 kB/s | 6.5 kB 00:00 2024-09-18T12:02:57.995 INFO:teuthology.orchestra.run.smithi160.stdout:(2/34): ceph-mds-17.2.7-1645.g7061ea6c.el9.x86_ 6.4 MB/s | 2.1 MB 00:00 2024-09-18T12:02:58.037 INFO:teuthology.orchestra.run.smithi160.stdout:(3/34): ceph-mgr-17.2.7-1645.g7061ea6c.el9.x86_ 3.9 MB/s | 1.4 MB 00:00 2024-09-18T12:02:58.121 INFO:teuthology.orchestra.run.smithi160.stdout:(4/34): ceph-mon-17.2.7-1645.g7061ea6c.el9.x86_ 12 MB/s | 3.9 MB 00:00 2024-09-18T12:02:58.146 INFO:teuthology.orchestra.run.smithi160.stdout:(5/34): ceph-mgr-modules-core-17.2.7-1645.g7061 2.2 MB/s | 240 kB 00:00 2024-09-18T12:02:58.254 INFO:teuthology.orchestra.run.smithi160.stdout:(6/34): python3-cffi-1.14.5-5.el9.x86_64.rpm 1.9 MB/s | 253 kB 00:00 2024-09-18T12:02:58.296 INFO:teuthology.orchestra.run.smithi160.stdout:(7/34): python3-ply-3.11-14.el9.noarch.rpm 2.5 MB/s | 106 kB 00:00 2024-09-18T12:02:58.338 INFO:teuthology.orchestra.run.smithi160.stdout:(8/34): python3-cryptography-36.0.1-4.el9.x86_6 6.4 MB/s | 1.2 MB 00:00 2024-09-18T12:02:58.363 INFO:teuthology.orchestra.run.smithi160.stdout:(9/34): python3-pycparser-2.20-6.el9.noarch.rpm 2.0 MB/s | 135 kB 00:00 2024-09-18T12:02:58.389 INFO:teuthology.orchestra.run.smithi160.stdout:(10/34): python3-requests-2.25.1-8.el9.noarch.r 2.4 MB/s | 125 kB 00:00 2024-09-18T12:02:58.414 INFO:teuthology.orchestra.run.smithi160.stdout:(11/34): python3-urllib3-1.26.5-6.el9.noarch.rp 4.2 MB/s | 215 kB 00:00 2024-09-18T12:02:58.565 INFO:teuthology.orchestra.run.smithi160.stdout:(12/34): ceph-osd-17.2.7-1645.g7061ea6c.el9.x86 27 MB/s | 15 MB 00:00 2024-09-18T12:02:58.627 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : ceph-grafana-dashboards-2:17.2.7-1645.g7061ea6c.el9. 6/7 2024-09-18T12:02:58.649 INFO:teuthology.orchestra.run.smithi160.stdout:(13/34): python3-markupsafe-1.1.1-12.el9.x86_64 148 kB/s | 35 kB 00:00 2024-09-18T12:02:58.670 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : ceph-mgr-dashboard-2:17.2.7-1645.g7061ea6c.el9.noarc 7/7 2024-09-18T12:02:58.681 INFO:teuthology.orchestra.run.smithi160.stdout:(14/34): python3-mako-1.1.4-6.el9.noarch.rpm 589 kB/s | 172 kB 00:00 2024-09-18T12:02:58.707 INFO:teuthology.orchestra.run.smithi160.stdout:(15/34): python3-packaging-20.9-5.el9.noarch.rp 543 kB/s | 77 kB 00:00 2024-09-18T12:02:58.732 INFO:teuthology.orchestra.run.smithi160.stdout:(16/34): python3-pytz-2021.1-5.el9.noarch.rpm 610 kB/s | 51 kB 00:00 2024-09-18T12:02:58.758 INFO:teuthology.orchestra.run.smithi160.stdout:(17/34): python3-toml-0.10.2-6.el9.noarch.rpm 551 kB/s | 42 kB 00:00 2024-09-18T12:02:58.797 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-mgr-dashboard-2:17.2.7-1645.g7061ea6c.el9.noarc 7/7 2024-09-18T12:02:58.797 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-grafana-dashboards-2:17.2.7-1645.g7061ea6c.el9. 1/7 2024-09-18T12:02:58.797 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-mgr-dashboard-2:17.2.7-1645.g7061ea6c.el9.noarc 2/7 2024-09-18T12:02:58.797 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-prometheus-alerts-2:17.2.7-1645.g7061ea6c.el9.n 3/7 2024-09-18T12:02:58.797 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-jwt+crypto-2.4.0-1.el9.noarch 4/7 2024-09-18T12:02:58.797 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-jwt-2.4.0-1.el9.noarch 5/7 2024-09-18T12:02:58.798 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 6/7 2024-09-18T12:02:58.808 INFO:teuthology.orchestra.run.smithi160.stdout:(18/34): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 433 kB/s | 43 kB 00:00 2024-09-18T12:02:58.833 INFO:teuthology.orchestra.run.smithi160.stdout:(19/34): python3-jaraco-8.2.1-3.el9.noarch.rpm 460 kB/s | 11 kB 00:00 2024-09-18T12:02:58.858 INFO:teuthology.orchestra.run.smithi160.stdout:(20/34): python3-cheroot-8.6.0-4.el9.noarch.rpm 1.3 MB/s | 172 kB 00:00 2024-09-18T12:02:58.884 INFO:teuthology.orchestra.run.smithi160.stdout:(21/34): python3-jaraco-classes-3.2.1-5.el9.noa 351 kB/s | 18 kB 00:00 2024-09-18T12:02:58.909 INFO:teuthology.orchestra.run.smithi160.stdout:(22/34): python3-jaraco-collections-3.0.0-8.el9 461 kB/s | 23 kB 00:00 2024-09-18T12:02:58.934 INFO:teuthology.orchestra.run.smithi160.stdout:(23/34): python3-jaraco-functools-3.5.0-2.el9.n 387 kB/s | 19 kB 00:00 2024-09-18T12:02:58.959 INFO:teuthology.orchestra.run.smithi160.stdout:(24/34): python3-jaraco-text-3.2.0-6.el9.noarch 391 kB/s | 20 kB 00:00 2024-09-18T12:02:58.976 INFO:teuthology.orchestra.run.smithi160.stdout:(25/34): python3-logutils-0.3.5-21.el9.noarch.r 1.1 MB/s | 46 kB 00:00 2024-09-18T12:02:59.001 INFO:teuthology.orchestra.run.smithi160.stdout:(26/34): python3-more-itertools-8.12.0-2.el9.no 1.8 MB/s | 79 kB 00:00 2024-09-18T12:02:59.027 INFO:teuthology.orchestra.run.smithi160.stdout:(27/34): python3-cherrypy-18.6.1-2.el9.noarch.r 1.4 MB/s | 358 kB 00:00 2024-09-18T12:02:59.043 INFO:teuthology.orchestra.run.smithi160.stdout:(28/34): python3-portend-3.1.0-2.el9.noarch.rpm 392 kB/s | 16 kB 00:00 2024-09-18T12:02:59.069 INFO:teuthology.orchestra.run.smithi160.stdout:(29/34): python3-pyOpenSSL-21.0.0-1.el9.noarch. 2.1 MB/s | 90 kB 00:00 2024-09-18T12:02:59.072 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 7/7 2024-09-18T12:02:59.072 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:02:59.072 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-09-18T12:02:59.072 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-grafana-dashboards-2:17.2.7-1645.g7061ea6c.el9.noarch 2024-09-18T12:02:59.072 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-mgr-dashboard-2:17.2.7-1645.g7061ea6c.el9.noarch 2024-09-18T12:02:59.072 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-prometheus-alerts-2:17.2.7-1645.g7061ea6c.el9.noarch 2024-09-18T12:02:59.072 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jwt-2.4.0-1.el9.noarch 2024-09-18T12:02:59.073 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jwt+crypto-2.4.0-1.el9.noarch 2024-09-18T12:02:59.073 INFO:teuthology.orchestra.run.smithi076.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-09-18T12:02:59.073 INFO:teuthology.orchestra.run.smithi076.stdout: python3-routes-2.5.1-5.el9.noarch 2024-09-18T12:02:59.073 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:02:59.073 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-09-18T12:02:59.086 INFO:teuthology.orchestra.run.smithi160.stdout:(30/34): python3-tempora-5.0.0-2.el9.noarch.rpm 852 kB/s | 36 kB 00:00 2024-09-18T12:02:59.111 INFO:teuthology.orchestra.run.smithi160.stdout:(31/34): python3-pecan-1.4.2-3.el9.noarch.rpm 2.0 MB/s | 272 kB 00:00 2024-09-18T12:02:59.136 INFO:teuthology.orchestra.run.smithi160.stdout:(32/34): python3-webob-1.8.8-2.el9.noarch.rpm 3.4 MB/s | 230 kB 00:00 2024-09-18T12:02:59.161 INFO:teuthology.orchestra.run.smithi160.stdout:(33/34): python3-zc-lockfile-2.0-10.el9.noarch. 399 kB/s | 20 kB 00:00 2024-09-18T12:02:59.186 INFO:teuthology.orchestra.run.smithi160.stdout:(34/34): python3-werkzeug-2.0.3-3.el9.1.noarch. 4.2 MB/s | 427 kB 00:00 2024-09-18T12:02:59.191 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:02:59.191 INFO:teuthology.orchestra.run.smithi160.stdout:Total 14 MB/s | 27 MB 00:01 2024-09-18T12:02:59.299 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install ceph-mgr-diskprediction-local 2024-09-18T12:02:59.317 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-18T12:02:59.355 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-18T12:02:59.355 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-18T12:02:59.663 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: ceph-mgr-dashboard-2:17.2.7-1645.g7061ea6c.el9.noarc 7/7 2024-09-18T12:02:59.663 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : ceph-grafana-dashboards-2:17.2.7-1645.g7061ea6c.el9. 1/7 2024-09-18T12:02:59.663 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : ceph-mgr-dashboard-2:17.2.7-1645.g7061ea6c.el9.noarc 2/7 2024-09-18T12:02:59.664 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : ceph-prometheus-alerts-2:17.2.7-1645.g7061ea6c.el9.n 3/7 2024-09-18T12:02:59.664 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-jwt+crypto-2.4.0-1.el9.noarch 4/7 2024-09-18T12:02:59.664 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-jwt-2.4.0-1.el9.noarch 5/7 2024-09-18T12:02:59.664 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 6/7 2024-09-18T12:02:59.758 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-18T12:02:59.758 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-18T12:02:59.875 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:00:59 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:02:59.944 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 7/7 2024-09-18T12:02:59.944 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:02:59.945 INFO:teuthology.orchestra.run.smithi169.stdout:Installed: 2024-09-18T12:02:59.945 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-grafana-dashboards-2:17.2.7-1645.g7061ea6c.el9.noarch 2024-09-18T12:02:59.945 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-mgr-dashboard-2:17.2.7-1645.g7061ea6c.el9.noarch 2024-09-18T12:02:59.945 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-prometheus-alerts-2:17.2.7-1645.g7061ea6c.el9.noarch 2024-09-18T12:02:59.945 INFO:teuthology.orchestra.run.smithi169.stdout: python3-jwt-2.4.0-1.el9.noarch 2024-09-18T12:02:59.945 INFO:teuthology.orchestra.run.smithi169.stdout: python3-jwt+crypto-2.4.0-1.el9.noarch 2024-09-18T12:02:59.945 INFO:teuthology.orchestra.run.smithi169.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-09-18T12:02:59.945 INFO:teuthology.orchestra.run.smithi169.stdout: python3-routes-2.5.1-5.el9.noarch 2024-09-18T12:02:59.945 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:02:59.945 INFO:teuthology.orchestra.run.smithi169.stdout:Complete! 2024-09-18T12:03:00.006 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-09-18T12:03:00.007 INFO:teuthology.orchestra.run.smithi076.stdout:======================================================================================= 2024-09-18T12:03:00.007 INFO:teuthology.orchestra.run.smithi076.stdout: Package Arch Version Repository Size 2024-09-18T12:03:00.007 INFO:teuthology.orchestra.run.smithi076.stdout:======================================================================================= 2024-09-18T12:03:00.008 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-09-18T12:03:00.008 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-mgr-diskprediction-local noarch 2:17.2.7-1645.g7061ea6c.el9 ceph-noarch 7.4 M 2024-09-18T12:03:00.008 INFO:teuthology.orchestra.run.smithi076.stdout:Installing dependencies: 2024-09-18T12:03:00.008 INFO:teuthology.orchestra.run.smithi076.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-09-18T12:03:00.008 INFO:teuthology.orchestra.run.smithi076.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-09-18T12:03:00.008 INFO:teuthology.orchestra.run.smithi076.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-09-18T12:03:00.008 INFO:teuthology.orchestra.run.smithi076.stdout: libgfortran x86_64 11.5.0-2.el9 baseos 801 k 2024-09-18T12:03:00.008 INFO:teuthology.orchestra.run.smithi076.stdout: libquadmath x86_64 11.5.0-2.el9 baseos 191 k 2024-09-18T12:03:00.008 INFO:teuthology.orchestra.run.smithi076.stdout: openblas x86_64 0.3.26-2.el9 appstream 38 k 2024-09-18T12:03:00.008 INFO:teuthology.orchestra.run.smithi076.stdout: openblas-openmp x86_64 0.3.26-2.el9 appstream 4.9 M 2024-09-18T12:03:00.008 INFO:teuthology.orchestra.run.smithi076.stdout: python3-devel x86_64 3.9.19-8.el9 appstream 245 k 2024-09-18T12:03:00.008 INFO:teuthology.orchestra.run.smithi076.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-09-18T12:03:00.009 INFO:teuthology.orchestra.run.smithi076.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-09-18T12:03:00.009 INFO:teuthology.orchestra.run.smithi076.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-09-18T12:03:00.009 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:00.009 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-09-18T12:03:00.009 INFO:teuthology.orchestra.run.smithi076.stdout:======================================================================================= 2024-09-18T12:03:00.009 INFO:teuthology.orchestra.run.smithi076.stdout:Install 12 Packages 2024-09-18T12:03:00.009 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:00.009 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 38 M 2024-09-18T12:03:00.010 INFO:teuthology.orchestra.run.smithi076.stdout:Installed size: 212 M 2024-09-18T12:03:00.010 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-09-18T12:03:00.160 DEBUG:teuthology.orchestra.run.smithi169:> sudo yum -y install ceph-mgr-diskprediction-local 2024-09-18T12:03:00.297 INFO:teuthology.orchestra.run.smithi076.stdout:(1/12): libquadmath-11.5.0-2.el9.x86_64.rpm 1.2 MB/s | 191 kB 00:00 2024-09-18T12:03:00.347 INFO:teuthology.orchestra.run.smithi076.stdout:(2/12): libgfortran-11.5.0-2.el9.x86_64.rpm 3.7 MB/s | 801 kB 00:00 2024-09-18T12:03:00.456 INFO:teuthology.orchestra.run.smithi076.stdout:(3/12): flexiblas-3.0.4-8.el9.x86_64.rpm 206 kB/s | 33 kB 00:00 2024-09-18T12:03:00.523 INFO:teuthology.orchestra.run.smithi076.stdout:(4/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 274 kB/s | 18 kB 00:00 2024-09-18T12:03:00.606 INFO:teuthology.orchestra.run.smithi076.stdout:(5/12): ceph-mgr-diskprediction-local-17.2.7-16 16 MB/s | 7.4 MB 00:00 2024-09-18T12:03:00.632 INFO:teuthology.orchestra.run.smithi076.stdout:(6/12): openblas-0.3.26-2.el9.x86_64.rpm 354 kB/s | 38 kB 00:00 2024-09-18T12:03:00.739 INFO:teuthology.orchestra.run.smithi169.stdout:Last metadata expiration check: 0:01:00 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:03:00.782 INFO:teuthology.orchestra.run.smithi076.stdout:(7/12): python3-devel-3.9.19-8.el9.x86_64.rpm 1.6 MB/s | 245 kB 00:00 2024-09-18T12:03:00.872 INFO:teuthology.orchestra.run.smithi169.stdout:Dependencies resolved. 2024-09-18T12:03:00.873 INFO:teuthology.orchestra.run.smithi169.stdout:======================================================================================= 2024-09-18T12:03:00.874 INFO:teuthology.orchestra.run.smithi169.stdout: Package Arch Version Repository Size 2024-09-18T12:03:00.874 INFO:teuthology.orchestra.run.smithi169.stdout:======================================================================================= 2024-09-18T12:03:00.874 INFO:teuthology.orchestra.run.smithi169.stdout:Installing: 2024-09-18T12:03:00.874 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-mgr-diskprediction-local noarch 2:17.2.7-1645.g7061ea6c.el9 ceph-noarch 7.4 M 2024-09-18T12:03:00.874 INFO:teuthology.orchestra.run.smithi169.stdout:Installing dependencies: 2024-09-18T12:03:00.874 INFO:teuthology.orchestra.run.smithi169.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-09-18T12:03:00.874 INFO:teuthology.orchestra.run.smithi169.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-09-18T12:03:00.874 INFO:teuthology.orchestra.run.smithi169.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-09-18T12:03:00.874 INFO:teuthology.orchestra.run.smithi169.stdout: libgfortran x86_64 11.5.0-2.el9 baseos 801 k 2024-09-18T12:03:00.874 INFO:teuthology.orchestra.run.smithi169.stdout: libquadmath x86_64 11.5.0-2.el9 baseos 191 k 2024-09-18T12:03:00.874 INFO:teuthology.orchestra.run.smithi169.stdout: openblas x86_64 0.3.26-2.el9 appstream 38 k 2024-09-18T12:03:00.874 INFO:teuthology.orchestra.run.smithi169.stdout: openblas-openmp x86_64 0.3.26-2.el9 appstream 4.9 M 2024-09-18T12:03:00.874 INFO:teuthology.orchestra.run.smithi169.stdout: python3-devel x86_64 3.9.19-8.el9 appstream 245 k 2024-09-18T12:03:00.875 INFO:teuthology.orchestra.run.smithi169.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-09-18T12:03:00.875 INFO:teuthology.orchestra.run.smithi169.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-09-18T12:03:00.875 INFO:teuthology.orchestra.run.smithi169.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-09-18T12:03:00.875 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:00.875 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction Summary 2024-09-18T12:03:00.875 INFO:teuthology.orchestra.run.smithi169.stdout:======================================================================================= 2024-09-18T12:03:00.875 INFO:teuthology.orchestra.run.smithi169.stdout:Install 12 Packages 2024-09-18T12:03:00.875 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:00.876 INFO:teuthology.orchestra.run.smithi169.stdout:Total download size: 38 M 2024-09-18T12:03:00.876 INFO:teuthology.orchestra.run.smithi169.stdout:Installed size: 212 M 2024-09-18T12:03:00.876 INFO:teuthology.orchestra.run.smithi169.stdout:Downloading Packages: 2024-09-18T12:03:00.957 INFO:teuthology.orchestra.run.smithi076.stdout:(8/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 4.9 MB/s | 3.0 MB 00:00 2024-09-18T12:03:01.065 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-18T12:03:01.074 INFO:teuthology.orchestra.run.smithi076.stdout:(9/12): openblas-openmp-0.3.26-2.el9.x86_64.rpm 11 MB/s | 4.9 MB 00:00 2024-09-18T12:03:01.099 INFO:teuthology.orchestra.run.smithi169.stdout:(1/12): libquadmath-11.5.0-2.el9.x86_64.rpm 1.2 MB/s | 191 kB 00:00 2024-09-18T12:03:01.099 INFO:teuthology.orchestra.run.smithi076.stdout:(10/12): python3-numpy-f2py-1.20.1-5.el9.x86_64 1.7 MB/s | 250 kB 00:00 2024-09-18T12:03:01.124 INFO:teuthology.orchestra.run.smithi169.stdout:(2/12): libgfortran-11.5.0-2.el9.x86_64.rpm 4.4 MB/s | 801 kB 00:00 2024-09-18T12:03:01.131 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/34 2024-09-18T12:03:01.164 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/34 2024-09-18T12:03:01.166 INFO:teuthology.orchestra.run.smithi076.stdout:(11/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 13 MB/s | 5.1 MB 00:00 2024-09-18T12:03:01.182 INFO:teuthology.orchestra.run.smithi169.stdout:(3/12): flexiblas-3.0.4-8.el9.x86_64.rpm 392 kB/s | 33 kB 00:00 2024-09-18T12:03:01.205 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 3/34 2024-09-18T12:03:01.225 INFO:teuthology.orchestra.run.smithi169.stdout:(4/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 437 kB/s | 18 kB 00:00 2024-09-18T12:03:01.275 INFO:teuthology.orchestra.run.smithi169.stdout:(5/12): openblas-0.3.26-2.el9.x86_64.rpm 769 kB/s | 38 kB 00:00 2024-09-18T12:03:01.298 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 4/34 2024-09-18T12:03:01.376 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 5/34 2024-09-18T12:03:01.425 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-webob-1.8.8-2.el9.noarch 6/34 2024-09-18T12:03:01.459 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 7/34 2024-09-18T12:03:01.467 INFO:teuthology.orchestra.run.smithi169.stdout:(6/12): ceph-mgr-diskprediction-local-17.2.7-16 14 MB/s | 7.4 MB 00:00 2024-09-18T12:03:01.489 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 8/34 2024-09-18T12:03:01.508 INFO:teuthology.orchestra.run.smithi076.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 37 MB/s | 16 MB 00:00 2024-09-18T12:03:01.509 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:03:01.510 INFO:teuthology.orchestra.run.smithi076.stdout:Total 25 MB/s | 38 MB 00:01 2024-09-18T12:03:01.523 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 9/34 2024-09-18T12:03:01.533 INFO:teuthology.orchestra.run.smithi169.stdout:(7/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 7.3 MB/s | 3.0 MB 00:00 2024-09-18T12:03:01.560 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 10/34 2024-09-18T12:03:01.600 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 11/34 2024-09-18T12:03:01.655 INFO:teuthology.orchestra.run.smithi169.stdout:(8/12): python3-devel-3.9.19-8.el9.x86_64.rpm 1.4 MB/s | 245 kB 00:00 2024-09-18T12:03:01.655 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 12/34 2024-09-18T12:03:01.669 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 13/34 2024-09-18T12:03:01.693 INFO:teuthology.orchestra.run.smithi169.stdout:(9/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 4.9 MB/s | 250 kB 00:00 2024-09-18T12:03:01.718 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 14/34 2024-09-18T12:03:01.758 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-packaging-20.9-5.el9.noarch 15/34 2024-09-18T12:03:01.827 INFO:teuthology.orchestra.run.smithi169.stdout:(10/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 17 MB/s | 5.1 MB 00:00 2024-09-18T12:03:01.833 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 16/34 2024-09-18T12:03:01.864 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-09-18T12:03:01.890 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-09-18T12:03:01.890 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-09-18T12:03:01.988 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 17/34 2024-09-18T12:03:02.027 INFO:teuthology.orchestra.run.smithi169.stdout:(11/12): openblas-openmp-0.3.26-2.el9.x86_64.rp 6.6 MB/s | 4.9 MB 00:00 2024-09-18T12:03:02.067 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 18/34 2024-09-18T12:03:02.128 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-urllib3-1.26.5-6.el9.noarch 19/34 2024-09-18T12:03:02.166 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 20/34 2024-09-18T12:03:02.223 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-ply-3.11-14.el9.noarch 21/34 2024-09-18T12:03:02.280 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 22/34 2024-09-18T12:03:02.393 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-09-18T12:03:02.393 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-09-18T12:03:02.410 INFO:teuthology.orchestra.run.smithi169.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 23 MB/s | 16 MB 00:00 2024-09-18T12:03:02.411 INFO:teuthology.orchestra.run.smithi169.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:03:02.411 INFO:teuthology.orchestra.run.smithi169.stdout:Total 25 MB/s | 38 MB 00:01 2024-09-18T12:03:02.468 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 23/34 2024-09-18T12:03:02.529 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 24/34 2024-09-18T12:03:02.608 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 25/34 2024-09-18T12:03:02.705 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 26/34 2024-09-18T12:03:02.752 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 27/34 2024-09-18T12:03:02.766 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction check 2024-09-18T12:03:02.793 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction check succeeded. 2024-09-18T12:03:02.793 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction test 2024-09-18T12:03:02.871 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 28/34 2024-09-18T12:03:03.024 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-mgr-modules-core-2:17.2.7-1645.g7061ea6c.el9. 29/34 2024-09-18T12:03:03.054 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-mgr-2:17.2.7-1645.g7061ea6c.el9.x86_64 30/34 2024-09-18T12:03:03.080 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-mgr-2:17.2.7-1645.g7061ea6c.el9.x86_64 30/34 2024-09-18T12:03:03.081 INFO:teuthology.orchestra.run.smithi160.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-18T12:03:03.081 INFO:teuthology.orchestra.run.smithi160.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-09-18T12:03:03.081 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-18T12:03:03.081 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-18T12:03:03.081 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:03.176 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-09-18T12:03:03.255 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-09-18T12:03:03.289 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction test succeeded. 2024-09-18T12:03:03.290 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : libquadmath-11.5.0-2.el9.x86_64 2/12 2024-09-18T12:03:03.290 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction 2024-09-18T12:03:03.392 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : libgfortran-11.5.0-2.el9.x86_64 3/12 2024-09-18T12:03:03.433 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-devel-3.9.19-8.el9.x86_64 4/12 2024-09-18T12:03:03.618 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : openblas-0.3.26-2.el9.x86_64 5/12 2024-09-18T12:03:03.657 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : openblas-openmp-0.3.26-2.el9.x86_64 6/12 2024-09-18T12:03:03.733 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-09-18T12:03:04.080 INFO:teuthology.orchestra.run.smithi169.stdout: Preparing : 1/1 2024-09-18T12:03:04.146 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-09-18T12:03:04.183 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : libquadmath-11.5.0-2.el9.x86_64 2/12 2024-09-18T12:03:04.283 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : libgfortran-11.5.0-2.el9.x86_64 3/12 2024-09-18T12:03:04.318 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-devel-3.9.19-8.el9.x86_64 4/12 2024-09-18T12:03:04.399 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-09-18T12:03:04.405 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-osd-2:17.2.7-1645.g7061ea6c.el9.x86_64 31/34 2024-09-18T12:03:04.433 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-osd-2:17.2.7-1645.g7061ea6c.el9.x86_64 31/34 2024-09-18T12:03:04.433 INFO:teuthology.orchestra.run.smithi160.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-18T12:03:04.433 INFO:teuthology.orchestra.run.smithi160.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-09-18T12:03:04.433 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-18T12:03:04.433 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-18T12:03:04.433 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:04.503 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : openblas-0.3.26-2.el9.x86_64 5/12 2024-09-18T12:03:04.529 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-09-18T12:03:04.541 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : openblas-openmp-0.3.26-2.el9.x86_64 6/12 2024-09-18T12:03:04.618 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-09-18T12:03:04.814 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-mon-2:17.2.7-1645.g7061ea6c.el9.x86_64 32/34 2024-09-18T12:03:04.838 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-mon-2:17.2.7-1645.g7061ea6c.el9.x86_64 32/34 2024-09-18T12:03:04.838 INFO:teuthology.orchestra.run.smithi160.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-18T12:03:04.838 INFO:teuthology.orchestra.run.smithi160.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-09-18T12:03:04.838 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-18T12:03:04.838 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-18T12:03:04.839 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:05.048 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-mds-2:17.2.7-1645.g7061ea6c.el9.x86_64 33/34 2024-09-18T12:03:05.072 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-mds-2:17.2.7-1645.g7061ea6c.el9.x86_64 33/34 2024-09-18T12:03:05.072 INFO:teuthology.orchestra.run.smithi160.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-18T12:03:05.072 INFO:teuthology.orchestra.run.smithi160.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-09-18T12:03:05.072 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-18T12:03:05.072 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-18T12:03:05.072 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:05.135 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-2:17.2.7-1645.g7061ea6c.el9.x86_64 34/34 2024-09-18T12:03:05.280 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-09-18T12:03:05.396 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-09-18T12:03:05.813 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-09-18T12:03:06.660 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-09-18T12:03:06.724 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-2:17.2.7-1645.g7061ea6c.el9.x86_64 34/34 2024-09-18T12:03:06.724 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/34 2024-09-18T12:03:06.724 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-mds-2:17.2.7-1645.g7061ea6c.el9.x86_64 2/34 2024-09-18T12:03:06.725 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-mgr-2:17.2.7-1645.g7061ea6c.el9.x86_64 3/34 2024-09-18T12:03:06.725 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-mon-2:17.2.7-1645.g7061ea6c.el9.x86_64 4/34 2024-09-18T12:03:06.725 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-osd-2:17.2.7-1645.g7061ea6c.el9.x86_64 5/34 2024-09-18T12:03:06.725 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-mgr-modules-core-2:17.2.7-1645.g7061ea6c.el9. 6/34 2024-09-18T12:03:06.725 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/34 2024-09-18T12:03:06.725 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/34 2024-09-18T12:03:06.725 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/34 2024-09-18T12:03:06.726 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/34 2024-09-18T12:03:06.726 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/34 2024-09-18T12:03:06.726 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-urllib3-1.26.5-6.el9.noarch 12/34 2024-09-18T12:03:06.726 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 13/34 2024-09-18T12:03:06.726 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 14/34 2024-09-18T12:03:06.726 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 15/34 2024-09-18T12:03:06.727 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 16/34 2024-09-18T12:03:06.727 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 17/34 2024-09-18T12:03:06.727 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 18/34 2024-09-18T12:03:06.727 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 19/34 2024-09-18T12:03:06.728 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 20/34 2024-09-18T12:03:06.728 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 21/34 2024-09-18T12:03:06.728 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 22/34 2024-09-18T12:03:06.728 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 23/34 2024-09-18T12:03:06.728 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 24/34 2024-09-18T12:03:06.728 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 25/34 2024-09-18T12:03:06.729 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 26/34 2024-09-18T12:03:06.729 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 27/34 2024-09-18T12:03:06.729 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 28/34 2024-09-18T12:03:06.729 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 29/34 2024-09-18T12:03:06.729 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 30/34 2024-09-18T12:03:06.729 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 31/34 2024-09-18T12:03:06.729 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-webob-1.8.8-2.el9.noarch 32/34 2024-09-18T12:03:06.730 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 33/34 2024-09-18T12:03:06.854 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-09-18T12:03:06.881 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-mgr-diskprediction-local-2:17.2.7-1645.g7061e 12/12 2024-09-18T12:03:07.493 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 34/34 2024-09-18T12:03:07.493 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:07.493 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-18T12:03:07.493 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:03:07.493 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mds-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:03:07.493 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:03:07.493 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr-modules-core-2:17.2.7-1645.g7061ea6c.el9.noarch 2024-09-18T12:03:07.493 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mon-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:03:07.493 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-osd-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:03:07.494 INFO:teuthology.orchestra.run.smithi160.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-09-18T12:03:07.494 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-09-18T12:03:07.494 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-09-18T12:03:07.494 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-09-18T12:03:07.494 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-09-18T12:03:07.494 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-09-18T12:03:07.494 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-09-18T12:03:07.494 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-09-18T12:03:07.494 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-09-18T12:03:07.494 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-09-18T12:03:07.494 INFO:teuthology.orchestra.run.smithi160.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-09-18T12:03:07.494 INFO:teuthology.orchestra.run.smithi160.stdout: python3-mako-1.1.4-6.el9.noarch 2024-09-18T12:03:07.495 INFO:teuthology.orchestra.run.smithi160.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-09-18T12:03:07.495 INFO:teuthology.orchestra.run.smithi160.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-09-18T12:03:07.495 INFO:teuthology.orchestra.run.smithi160.stdout: python3-packaging-20.9-5.el9.noarch 2024-09-18T12:03:07.495 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-09-18T12:03:07.495 INFO:teuthology.orchestra.run.smithi160.stdout: python3-ply-3.11-14.el9.noarch 2024-09-18T12:03:07.495 INFO:teuthology.orchestra.run.smithi160.stdout: python3-portend-3.1.0-2.el9.noarch 2024-09-18T12:03:07.495 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-09-18T12:03:07.495 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pycparser-2.20-6.el9.noarch 2024-09-18T12:03:07.495 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pytz-2021.1-5.el9.noarch 2024-09-18T12:03:07.495 INFO:teuthology.orchestra.run.smithi160.stdout: python3-requests-2.25.1-8.el9.noarch 2024-09-18T12:03:07.495 INFO:teuthology.orchestra.run.smithi160.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-09-18T12:03:07.495 INFO:teuthology.orchestra.run.smithi160.stdout: python3-toml-0.10.2-6.el9.noarch 2024-09-18T12:03:07.495 INFO:teuthology.orchestra.run.smithi160.stdout: python3-urllib3-1.26.5-6.el9.noarch 2024-09-18T12:03:07.495 INFO:teuthology.orchestra.run.smithi160.stdout: python3-webob-1.8.8-2.el9.noarch 2024-09-18T12:03:07.496 INFO:teuthology.orchestra.run.smithi160.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-09-18T12:03:07.496 INFO:teuthology.orchestra.run.smithi160.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-09-18T12:03:07.496 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:07.496 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-18T12:03:07.707 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-09-18T12:03:07.732 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : ceph-mgr-diskprediction-local-2:17.2.7-1645.g7061e 12/12 2024-09-18T12:03:07.920 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph-base 2024-09-18T12:03:08.510 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:00:49 ago on Wed 18 Sep 2024 12:02:19 PM UTC. 2024-09-18T12:03:08.600 INFO:teuthology.orchestra.run.smithi160.stdout:Package ceph-base-2:17.2.7-1645.g7061ea6c.el9.x86_64 is already installed. 2024-09-18T12:03:08.641 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-18T12:03:08.642 INFO:teuthology.orchestra.run.smithi160.stdout:Nothing to do. 2024-09-18T12:03:08.643 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-18T12:03:08.705 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install cephadm 2024-09-18T12:03:09.289 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:00:50 ago on Wed 18 Sep 2024 12:02:19 PM UTC. 2024-09-18T12:03:09.419 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-18T12:03:09.420 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:03:09.420 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repository Size 2024-09-18T12:03:09.420 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:03:09.420 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-18T12:03:09.420 INFO:teuthology.orchestra.run.smithi160.stdout: cephadm noarch 2:17.2.7-1645.g7061ea6c.el9 ceph-noarch 83 k 2024-09-18T12:03:09.420 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:09.420 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-18T12:03:09.420 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:03:09.420 INFO:teuthology.orchestra.run.smithi160.stdout:Install 1 Package 2024-09-18T12:03:09.421 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:09.421 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 83 k 2024-09-18T12:03:09.421 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 375 k 2024-09-18T12:03:09.421 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-18T12:03:09.541 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:17.2.7-1645.g7061e 12/12 2024-09-18T12:03:09.541 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-mgr-diskprediction-local-2:17.2.7-1645.g7061e 1/12 2024-09-18T12:03:09.541 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : libgfortran-11.5.0-2.el9.x86_64 2/12 2024-09-18T12:03:09.541 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : libquadmath-11.5.0-2.el9.x86_64 3/12 2024-09-18T12:03:09.542 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-09-18T12:03:09.542 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-09-18T12:03:09.542 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-09-18T12:03:09.542 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : openblas-0.3.26-2.el9.x86_64 7/12 2024-09-18T12:03:09.542 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : openblas-openmp-0.3.26-2.el9.x86_64 8/12 2024-09-18T12:03:09.542 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-devel-3.9.19-8.el9.x86_64 9/12 2024-09-18T12:03:09.542 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-09-18T12:03:09.542 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-09-18T12:03:09.622 INFO:teuthology.orchestra.run.smithi160.stdout:cephadm-17.2.7-1645.g7061ea6c.el9.noarch.rpm 412 kB/s | 83 kB 00:00 2024-09-18T12:03:09.622 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:03:09.622 INFO:teuthology.orchestra.run.smithi160.stdout:Total 409 kB/s | 83 kB 00:00 2024-09-18T12:03:09.622 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-18T12:03:09.627 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-18T12:03:09.628 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-18T12:03:09.629 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-18T12:03:09.630 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-18T12:03:09.703 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-18T12:03:09.997 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-09-18T12:03:09.997 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:09.997 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-09-18T12:03:09.998 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-mgr-diskprediction-local-2:17.2.7-1645.g7061ea6c.el9.noarch 2024-09-18T12:03:09.998 INFO:teuthology.orchestra.run.smithi076.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-09-18T12:03:09.998 INFO:teuthology.orchestra.run.smithi076.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-09-18T12:03:09.998 INFO:teuthology.orchestra.run.smithi076.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-09-18T12:03:09.998 INFO:teuthology.orchestra.run.smithi076.stdout: libgfortran-11.5.0-2.el9.x86_64 2024-09-18T12:03:09.998 INFO:teuthology.orchestra.run.smithi076.stdout: libquadmath-11.5.0-2.el9.x86_64 2024-09-18T12:03:09.998 INFO:teuthology.orchestra.run.smithi076.stdout: openblas-0.3.26-2.el9.x86_64 2024-09-18T12:03:09.998 INFO:teuthology.orchestra.run.smithi076.stdout: openblas-openmp-0.3.26-2.el9.x86_64 2024-09-18T12:03:09.998 INFO:teuthology.orchestra.run.smithi076.stdout: python3-devel-3.9.19-8.el9.x86_64 2024-09-18T12:03:09.998 INFO:teuthology.orchestra.run.smithi076.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-09-18T12:03:09.998 INFO:teuthology.orchestra.run.smithi076.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-09-18T12:03:09.998 INFO:teuthology.orchestra.run.smithi076.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-09-18T12:03:09.999 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:09.999 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-09-18T12:03:10.155 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: cephadm-2:17.2.7-1645.g7061ea6c.el9.noarch 1/1 2024-09-18T12:03:10.241 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : cephadm-2:17.2.7-1645.g7061ea6c.el9.noarch 1/1 2024-09-18T12:03:10.327 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:17.2.7-1645.g7061e 12/12 2024-09-18T12:03:10.327 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : ceph-mgr-diskprediction-local-2:17.2.7-1645.g7061e 1/12 2024-09-18T12:03:10.327 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : libgfortran-11.5.0-2.el9.x86_64 2/12 2024-09-18T12:03:10.327 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : libquadmath-11.5.0-2.el9.x86_64 3/12 2024-09-18T12:03:10.327 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-09-18T12:03:10.327 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-09-18T12:03:10.327 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-09-18T12:03:10.327 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : openblas-0.3.26-2.el9.x86_64 7/12 2024-09-18T12:03:10.327 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : openblas-openmp-0.3.26-2.el9.x86_64 8/12 2024-09-18T12:03:10.327 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-devel-3.9.19-8.el9.x86_64 9/12 2024-09-18T12:03:10.328 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-09-18T12:03:10.328 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-09-18T12:03:10.426 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install ceph-mgr-rook 2024-09-18T12:03:10.583 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: cephadm-2:17.2.7-1645.g7061ea6c.el9.noarch 1/1 2024-09-18T12:03:10.711 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-09-18T12:03:10.711 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:10.711 INFO:teuthology.orchestra.run.smithi169.stdout:Installed: 2024-09-18T12:03:10.711 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-mgr-diskprediction-local-2:17.2.7-1645.g7061ea6c.el9.noarch 2024-09-18T12:03:10.711 INFO:teuthology.orchestra.run.smithi169.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-09-18T12:03:10.711 INFO:teuthology.orchestra.run.smithi169.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-09-18T12:03:10.712 INFO:teuthology.orchestra.run.smithi169.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-09-18T12:03:10.712 INFO:teuthology.orchestra.run.smithi169.stdout: libgfortran-11.5.0-2.el9.x86_64 2024-09-18T12:03:10.712 INFO:teuthology.orchestra.run.smithi169.stdout: libquadmath-11.5.0-2.el9.x86_64 2024-09-18T12:03:10.712 INFO:teuthology.orchestra.run.smithi169.stdout: openblas-0.3.26-2.el9.x86_64 2024-09-18T12:03:10.712 INFO:teuthology.orchestra.run.smithi169.stdout: openblas-openmp-0.3.26-2.el9.x86_64 2024-09-18T12:03:10.712 INFO:teuthology.orchestra.run.smithi169.stdout: python3-devel-3.9.19-8.el9.x86_64 2024-09-18T12:03:10.712 INFO:teuthology.orchestra.run.smithi169.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-09-18T12:03:10.712 INFO:teuthology.orchestra.run.smithi169.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-09-18T12:03:10.712 INFO:teuthology.orchestra.run.smithi169.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-09-18T12:03:10.712 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:10.712 INFO:teuthology.orchestra.run.smithi169.stdout:Complete! 2024-09-18T12:03:10.848 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : cephadm-2:17.2.7-1645.g7061ea6c.el9.noarch 1/1 2024-09-18T12:03:10.849 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:10.849 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-18T12:03:10.849 INFO:teuthology.orchestra.run.smithi160.stdout: cephadm-2:17.2.7-1645.g7061ea6c.el9.noarch 2024-09-18T12:03:10.849 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:10.849 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-18T12:03:11.020 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:11 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:03:11.056 DEBUG:teuthology.orchestra.run.smithi169:> sudo yum -y install ceph-mgr-rook 2024-09-18T12:03:11.075 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph-immutable-object-cache 2024-09-18T12:03:11.157 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-09-18T12:03:11.157 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:03:11.158 INFO:teuthology.orchestra.run.smithi076.stdout: Package Arch Version Repository Size 2024-09-18T12:03:11.158 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:03:11.158 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-09-18T12:03:11.158 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-mgr-rook noarch 2:17.2.7-1645.g7061ea6c.el9 ceph-noarch 47 k 2024-09-18T12:03:11.158 INFO:teuthology.orchestra.run.smithi076.stdout:Installing dependencies: 2024-09-18T12:03:11.158 INFO:teuthology.orchestra.run.smithi076.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-09-18T12:03:11.158 INFO:teuthology.orchestra.run.smithi076.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2024-09-18T12:03:11.158 INFO:teuthology.orchestra.run.smithi076.stdout: python3-google-auth noarch 1:2.34.0-1.el9 epel 220 k 2024-09-18T12:03:11.158 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-09-18T12:03:11.158 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-09-18T12:03:11.158 INFO:teuthology.orchestra.run.smithi076.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-09-18T12:03:11.158 INFO:teuthology.orchestra.run.smithi076.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-09-18T12:03:11.158 INFO:teuthology.orchestra.run.smithi076.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-09-18T12:03:11.159 INFO:teuthology.orchestra.run.smithi076.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-09-18T12:03:11.159 INFO:teuthology.orchestra.run.smithi076.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-09-18T12:03:11.159 INFO:teuthology.orchestra.run.smithi076.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-09-18T12:03:11.159 INFO:teuthology.orchestra.run.smithi076.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-09-18T12:03:11.159 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:11.159 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-09-18T12:03:11.159 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:03:11.159 INFO:teuthology.orchestra.run.smithi076.stdout:Install 13 Packages 2024-09-18T12:03:11.159 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:11.160 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 2.2 M 2024-09-18T12:03:11.160 INFO:teuthology.orchestra.run.smithi076.stdout:Installed size: 26 M 2024-09-18T12:03:11.160 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-09-18T12:03:11.616 INFO:teuthology.orchestra.run.smithi076.stdout:(1/13): python3-jsonpointer-2.0-4.el9.noarch.rp 231 kB/s | 19 kB 00:00 2024-09-18T12:03:11.654 INFO:teuthology.orchestra.run.smithi169.stdout:Last metadata expiration check: 0:01:11 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:03:11.658 INFO:teuthology.orchestra.run.smithi076.stdout:(2/13): python3-jsonpatch-1.21-16.el9.noarch.rp 205 kB/s | 26 kB 00:00 2024-09-18T12:03:11.672 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:00:52 ago on Wed 18 Sep 2024 12:02:19 PM UTC. 2024-09-18T12:03:11.700 INFO:teuthology.orchestra.run.smithi076.stdout:(3/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 2.6 MB/s | 222 kB 00:00 2024-09-18T12:03:11.725 INFO:teuthology.orchestra.run.smithi076.stdout:(4/13): ceph-mgr-rook-17.2.7-1645.g7061ea6c.el9 247 kB/s | 47 kB 00:00 2024-09-18T12:03:11.775 INFO:teuthology.orchestra.run.smithi076.stdout:(5/13): python3-pyasn1-modules-0.4.8-6.el9.noar 3.6 MB/s | 279 kB 00:00 2024-09-18T12:03:11.791 INFO:teuthology.orchestra.run.smithi169.stdout:Dependencies resolved. 2024-09-18T12:03:11.792 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:03:11.792 INFO:teuthology.orchestra.run.smithi169.stdout: Package Arch Version Repository Size 2024-09-18T12:03:11.792 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:03:11.792 INFO:teuthology.orchestra.run.smithi169.stdout:Installing: 2024-09-18T12:03:11.792 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-mgr-rook noarch 2:17.2.7-1645.g7061ea6c.el9 ceph-noarch 47 k 2024-09-18T12:03:11.792 INFO:teuthology.orchestra.run.smithi169.stdout:Installing dependencies: 2024-09-18T12:03:11.792 INFO:teuthology.orchestra.run.smithi169.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-09-18T12:03:11.793 INFO:teuthology.orchestra.run.smithi169.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2024-09-18T12:03:11.793 INFO:teuthology.orchestra.run.smithi169.stdout: python3-google-auth noarch 1:2.34.0-1.el9 epel 220 k 2024-09-18T12:03:11.793 INFO:teuthology.orchestra.run.smithi169.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-09-18T12:03:11.793 INFO:teuthology.orchestra.run.smithi169.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-09-18T12:03:11.793 INFO:teuthology.orchestra.run.smithi169.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-09-18T12:03:11.793 INFO:teuthology.orchestra.run.smithi169.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-09-18T12:03:11.793 INFO:teuthology.orchestra.run.smithi169.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-09-18T12:03:11.793 INFO:teuthology.orchestra.run.smithi169.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-09-18T12:03:11.793 INFO:teuthology.orchestra.run.smithi169.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-09-18T12:03:11.793 INFO:teuthology.orchestra.run.smithi169.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-09-18T12:03:11.793 INFO:teuthology.orchestra.run.smithi169.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-09-18T12:03:11.793 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:11.793 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction Summary 2024-09-18T12:03:11.793 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:03:11.794 INFO:teuthology.orchestra.run.smithi169.stdout:Install 13 Packages 2024-09-18T12:03:11.794 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:11.794 INFO:teuthology.orchestra.run.smithi169.stdout:Total download size: 2.2 M 2024-09-18T12:03:11.794 INFO:teuthology.orchestra.run.smithi169.stdout:Installed size: 26 M 2024-09-18T12:03:11.794 INFO:teuthology.orchestra.run.smithi169.stdout:Downloading Packages: 2024-09-18T12:03:11.801 INFO:teuthology.orchestra.run.smithi076.stdout:(6/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.1 MB/s | 159 kB 00:00 2024-09-18T12:03:11.811 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-18T12:03:11.811 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:03:11.811 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repo Size 2024-09-18T12:03:11.811 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:03:11.811 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-18T12:03:11.812 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-immutable-object-cache x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 137 k 2024-09-18T12:03:11.812 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:11.812 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-18T12:03:11.812 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:03:11.812 INFO:teuthology.orchestra.run.smithi160.stdout:Install 1 Package 2024-09-18T12:03:11.812 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:11.813 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 137 k 2024-09-18T12:03:11.813 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 379 k 2024-09-18T12:03:11.813 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-18T12:03:11.843 INFO:teuthology.orchestra.run.smithi076.stdout:(7/13): python3-requests-oauthlib-1.3.0-12.el9. 458 kB/s | 54 kB 00:00 2024-09-18T12:03:11.868 INFO:teuthology.orchestra.run.smithi076.stdout:(8/13): python3-cachetools-4.2.4-1.el9.noarch.r 349 kB/s | 32 kB 00:00 2024-09-18T12:03:11.901 INFO:teuthology.orchestra.run.smithi076.stdout:(9/13): python3-certifi-2023.05.07-4.el9.noarch 140 kB/s | 14 kB 00:00 2024-09-18T12:03:11.935 INFO:teuthology.orchestra.run.smithi076.stdout:(10/13): python3-rsa-4.9-2.el9.noarch.rpm 1.8 MB/s | 59 kB 00:00 2024-09-18T12:03:11.969 INFO:teuthology.orchestra.run.smithi076.stdout:(11/13): python3-websocket-client-1.2.3-2.el9.n 2.6 MB/s | 90 kB 00:00 2024-09-18T12:03:11.994 INFO:teuthology.orchestra.run.smithi076.stdout:(12/13): python3-google-auth-2.34.0-1.el9.noarc 1.4 MB/s | 220 kB 00:00 2024-09-18T12:03:12.029 INFO:teuthology.orchestra.run.smithi160.stdout:ceph-immutable-object-cache-17.2.7-1645.g7061ea 634 kB/s | 137 kB 00:00 2024-09-18T12:03:12.030 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:03:12.030 INFO:teuthology.orchestra.run.smithi160.stdout:Total 630 kB/s | 137 kB 00:00 2024-09-18T12:03:12.030 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-18T12:03:12.036 INFO:teuthology.orchestra.run.smithi076.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 6.3 MB/s | 1.0 MB 00:00 2024-09-18T12:03:12.037 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-18T12:03:12.038 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-18T12:03:12.038 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:03:12.039 INFO:teuthology.orchestra.run.smithi076.stdout:Total 2.5 MB/s | 2.2 MB 00:00 2024-09-18T12:03:12.094 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-18T12:03:12.094 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-18T12:03:12.105 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-09-18T12:03:12.120 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-09-18T12:03:12.120 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-09-18T12:03:12.133 INFO:teuthology.orchestra.run.smithi169.stdout:(1/13): python3-jsonpatch-1.21-16.el9.noarch.rp 315 kB/s | 26 kB 00:00 2024-09-18T12:03:12.158 INFO:teuthology.orchestra.run.smithi169.stdout:(2/13): python3-jsonpointer-2.0-4.el9.noarch.rp 180 kB/s | 19 kB 00:00 2024-09-18T12:03:12.209 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-09-18T12:03:12.211 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-09-18T12:03:12.225 INFO:teuthology.orchestra.run.smithi169.stdout:(3/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 2.3 MB/s | 159 kB 00:00 2024-09-18T12:03:12.234 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-18T12:03:12.259 INFO:teuthology.orchestra.run.smithi169.stdout:(4/13): ceph-mgr-rook-17.2.7-1645.g7061ea6c.el9 229 kB/s | 47 kB 00:00 2024-09-18T12:03:12.284 INFO:teuthology.orchestra.run.smithi169.stdout:(5/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 1.4 MB/s | 222 kB 00:00 2024-09-18T12:03:12.288 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-immutable-object-cache-2:17.2.7-1645.g7061ea6c. 1/1 2024-09-18T12:03:12.309 INFO:teuthology.orchestra.run.smithi169.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 1.0 MB/s | 54 kB 00:00 2024-09-18T12:03:12.313 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-immutable-object-cache-2:17.2.7-1645.g7061ea6c. 1/1 2024-09-18T12:03:12.314 INFO:teuthology.orchestra.run.smithi160.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-18T12:03:12.314 INFO:teuthology.orchestra.run.smithi160.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-09-18T12:03:12.314 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:12.335 INFO:teuthology.orchestra.run.smithi169.stdout:(7/13): python3-pyasn1-modules-0.4.8-6.el9.noar 2.5 MB/s | 279 kB 00:00 2024-09-18T12:03:12.385 INFO:teuthology.orchestra.run.smithi169.stdout:(8/13): python3-cachetools-4.2.4-1.el9.noarch.r 320 kB/s | 32 kB 00:00 2024-09-18T12:03:12.410 INFO:teuthology.orchestra.run.smithi169.stdout:(9/13): python3-certifi-2023.05.07-4.el9.noarch 140 kB/s | 14 kB 00:00 2024-09-18T12:03:12.435 INFO:teuthology.orchestra.run.smithi169.stdout:(10/13): python3-rsa-4.9-2.el9.noarch.rpm 2.3 MB/s | 59 kB 00:00 2024-09-18T12:03:12.461 INFO:teuthology.orchestra.run.smithi169.stdout:(11/13): python3-google-auth-2.34.0-1.el9.noarc 1.9 MB/s | 220 kB 00:00 2024-09-18T12:03:12.486 INFO:teuthology.orchestra.run.smithi169.stdout:(12/13): python3-websocket-client-1.2.3-2.el9.n 1.7 MB/s | 90 kB 00:00 2024-09-18T12:03:12.519 INFO:teuthology.orchestra.run.smithi169.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 7.7 MB/s | 1.0 MB 00:00 2024-09-18T12:03:12.522 INFO:teuthology.orchestra.run.smithi169.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:03:12.522 INFO:teuthology.orchestra.run.smithi169.stdout:Total 3.0 MB/s | 2.2 MB 00:00 2024-09-18T12:03:12.587 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction check 2024-09-18T12:03:12.603 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction check succeeded. 2024-09-18T12:03:12.603 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction test 2024-09-18T12:03:12.694 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction test succeeded. 2024-09-18T12:03:12.696 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction 2024-09-18T12:03:12.711 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-09-18T12:03:12.877 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-09-18T12:03:12.929 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-09-18T12:03:12.984 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-09-18T12:03:13.021 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-09-18T12:03:13.063 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 5/13 2024-09-18T12:03:13.174 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-09-18T12:03:13.214 INFO:teuthology.orchestra.run.smithi169.stdout: Preparing : 1/1 2024-09-18T12:03:13.248 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-immutable-object-cache-2:17.2.7-1645.g7061ea6c. 1/1 2024-09-18T12:03:13.248 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:13.248 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-18T12:03:13.248 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-immutable-object-cache-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:03:13.248 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:13.248 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-18T12:03:13.276 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-google-auth-1:2.34.0-1.el9.noarch 7/13 2024-09-18T12:03:13.331 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-09-18T12:03:13.383 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-09-18T12:03:13.437 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-09-18T12:03:13.465 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph-mgr 2024-09-18T12:03:13.492 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-09-18T12:03:13.530 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-09-18T12:03:13.571 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 5/13 2024-09-18T12:03:13.672 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-09-18T12:03:13.773 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-google-auth-1:2.34.0-1.el9.noarch 7/13 2024-09-18T12:03:13.823 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-09-18T12:03:14.059 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-09-18T12:03:14.060 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:00:55 ago on Wed 18 Sep 2024 12:02:19 PM UTC. 2024-09-18T12:03:14.103 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-09-18T12:03:14.137 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-09-18T12:03:14.150 INFO:teuthology.orchestra.run.smithi160.stdout:Package ceph-mgr-2:17.2.7-1645.g7061ea6c.el9.x86_64 is already installed. 2024-09-18T12:03:14.183 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-09-18T12:03:14.192 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-18T12:03:14.193 INFO:teuthology.orchestra.run.smithi160.stdout:Nothing to do. 2024-09-18T12:03:14.193 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-18T12:03:14.207 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-mgr-rook-2:17.2.7-1645.g7061ea6c.el9.noarch 13/13 2024-09-18T12:03:14.262 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph-mgr-dashboard 2024-09-18T12:03:14.533 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-09-18T12:03:14.587 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-09-18T12:03:14.612 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-09-18T12:03:14.658 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-09-18T12:03:14.682 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : ceph-mgr-rook-2:17.2.7-1645.g7061ea6c.el9.noarch 13/13 2024-09-18T12:03:14.843 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:00:55 ago on Wed 18 Sep 2024 12:02:19 PM UTC. 2024-09-18T12:03:14.974 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-18T12:03:14.975 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:03:14.975 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repository Size 2024-09-18T12:03:14.975 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:03:14.975 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-18T12:03:14.975 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr-dashboard noarch 2:17.2.7-1645.g7061ea6c.el9 ceph-noarch 3.4 M 2024-09-18T12:03:14.975 INFO:teuthology.orchestra.run.smithi160.stdout:Installing dependencies: 2024-09-18T12:03:14.975 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-grafana-dashboards noarch 2:17.2.7-1645.g7061ea6c.el9 ceph-noarch 24 k 2024-09-18T12:03:14.975 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-prometheus-alerts noarch 2:17.2.7-1645.g7061ea6c.el9 ceph-noarch 15 k 2024-09-18T12:03:14.975 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jwt noarch 2.4.0-1.el9 epel 41 k 2024-09-18T12:03:14.975 INFO:teuthology.orchestra.run.smithi160.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-09-18T12:03:14.976 INFO:teuthology.orchestra.run.smithi160.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-09-18T12:03:14.976 INFO:teuthology.orchestra.run.smithi160.stdout:Installing weak dependencies: 2024-09-18T12:03:14.976 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jwt+crypto noarch 2.4.0-1.el9 epel 9.0 k 2024-09-18T12:03:14.976 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:14.976 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-18T12:03:14.976 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:03:14.976 INFO:teuthology.orchestra.run.smithi160.stdout:Install 7 Packages 2024-09-18T12:03:14.976 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:14.977 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 3.7 M 2024-09-18T12:03:14.977 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 80 M 2024-09-18T12:03:14.977 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-18T12:03:15.076 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-mgr-rook-2:17.2.7-1645.g7061ea6c.el9.noarch 13/13 2024-09-18T12:03:15.076 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-mgr-rook-2:17.2.7-1645.g7061ea6c.el9.noarch 1/13 2024-09-18T12:03:15.076 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-09-18T12:03:15.077 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-09-18T12:03:15.077 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-09-18T12:03:15.077 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-09-18T12:03:15.077 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-09-18T12:03:15.077 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-09-18T12:03:15.077 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-09-18T12:03:15.077 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 9/13 2024-09-18T12:03:15.077 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-google-auth-1:2.34.0-1.el9.noarch 10/13 2024-09-18T12:03:15.077 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-09-18T12:03:15.077 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-09-18T12:03:15.315 INFO:teuthology.orchestra.run.smithi160.stdout:(1/7): ceph-grafana-dashboards-17.2.7-1645.g706 162 kB/s | 24 kB 00:00 2024-09-18T12:03:15.340 INFO:teuthology.orchestra.run.smithi160.stdout:(2/7): ceph-prometheus-alerts-17.2.7-1645.g7061 83 kB/s | 15 kB 00:00 2024-09-18T12:03:15.382 INFO:teuthology.orchestra.run.smithi160.stdout:(3/7): python3-jwt+crypto-2.4.0-1.el9.noarch.rp 135 kB/s | 9.0 kB 00:00 2024-09-18T12:03:15.394 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-09-18T12:03:15.395 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:15.395 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-09-18T12:03:15.395 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-mgr-rook-2:17.2.7-1645.g7061ea6c.el9.noarch 2024-09-18T12:03:15.395 INFO:teuthology.orchestra.run.smithi076.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-09-18T12:03:15.395 INFO:teuthology.orchestra.run.smithi076.stdout: python3-certifi-2023.05.07-4.el9.noarch 2024-09-18T12:03:15.395 INFO:teuthology.orchestra.run.smithi076.stdout: python3-google-auth-1:2.34.0-1.el9.noarch 2024-09-18T12:03:15.395 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-09-18T12:03:15.395 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-09-18T12:03:15.395 INFO:teuthology.orchestra.run.smithi076.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-09-18T12:03:15.395 INFO:teuthology.orchestra.run.smithi076.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-09-18T12:03:15.396 INFO:teuthology.orchestra.run.smithi076.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-09-18T12:03:15.396 INFO:teuthology.orchestra.run.smithi076.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-09-18T12:03:15.396 INFO:teuthology.orchestra.run.smithi076.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-09-18T12:03:15.396 INFO:teuthology.orchestra.run.smithi076.stdout: python3-rsa-4.9-2.el9.noarch 2024-09-18T12:03:15.396 INFO:teuthology.orchestra.run.smithi076.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-09-18T12:03:15.396 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:15.396 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-09-18T12:03:15.416 INFO:teuthology.orchestra.run.smithi160.stdout:(4/7): python3-repoze-lru-0.7-16.el9.noarch.rpm 968 kB/s | 31 kB 00:00 2024-09-18T12:03:15.441 INFO:teuthology.orchestra.run.smithi160.stdout:(5/7): python3-jwt-2.4.0-1.el9.noarch.rpm 406 kB/s | 41 kB 00:00 2024-09-18T12:03:15.475 INFO:teuthology.orchestra.run.smithi160.stdout:(6/7): python3-routes-2.5.1-5.el9.noarch.rpm 3.1 MB/s | 188 kB 00:00 2024-09-18T12:03:15.556 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: ceph-mgr-rook-2:17.2.7-1645.g7061ea6c.el9.noarch 13/13 2024-09-18T12:03:15.557 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : ceph-mgr-rook-2:17.2.7-1645.g7061ea6c.el9.noarch 1/13 2024-09-18T12:03:15.557 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-09-18T12:03:15.557 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-09-18T12:03:15.557 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-09-18T12:03:15.557 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-09-18T12:03:15.557 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-09-18T12:03:15.557 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-09-18T12:03:15.557 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-09-18T12:03:15.557 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 9/13 2024-09-18T12:03:15.557 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-google-auth-1:2.34.0-1.el9.noarch 10/13 2024-09-18T12:03:15.557 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-09-18T12:03:15.557 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-09-18T12:03:15.566 INFO:teuthology.orchestra.run.smithi160.stdout:(7/7): ceph-mgr-dashboard-17.2.7-1645.g7061ea6c 8.3 MB/s | 3.4 MB 00:00 2024-09-18T12:03:15.570 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:03:15.570 INFO:teuthology.orchestra.run.smithi160.stdout:Total 6.1 MB/s | 3.7 MB 00:00 2024-09-18T12:03:15.571 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-18T12:03:15.579 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-18T12:03:15.579 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-18T12:03:15.647 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install ceph-mgr-cephadm 2024-09-18T12:03:15.668 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-18T12:03:15.668 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-18T12:03:15.883 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-09-18T12:03:15.884 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:15.884 INFO:teuthology.orchestra.run.smithi169.stdout:Installed: 2024-09-18T12:03:15.884 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-mgr-rook-2:17.2.7-1645.g7061ea6c.el9.noarch 2024-09-18T12:03:15.884 INFO:teuthology.orchestra.run.smithi169.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-09-18T12:03:15.884 INFO:teuthology.orchestra.run.smithi169.stdout: python3-certifi-2023.05.07-4.el9.noarch 2024-09-18T12:03:15.884 INFO:teuthology.orchestra.run.smithi169.stdout: python3-google-auth-1:2.34.0-1.el9.noarch 2024-09-18T12:03:15.884 INFO:teuthology.orchestra.run.smithi169.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-09-18T12:03:15.884 INFO:teuthology.orchestra.run.smithi169.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-09-18T12:03:15.884 INFO:teuthology.orchestra.run.smithi169.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-09-18T12:03:15.884 INFO:teuthology.orchestra.run.smithi169.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-09-18T12:03:15.884 INFO:teuthology.orchestra.run.smithi169.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-09-18T12:03:15.885 INFO:teuthology.orchestra.run.smithi169.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-09-18T12:03:15.885 INFO:teuthology.orchestra.run.smithi169.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-09-18T12:03:15.885 INFO:teuthology.orchestra.run.smithi169.stdout: python3-rsa-4.9-2.el9.noarch 2024-09-18T12:03:15.885 INFO:teuthology.orchestra.run.smithi169.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-09-18T12:03:15.885 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:15.885 INFO:teuthology.orchestra.run.smithi169.stdout:Complete! 2024-09-18T12:03:15.974 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-18T12:03:16.051 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-jwt-2.4.0-1.el9.noarch 1/7 2024-09-18T12:03:16.094 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-jwt+crypto-2.4.0-1.el9.noarch 2/7 2024-09-18T12:03:16.116 DEBUG:teuthology.orchestra.run.smithi169:> sudo yum -y install ceph-mgr-cephadm 2024-09-18T12:03:16.140 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/7 2024-09-18T12:03:16.172 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/7 2024-09-18T12:03:16.201 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-prometheus-alerts-2:17.2.7-1645.g7061ea6c.el9.n 5/7 2024-09-18T12:03:16.222 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:16 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:03:16.353 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-09-18T12:03:16.354 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:03:16.354 INFO:teuthology.orchestra.run.smithi076.stdout: Package Arch Version Repository Size 2024-09-18T12:03:16.354 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:03:16.354 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-09-18T12:03:16.354 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-mgr-cephadm noarch 2:17.2.7-1645.g7061ea6c.el9 ceph-noarch 124 k 2024-09-18T12:03:16.354 INFO:teuthology.orchestra.run.smithi076.stdout:Installing dependencies: 2024-09-18T12:03:16.354 INFO:teuthology.orchestra.run.smithi076.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-09-18T12:03:16.354 INFO:teuthology.orchestra.run.smithi076.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-09-18T12:03:16.354 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jinja2 noarch 2.11.3-6.el9 appstream 248 k 2024-09-18T12:03:16.354 INFO:teuthology.orchestra.run.smithi076.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-09-18T12:03:16.354 INFO:teuthology.orchestra.run.smithi076.stdout: python3-typing-extensions noarch 4.12.2-2.el9 epel 74 k 2024-09-18T12:03:16.355 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:16.355 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-09-18T12:03:16.355 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:03:16.355 INFO:teuthology.orchestra.run.smithi076.stdout:Install 6 Packages 2024-09-18T12:03:16.355 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:16.355 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 7.0 M 2024-09-18T12:03:16.355 INFO:teuthology.orchestra.run.smithi076.stdout:Installed size: 33 M 2024-09-18T12:03:16.356 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-09-18T12:03:16.692 INFO:teuthology.orchestra.run.smithi169.stdout:Last metadata expiration check: 0:01:16 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:03:16.824 INFO:teuthology.orchestra.run.smithi169.stdout:Dependencies resolved. 2024-09-18T12:03:16.825 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:03:16.825 INFO:teuthology.orchestra.run.smithi169.stdout: Package Arch Version Repository Size 2024-09-18T12:03:16.826 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:03:16.826 INFO:teuthology.orchestra.run.smithi169.stdout:Installing: 2024-09-18T12:03:16.826 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-mgr-cephadm noarch 2:17.2.7-1645.g7061ea6c.el9 ceph-noarch 124 k 2024-09-18T12:03:16.826 INFO:teuthology.orchestra.run.smithi169.stdout:Installing dependencies: 2024-09-18T12:03:16.826 INFO:teuthology.orchestra.run.smithi169.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-09-18T12:03:16.826 INFO:teuthology.orchestra.run.smithi169.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-09-18T12:03:16.826 INFO:teuthology.orchestra.run.smithi169.stdout: python3-jinja2 noarch 2.11.3-6.el9 appstream 248 k 2024-09-18T12:03:16.826 INFO:teuthology.orchestra.run.smithi169.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-09-18T12:03:16.826 INFO:teuthology.orchestra.run.smithi169.stdout: python3-typing-extensions noarch 4.12.2-2.el9 epel 74 k 2024-09-18T12:03:16.827 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:16.827 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction Summary 2024-09-18T12:03:16.827 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:03:16.827 INFO:teuthology.orchestra.run.smithi169.stdout:Install 6 Packages 2024-09-18T12:03:16.827 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:16.827 INFO:teuthology.orchestra.run.smithi169.stdout:Total download size: 7.0 M 2024-09-18T12:03:16.827 INFO:teuthology.orchestra.run.smithi169.stdout:Installed size: 33 M 2024-09-18T12:03:16.828 INFO:teuthology.orchestra.run.smithi169.stdout:Downloading Packages: 2024-09-18T12:03:17.013 INFO:teuthology.orchestra.run.smithi076.stdout:(1/6): python3-jinja2-2.11.3-6.el9.noarch.rpm 1.6 MB/s | 248 kB 00:00 2024-09-18T12:03:17.055 INFO:teuthology.orchestra.run.smithi076.stdout:(2/6): ceph-mgr-cephadm-17.2.7-1645.g7061ea6c.e 654 kB/s | 124 kB 00:00 2024-09-18T12:03:17.105 INFO:teuthology.orchestra.run.smithi076.stdout:(3/6): python3-natsort-7.1.1-5.el9.noarch.rpm 1.1 MB/s | 58 kB 00:00 2024-09-18T12:03:17.139 INFO:teuthology.orchestra.run.smithi076.stdout:(4/6): python3-typing-extensions-4.12.2-2.el9.n 2.2 MB/s | 74 kB 00:00 2024-09-18T12:03:17.164 INFO:teuthology.orchestra.run.smithi076.stdout:(5/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 3.6 MB/s | 548 kB 00:00 2024-09-18T12:03:17.208 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-grafana-dashboards-2:17.2.7-1645.g7061ea6c.el9. 6/7 2024-09-18T12:03:17.238 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-mgr-dashboard-2:17.2.7-1645.g7061ea6c.el9.noarc 7/7 2024-09-18T12:03:17.380 INFO:teuthology.orchestra.run.smithi169.stdout:(1/6): python3-jinja2-2.11.3-6.el9.noarch.rpm 1.9 MB/s | 248 kB 00:00 2024-09-18T12:03:17.438 INFO:teuthology.orchestra.run.smithi169.stdout:(2/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 9.2 MB/s | 548 kB 00:00 2024-09-18T12:03:17.463 INFO:teuthology.orchestra.run.smithi169.stdout:(3/6): ceph-mgr-cephadm-17.2.7-1645.g7061ea6c.e 581 kB/s | 124 kB 00:00 2024-09-18T12:03:17.489 INFO:teuthology.orchestra.run.smithi169.stdout:(4/6): python3-natsort-7.1.1-5.el9.noarch.rpm 1.1 MB/s | 58 kB 00:00 2024-09-18T12:03:17.539 INFO:teuthology.orchestra.run.smithi169.stdout:(5/6): python3-typing-extensions-4.12.2-2.el9.n 991 kB/s | 74 kB 00:00 2024-09-18T12:03:18.287 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-mgr-dashboard-2:17.2.7-1645.g7061ea6c.el9.noarc 7/7 2024-09-18T12:03:18.287 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-grafana-dashboards-2:17.2.7-1645.g7061ea6c.el9. 1/7 2024-09-18T12:03:18.287 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-mgr-dashboard-2:17.2.7-1645.g7061ea6c.el9.noarc 2/7 2024-09-18T12:03:18.288 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-prometheus-alerts-2:17.2.7-1645.g7061ea6c.el9.n 3/7 2024-09-18T12:03:18.288 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-jwt+crypto-2.4.0-1.el9.noarch 4/7 2024-09-18T12:03:18.288 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-jwt-2.4.0-1.el9.noarch 5/7 2024-09-18T12:03:18.288 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 6/7 2024-09-18T12:03:18.422 INFO:teuthology.orchestra.run.smithi076.stdout:(6/6): python3-babel-2.9.1-2.el9.noarch.rpm 3.8 MB/s | 6.0 MB 00:01 2024-09-18T12:03:18.425 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:03:18.425 INFO:teuthology.orchestra.run.smithi076.stdout:Total 3.4 MB/s | 7.0 MB 00:02 2024-09-18T12:03:18.496 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-09-18T12:03:18.506 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-09-18T12:03:18.507 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-09-18T12:03:18.580 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 7/7 2024-09-18T12:03:18.580 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:18.581 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-18T12:03:18.581 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-grafana-dashboards-2:17.2.7-1645.g7061ea6c.el9.noarch 2024-09-18T12:03:18.581 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr-dashboard-2:17.2.7-1645.g7061ea6c.el9.noarch 2024-09-18T12:03:18.581 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-prometheus-alerts-2:17.2.7-1645.g7061ea6c.el9.noarch 2024-09-18T12:03:18.581 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jwt-2.4.0-1.el9.noarch 2024-09-18T12:03:18.581 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jwt+crypto-2.4.0-1.el9.noarch 2024-09-18T12:03:18.581 INFO:teuthology.orchestra.run.smithi160.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-09-18T12:03:18.581 INFO:teuthology.orchestra.run.smithi160.stdout: python3-routes-2.5.1-5.el9.noarch 2024-09-18T12:03:18.581 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:18.581 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-18T12:03:18.604 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-09-18T12:03:18.605 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-09-18T12:03:18.756 INFO:teuthology.orchestra.run.smithi169.stdout:(6/6): python3-babel-2.9.1-2.el9.noarch.rpm 4.0 MB/s | 6.0 MB 00:01 2024-09-18T12:03:18.759 INFO:teuthology.orchestra.run.smithi169.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:03:18.759 INFO:teuthology.orchestra.run.smithi169.stdout:Total 3.6 MB/s | 7.0 MB 00:01 2024-09-18T12:03:18.801 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph-mgr-diskprediction-local 2024-09-18T12:03:18.832 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction check 2024-09-18T12:03:18.844 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction check succeeded. 2024-09-18T12:03:18.844 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction test 2024-09-18T12:03:18.914 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-09-18T12:03:18.946 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction test succeeded. 2024-09-18T12:03:18.946 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction 2024-09-18T12:03:19.079 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-typing-extensions-4.12.2-2.el9.noarch 1/6 2024-09-18T12:03:19.141 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-09-18T12:03:19.249 INFO:teuthology.orchestra.run.smithi169.stdout: Preparing : 1/1 2024-09-18T12:03:19.379 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:00 ago on Wed 18 Sep 2024 12:02:19 PM UTC. 2024-09-18T12:03:19.433 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-typing-extensions-4.12.2-2.el9.noarch 1/6 2024-09-18T12:03:19.483 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-09-18T12:03:19.513 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-18T12:03:19.514 INFO:teuthology.orchestra.run.smithi160.stdout:======================================================================================= 2024-09-18T12:03:19.514 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repository Size 2024-09-18T12:03:19.514 INFO:teuthology.orchestra.run.smithi160.stdout:======================================================================================= 2024-09-18T12:03:19.514 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-18T12:03:19.514 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr-diskprediction-local noarch 2:17.2.7-1645.g7061ea6c.el9 ceph-noarch 7.4 M 2024-09-18T12:03:19.514 INFO:teuthology.orchestra.run.smithi160.stdout:Installing dependencies: 2024-09-18T12:03:19.515 INFO:teuthology.orchestra.run.smithi160.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-09-18T12:03:19.515 INFO:teuthology.orchestra.run.smithi160.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-09-18T12:03:19.515 INFO:teuthology.orchestra.run.smithi160.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-09-18T12:03:19.515 INFO:teuthology.orchestra.run.smithi160.stdout: libgfortran x86_64 11.5.0-2.el9 baseos 801 k 2024-09-18T12:03:19.515 INFO:teuthology.orchestra.run.smithi160.stdout: libquadmath x86_64 11.5.0-2.el9 baseos 191 k 2024-09-18T12:03:19.515 INFO:teuthology.orchestra.run.smithi160.stdout: openblas x86_64 0.3.26-2.el9 appstream 38 k 2024-09-18T12:03:19.515 INFO:teuthology.orchestra.run.smithi160.stdout: openblas-openmp x86_64 0.3.26-2.el9 appstream 4.9 M 2024-09-18T12:03:19.515 INFO:teuthology.orchestra.run.smithi160.stdout: python3-devel x86_64 3.9.19-8.el9 appstream 245 k 2024-09-18T12:03:19.515 INFO:teuthology.orchestra.run.smithi160.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-09-18T12:03:19.515 INFO:teuthology.orchestra.run.smithi160.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-09-18T12:03:19.515 INFO:teuthology.orchestra.run.smithi160.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-09-18T12:03:19.515 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:19.516 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-18T12:03:19.516 INFO:teuthology.orchestra.run.smithi160.stdout:======================================================================================= 2024-09-18T12:03:19.516 INFO:teuthology.orchestra.run.smithi160.stdout:Install 12 Packages 2024-09-18T12:03:19.516 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:19.516 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 38 M 2024-09-18T12:03:19.517 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 212 M 2024-09-18T12:03:19.517 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-18T12:03:19.666 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-09-18T12:03:19.741 INFO:teuthology.orchestra.run.smithi160.stdout:(1/12): libquadmath-11.5.0-2.el9.x86_64.rpm 1.8 MB/s | 191 kB 00:00 2024-09-18T12:03:19.751 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-09-18T12:03:19.783 INFO:teuthology.orchestra.run.smithi160.stdout:(2/12): libgfortran-11.5.0-2.el9.x86_64.rpm 5.3 MB/s | 801 kB 00:00 2024-09-18T12:03:19.807 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-jinja2-2.11.3-6.el9.noarch 5/6 2024-09-18T12:03:19.837 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-mgr-cephadm-2:17.2.7-1645.g7061ea6c.el9.noarch 6/6 2024-09-18T12:03:19.883 INFO:teuthology.orchestra.run.smithi160.stdout:(3/12): flexiblas-3.0.4-8.el9.x86_64.rpm 230 kB/s | 33 kB 00:00 2024-09-18T12:03:19.933 INFO:teuthology.orchestra.run.smithi160.stdout:(4/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 363 kB/s | 18 kB 00:00 2024-09-18T12:03:20.017 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-09-18T12:03:20.017 INFO:teuthology.orchestra.run.smithi160.stdout:(5/12): openblas-0.3.26-2.el9.x86_64.rpm 461 kB/s | 38 kB 00:00 2024-09-18T12:03:20.103 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-09-18T12:03:20.109 INFO:teuthology.orchestra.run.smithi160.stdout:(6/12): ceph-mgr-diskprediction-local-17.2.7-16 16 MB/s | 7.4 MB 00:00 2024-09-18T12:03:20.158 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : python3-jinja2-2.11.3-6.el9.noarch 5/6 2024-09-18T12:03:20.186 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : ceph-mgr-cephadm-2:17.2.7-1645.g7061ea6c.el9.noarch 6/6 2024-09-18T12:03:20.309 INFO:teuthology.orchestra.run.smithi160.stdout:(7/12): python3-devel-3.9.19-8.el9.x86_64.rpm 1.2 MB/s | 245 kB 00:00 2024-09-18T12:03:20.660 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-mgr-cephadm-2:17.2.7-1645.g7061ea6c.el9.noarch 6/6 2024-09-18T12:03:20.660 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-mgr-cephadm-2:17.2.7-1645.g7061ea6c.el9.noarch 1/6 2024-09-18T12:03:20.660 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-09-18T12:03:20.660 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-jinja2-2.11.3-6.el9.noarch 3/6 2024-09-18T12:03:20.660 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-09-18T12:03:20.660 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-09-18T12:03:20.835 INFO:teuthology.orchestra.run.smithi160.stdout:(8/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 2.8 MB/s | 3.0 MB 00:01 2024-09-18T12:03:20.927 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-typing-extensions-4.12.2-2.el9.noarch 6/6 2024-09-18T12:03:20.927 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:20.927 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-09-18T12:03:20.927 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-mgr-cephadm-2:17.2.7-1645.g7061ea6c.el9.noarch 2024-09-18T12:03:20.927 INFO:teuthology.orchestra.run.smithi076.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-09-18T12:03:20.927 INFO:teuthology.orchestra.run.smithi076.stdout: python3-babel-2.9.1-2.el9.noarch 2024-09-18T12:03:20.927 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jinja2-2.11.3-6.el9.noarch 2024-09-18T12:03:20.927 INFO:teuthology.orchestra.run.smithi076.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-09-18T12:03:20.927 INFO:teuthology.orchestra.run.smithi076.stdout: python3-typing-extensions-4.12.2-2.el9.noarch 2024-09-18T12:03:20.927 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:20.928 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-09-18T12:03:20.930 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: ceph-mgr-cephadm-2:17.2.7-1645.g7061ea6c.el9.noarch 6/6 2024-09-18T12:03:20.931 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : ceph-mgr-cephadm-2:17.2.7-1645.g7061ea6c.el9.noarch 1/6 2024-09-18T12:03:20.931 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-09-18T12:03:20.931 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-jinja2-2.11.3-6.el9.noarch 3/6 2024-09-18T12:03:20.931 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-09-18T12:03:20.931 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-09-18T12:03:20.977 INFO:teuthology.orchestra.run.smithi160.stdout:(9/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 1.7 MB/s | 250 kB 00:00 2024-09-18T12:03:21.194 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install ceph-fuse 2024-09-18T12:03:21.215 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : python3-typing-extensions-4.12.2-2.el9.noarch 6/6 2024-09-18T12:03:21.216 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:21.216 INFO:teuthology.orchestra.run.smithi169.stdout:Installed: 2024-09-18T12:03:21.216 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-mgr-cephadm-2:17.2.7-1645.g7061ea6c.el9.noarch 2024-09-18T12:03:21.216 INFO:teuthology.orchestra.run.smithi169.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-09-18T12:03:21.216 INFO:teuthology.orchestra.run.smithi169.stdout: python3-babel-2.9.1-2.el9.noarch 2024-09-18T12:03:21.216 INFO:teuthology.orchestra.run.smithi169.stdout: python3-jinja2-2.11.3-6.el9.noarch 2024-09-18T12:03:21.216 INFO:teuthology.orchestra.run.smithi169.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-09-18T12:03:21.216 INFO:teuthology.orchestra.run.smithi169.stdout: python3-typing-extensions-4.12.2-2.el9.noarch 2024-09-18T12:03:21.216 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:21.216 INFO:teuthology.orchestra.run.smithi169.stdout:Complete! 2024-09-18T12:03:21.453 DEBUG:teuthology.orchestra.run.smithi169:> sudo yum -y install ceph-fuse 2024-09-18T12:03:21.767 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:21 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:03:21.901 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-09-18T12:03:21.902 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:03:21.902 INFO:teuthology.orchestra.run.smithi076.stdout: Package Arch Version Repository Size 2024-09-18T12:03:21.902 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:03:21.903 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-09-18T12:03:21.903 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-fuse x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 813 k 2024-09-18T12:03:21.903 INFO:teuthology.orchestra.run.smithi076.stdout:Installing dependencies: 2024-09-18T12:03:21.903 INFO:teuthology.orchestra.run.smithi076.stdout: fuse x86_64 2.9.9-16.el9 baseos 80 k 2024-09-18T12:03:21.903 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:21.903 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-09-18T12:03:21.903 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:03:21.903 INFO:teuthology.orchestra.run.smithi076.stdout:Install 2 Packages 2024-09-18T12:03:21.903 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:21.903 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 893 k 2024-09-18T12:03:21.903 INFO:teuthology.orchestra.run.smithi076.stdout:Installed size: 2.6 M 2024-09-18T12:03:21.903 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-09-18T12:03:21.927 INFO:teuthology.orchestra.run.smithi160.stdout:(10/12): openblas-openmp-0.3.26-2.el9.x86_64.rp 2.6 MB/s | 4.9 MB 00:01 2024-09-18T12:03:22.033 INFO:teuthology.orchestra.run.smithi169.stdout:Last metadata expiration check: 0:01:22 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:03:22.169 INFO:teuthology.orchestra.run.smithi169.stdout:Dependencies resolved. 2024-09-18T12:03:22.170 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:03:22.170 INFO:teuthology.orchestra.run.smithi169.stdout: Package Arch Version Repository Size 2024-09-18T12:03:22.170 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:03:22.170 INFO:teuthology.orchestra.run.smithi169.stdout:Installing: 2024-09-18T12:03:22.170 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-fuse x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 813 k 2024-09-18T12:03:22.170 INFO:teuthology.orchestra.run.smithi169.stdout:Installing dependencies: 2024-09-18T12:03:22.170 INFO:teuthology.orchestra.run.smithi169.stdout: fuse x86_64 2.9.9-16.el9 baseos 80 k 2024-09-18T12:03:22.170 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:22.170 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction Summary 2024-09-18T12:03:22.171 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:03:22.171 INFO:teuthology.orchestra.run.smithi169.stdout:Install 2 Packages 2024-09-18T12:03:22.171 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:22.171 INFO:teuthology.orchestra.run.smithi169.stdout:Total download size: 893 k 2024-09-18T12:03:22.171 INFO:teuthology.orchestra.run.smithi169.stdout:Installed size: 2.6 M 2024-09-18T12:03:22.171 INFO:teuthology.orchestra.run.smithi169.stdout:Downloading Packages: 2024-09-18T12:03:22.227 INFO:teuthology.orchestra.run.smithi160.stdout:(11/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 2.7 MB/s | 5.1 MB 00:01 2024-09-18T12:03:22.309 INFO:teuthology.orchestra.run.smithi076.stdout:(1/2): fuse-2.9.9-16.el9.x86_64.rpm 539 kB/s | 80 kB 00:00 2024-09-18T12:03:22.433 INFO:teuthology.orchestra.run.smithi076.stdout:(2/2): ceph-fuse-17.2.7-1645.g7061ea6c.el9.x86_ 2.9 MB/s | 813 kB 00:00 2024-09-18T12:03:22.434 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:03:22.434 INFO:teuthology.orchestra.run.smithi076.stdout:Total 1.6 MB/s | 893 kB 00:00 2024-09-18T12:03:22.438 INFO:teuthology.orchestra.run.smithi169.stdout:(1/2): fuse-2.9.9-16.el9.x86_64.rpm 477 kB/s | 80 kB 00:00 2024-09-18T12:03:22.445 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-09-18T12:03:22.467 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-09-18T12:03:22.467 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-09-18T12:03:22.545 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-09-18T12:03:22.546 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-09-18T12:03:22.574 INFO:teuthology.orchestra.run.smithi169.stdout:(2/2): ceph-fuse-17.2.7-1645.g7061ea6c.el9.x86_ 2.6 MB/s | 813 kB 00:00 2024-09-18T12:03:22.575 INFO:teuthology.orchestra.run.smithi169.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:03:22.575 INFO:teuthology.orchestra.run.smithi169.stdout:Total 2.2 MB/s | 893 kB 00:00 2024-09-18T12:03:22.587 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction check 2024-09-18T12:03:22.609 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction check succeeded. 2024-09-18T12:03:22.609 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction test 2024-09-18T12:03:22.689 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction test succeeded. 2024-09-18T12:03:22.689 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction 2024-09-18T12:03:22.733 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-09-18T12:03:22.843 INFO:teuthology.orchestra.run.smithi160.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 8.7 MB/s | 16 MB 00:01 2024-09-18T12:03:22.844 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:03:22.845 INFO:teuthology.orchestra.run.smithi160.stdout:Total 11 MB/s | 38 MB 00:03 2024-09-18T12:03:22.871 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : fuse-2.9.9-16.el9.x86_64 1/2 2024-09-18T12:03:22.872 INFO:teuthology.orchestra.run.smithi169.stdout: Preparing : 1/1 2024-09-18T12:03:22.948 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-fuse-2:17.2.7-1645.g7061ea6c.el9.x86_64 2/2 2024-09-18T12:03:23.020 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : fuse-2.9.9-16.el9.x86_64 1/2 2024-09-18T12:03:23.090 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : ceph-fuse-2:17.2.7-1645.g7061ea6c.el9.x86_64 2/2 2024-09-18T12:03:23.203 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-18T12:03:23.229 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-18T12:03:23.229 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-18T12:03:23.670 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-fuse-2:17.2.7-1645.g7061ea6c.el9.x86_64 2/2 2024-09-18T12:03:23.670 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-fuse-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/2 2024-09-18T12:03:23.728 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-18T12:03:23.728 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-18T12:03:23.796 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: ceph-fuse-2:17.2.7-1645.g7061ea6c.el9.x86_64 2/2 2024-09-18T12:03:23.797 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : ceph-fuse-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/2 2024-09-18T12:03:23.946 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : fuse-2.9.9-16.el9.x86_64 2/2 2024-09-18T12:03:23.946 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:23.946 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-09-18T12:03:23.946 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-fuse-2:17.2.7-1645.g7061ea6c.el9.x86_64 fuse-2.9.9-16.el9.x86_64 2024-09-18T12:03:23.946 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:23.946 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-09-18T12:03:24.067 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : fuse-2.9.9-16.el9.x86_64 2/2 2024-09-18T12:03:24.068 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:24.068 INFO:teuthology.orchestra.run.smithi169.stdout:Installed: 2024-09-18T12:03:24.068 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-fuse-2:17.2.7-1645.g7061ea6c.el9.x86_64 fuse-2.9.9-16.el9.x86_64 2024-09-18T12:03:24.068 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:24.068 INFO:teuthology.orchestra.run.smithi169.stdout:Complete! 2024-09-18T12:03:24.227 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install ceph-volume 2024-09-18T12:03:24.362 DEBUG:teuthology.orchestra.run.smithi169:> sudo yum -y install ceph-volume 2024-09-18T12:03:24.493 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-18T12:03:24.558 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-09-18T12:03:24.600 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : libquadmath-11.5.0-2.el9.x86_64 2/12 2024-09-18T12:03:24.701 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : libgfortran-11.5.0-2.el9.x86_64 3/12 2024-09-18T12:03:24.734 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-devel-3.9.19-8.el9.x86_64 4/12 2024-09-18T12:03:24.816 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:24 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:03:24.921 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : openblas-0.3.26-2.el9.x86_64 5/12 2024-09-18T12:03:24.954 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-09-18T12:03:24.954 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:03:24.954 INFO:teuthology.orchestra.run.smithi076.stdout: Package Arch Version Repository Size 2024-09-18T12:03:24.955 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:03:24.955 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-09-18T12:03:24.955 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-volume noarch 2:17.2.7-1645.g7061ea6c.el9 ceph-noarch 270 k 2024-09-18T12:03:24.955 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:24.955 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-09-18T12:03:24.955 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:03:24.955 INFO:teuthology.orchestra.run.smithi076.stdout:Install 1 Package 2024-09-18T12:03:24.955 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:24.955 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 270 k 2024-09-18T12:03:24.955 INFO:teuthology.orchestra.run.smithi076.stdout:Installed size: 1.3 M 2024-09-18T12:03:24.955 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-09-18T12:03:24.956 INFO:teuthology.orchestra.run.smithi169.stdout:Last metadata expiration check: 0:01:24 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:03:24.958 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : openblas-openmp-0.3.26-2.el9.x86_64 6/12 2024-09-18T12:03:25.035 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-09-18T12:03:25.096 INFO:teuthology.orchestra.run.smithi169.stdout:Dependencies resolved. 2024-09-18T12:03:25.097 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:03:25.097 INFO:teuthology.orchestra.run.smithi169.stdout: Package Arch Version Repository Size 2024-09-18T12:03:25.097 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:03:25.097 INFO:teuthology.orchestra.run.smithi169.stdout:Installing: 2024-09-18T12:03:25.097 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-volume noarch 2:17.2.7-1645.g7061ea6c.el9 ceph-noarch 270 k 2024-09-18T12:03:25.097 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:25.097 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction Summary 2024-09-18T12:03:25.097 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:03:25.098 INFO:teuthology.orchestra.run.smithi169.stdout:Install 1 Package 2024-09-18T12:03:25.098 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:25.098 INFO:teuthology.orchestra.run.smithi169.stdout:Total download size: 270 k 2024-09-18T12:03:25.098 INFO:teuthology.orchestra.run.smithi169.stdout:Installed size: 1.3 M 2024-09-18T12:03:25.098 INFO:teuthology.orchestra.run.smithi169.stdout:Downloading Packages: 2024-09-18T12:03:25.179 INFO:teuthology.orchestra.run.smithi076.stdout:ceph-volume-17.2.7-1645.g7061ea6c.el9.noarch.rp 1.2 MB/s | 270 kB 00:00 2024-09-18T12:03:25.180 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:03:25.180 INFO:teuthology.orchestra.run.smithi076.stdout:Total 1.2 MB/s | 270 kB 00:00 2024-09-18T12:03:25.180 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-09-18T12:03:25.188 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-09-18T12:03:25.188 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-09-18T12:03:25.217 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-09-18T12:03:25.217 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-09-18T12:03:25.320 INFO:teuthology.orchestra.run.smithi169.stdout:ceph-volume-17.2.7-1645.g7061ea6c.el9.noarch.rp 1.2 MB/s | 270 kB 00:00 2024-09-18T12:03:25.321 INFO:teuthology.orchestra.run.smithi169.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:03:25.321 INFO:teuthology.orchestra.run.smithi169.stdout:Total 1.2 MB/s | 270 kB 00:00 2024-09-18T12:03:25.321 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction check 2024-09-18T12:03:25.330 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction check succeeded. 2024-09-18T12:03:25.330 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction test 2024-09-18T12:03:25.357 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction test succeeded. 2024-09-18T12:03:25.357 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction 2024-09-18T12:03:25.426 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-09-18T12:03:25.481 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-volume-2:17.2.7-1645.g7061ea6c.el9.noarch 1/1 2024-09-18T12:03:25.497 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-volume-2:17.2.7-1645.g7061ea6c.el9.noarch 1/1 2024-09-18T12:03:25.497 INFO:teuthology.orchestra.run.smithi076.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-18T12:03:25.497 INFO:teuthology.orchestra.run.smithi076.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-09-18T12:03:25.497 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:25.569 INFO:teuthology.orchestra.run.smithi169.stdout: Preparing : 1/1 2024-09-18T12:03:25.647 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : ceph-volume-2:17.2.7-1645.g7061ea6c.el9.noarch 1/1 2024-09-18T12:03:25.663 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: ceph-volume-2:17.2.7-1645.g7061ea6c.el9.noarch 1/1 2024-09-18T12:03:25.663 INFO:teuthology.orchestra.run.smithi169.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-18T12:03:25.663 INFO:teuthology.orchestra.run.smithi169.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-09-18T12:03:25.663 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:25.699 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-09-18T12:03:25.830 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-09-18T12:03:26.454 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-volume-2:17.2.7-1645.g7061ea6c.el9.noarch 1/1 2024-09-18T12:03:26.455 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:26.455 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-09-18T12:03:26.455 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-volume-2:17.2.7-1645.g7061ea6c.el9.noarch 2024-09-18T12:03:26.455 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:26.455 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-09-18T12:03:26.673 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : ceph-volume-2:17.2.7-1645.g7061ea6c.el9.noarch 1/1 2024-09-18T12:03:26.674 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:26.674 INFO:teuthology.orchestra.run.smithi169.stdout:Installed: 2024-09-18T12:03:26.674 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-volume-2:17.2.7-1645.g7061ea6c.el9.noarch 2024-09-18T12:03:26.674 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:26.674 INFO:teuthology.orchestra.run.smithi169.stdout:Complete! 2024-09-18T12:03:26.733 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install librados-devel 2024-09-18T12:03:26.969 DEBUG:teuthology.orchestra.run.smithi169:> sudo yum -y install librados-devel 2024-09-18T12:03:27.115 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-09-18T12:03:27.329 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:27 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:03:27.462 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-09-18T12:03:27.463 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:03:27.463 INFO:teuthology.orchestra.run.smithi076.stdout: Package Arch Version Repo Size 2024-09-18T12:03:27.463 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:03:27.463 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-09-18T12:03:27.463 INFO:teuthology.orchestra.run.smithi076.stdout: librados-devel x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 126 k 2024-09-18T12:03:27.463 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:27.463 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-09-18T12:03:27.463 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:03:27.463 INFO:teuthology.orchestra.run.smithi076.stdout:Install 1 Package 2024-09-18T12:03:27.463 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:27.463 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 126 k 2024-09-18T12:03:27.464 INFO:teuthology.orchestra.run.smithi076.stdout:Installed size: 448 k 2024-09-18T12:03:27.464 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-09-18T12:03:27.564 INFO:teuthology.orchestra.run.smithi169.stdout:Last metadata expiration check: 0:01:27 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:03:27.659 INFO:teuthology.orchestra.run.smithi076.stdout:librados-devel-17.2.7-1645.g7061ea6c.el9.x86_64 644 kB/s | 126 kB 00:00 2024-09-18T12:03:27.660 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:03:27.660 INFO:teuthology.orchestra.run.smithi076.stdout:Total 640 kB/s | 126 kB 00:00 2024-09-18T12:03:27.660 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-09-18T12:03:27.666 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-09-18T12:03:27.666 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-09-18T12:03:27.695 INFO:teuthology.orchestra.run.smithi169.stdout:Dependencies resolved. 2024-09-18T12:03:27.696 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:03:27.696 INFO:teuthology.orchestra.run.smithi169.stdout: Package Arch Version Repo Size 2024-09-18T12:03:27.696 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:03:27.696 INFO:teuthology.orchestra.run.smithi169.stdout:Installing: 2024-09-18T12:03:27.696 INFO:teuthology.orchestra.run.smithi169.stdout: librados-devel x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 126 k 2024-09-18T12:03:27.696 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:27.696 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction Summary 2024-09-18T12:03:27.696 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:03:27.696 INFO:teuthology.orchestra.run.smithi169.stdout:Install 1 Package 2024-09-18T12:03:27.696 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:27.697 INFO:teuthology.orchestra.run.smithi169.stdout:Total download size: 126 k 2024-09-18T12:03:27.697 INFO:teuthology.orchestra.run.smithi169.stdout:Installed size: 448 k 2024-09-18T12:03:27.697 INFO:teuthology.orchestra.run.smithi169.stdout:Downloading Packages: 2024-09-18T12:03:27.729 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-09-18T12:03:27.730 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-09-18T12:03:27.883 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-09-18T12:03:27.908 INFO:teuthology.orchestra.run.smithi169.stdout:librados-devel-17.2.7-1645.g7061ea6c.el9.x86_64 597 kB/s | 126 kB 00:00 2024-09-18T12:03:27.909 INFO:teuthology.orchestra.run.smithi169.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:03:27.909 INFO:teuthology.orchestra.run.smithi169.stdout:Total 593 kB/s | 126 kB 00:00 2024-09-18T12:03:27.909 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction check 2024-09-18T12:03:27.915 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction check succeeded. 2024-09-18T12:03:27.915 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction test 2024-09-18T12:03:27.977 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction test succeeded. 2024-09-18T12:03:27.977 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction 2024-09-18T12:03:27.990 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : librados-devel-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:28.129 INFO:teuthology.orchestra.run.smithi169.stdout: Preparing : 1/1 2024-09-18T12:03:28.137 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-09-18T12:03:28.173 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-mgr-diskprediction-local-2:17.2.7-1645.g7061e 12/12 2024-09-18T12:03:28.239 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : librados-devel-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:28.424 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: librados-devel-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:28.660 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : librados-devel-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:28.660 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:28.660 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-09-18T12:03:28.660 INFO:teuthology.orchestra.run.smithi076.stdout: librados-devel-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:03:28.660 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:28.660 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-09-18T12:03:28.684 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: librados-devel-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:28.936 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install libcephfs2 2024-09-18T12:03:28.940 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : librados-devel-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:28.940 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:28.940 INFO:teuthology.orchestra.run.smithi169.stdout:Installed: 2024-09-18T12:03:28.940 INFO:teuthology.orchestra.run.smithi169.stdout: librados-devel-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:03:28.940 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:28.940 INFO:teuthology.orchestra.run.smithi169.stdout:Complete! 2024-09-18T12:03:29.188 DEBUG:teuthology.orchestra.run.smithi169:> sudo yum -y install libcephfs2 2024-09-18T12:03:29.526 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:29 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:03:29.616 INFO:teuthology.orchestra.run.smithi076.stdout:Package libcephfs2-2:17.2.7-1645.g7061ea6c.el9.x86_64 is already installed. 2024-09-18T12:03:29.660 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-09-18T12:03:29.661 INFO:teuthology.orchestra.run.smithi076.stdout:Nothing to do. 2024-09-18T12:03:29.661 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-09-18T12:03:29.733 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install libcephfs-devel 2024-09-18T12:03:29.784 INFO:teuthology.orchestra.run.smithi169.stdout:Last metadata expiration check: 0:01:29 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:03:29.877 INFO:teuthology.orchestra.run.smithi169.stdout:Package libcephfs2-2:17.2.7-1645.g7061ea6c.el9.x86_64 is already installed. 2024-09-18T12:03:29.921 INFO:teuthology.orchestra.run.smithi169.stdout:Dependencies resolved. 2024-09-18T12:03:29.922 INFO:teuthology.orchestra.run.smithi169.stdout:Nothing to do. 2024-09-18T12:03:29.922 INFO:teuthology.orchestra.run.smithi169.stdout:Complete! 2024-09-18T12:03:29.992 DEBUG:teuthology.orchestra.run.smithi169:> sudo yum -y install libcephfs-devel 2024-09-18T12:03:30.313 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:30 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:03:30.445 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-09-18T12:03:30.446 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:03:30.446 INFO:teuthology.orchestra.run.smithi076.stdout: Package Arch Version Repo Size 2024-09-18T12:03:30.446 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:03:30.446 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-09-18T12:03:30.446 INFO:teuthology.orchestra.run.smithi076.stdout: libcephfs-devel x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 25 k 2024-09-18T12:03:30.446 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:30.446 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-09-18T12:03:30.446 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:03:30.446 INFO:teuthology.orchestra.run.smithi076.stdout:Install 1 Package 2024-09-18T12:03:30.446 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:30.447 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 25 k 2024-09-18T12:03:30.447 INFO:teuthology.orchestra.run.smithi076.stdout:Installed size: 110 k 2024-09-18T12:03:30.447 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-09-18T12:03:30.574 INFO:teuthology.orchestra.run.smithi169.stdout:Last metadata expiration check: 0:01:30 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:03:30.588 INFO:teuthology.orchestra.run.smithi076.stdout:libcephfs-devel-17.2.7-1645.g7061ea6c.el9.x86_6 177 kB/s | 25 kB 00:00 2024-09-18T12:03:30.588 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:03:30.589 INFO:teuthology.orchestra.run.smithi076.stdout:Total 175 kB/s | 25 kB 00:00 2024-09-18T12:03:30.589 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-09-18T12:03:30.592 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-09-18T12:03:30.592 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-09-18T12:03:30.594 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-09-18T12:03:30.594 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-09-18T12:03:30.677 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-09-18T12:03:30.706 INFO:teuthology.orchestra.run.smithi169.stdout:Dependencies resolved. 2024-09-18T12:03:30.707 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:03:30.707 INFO:teuthology.orchestra.run.smithi169.stdout: Package Arch Version Repo Size 2024-09-18T12:03:30.707 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:03:30.707 INFO:teuthology.orchestra.run.smithi169.stdout:Installing: 2024-09-18T12:03:30.707 INFO:teuthology.orchestra.run.smithi169.stdout: libcephfs-devel x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 25 k 2024-09-18T12:03:30.707 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:30.707 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction Summary 2024-09-18T12:03:30.707 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:03:30.708 INFO:teuthology.orchestra.run.smithi169.stdout:Install 1 Package 2024-09-18T12:03:30.708 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:30.708 INFO:teuthology.orchestra.run.smithi169.stdout:Total download size: 25 k 2024-09-18T12:03:30.708 INFO:teuthology.orchestra.run.smithi169.stdout:Installed size: 110 k 2024-09-18T12:03:30.709 INFO:teuthology.orchestra.run.smithi169.stdout:Downloading Packages: 2024-09-18T12:03:30.718 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:17.2.7-1645.g7061e 12/12 2024-09-18T12:03:30.718 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-mgr-diskprediction-local-2:17.2.7-1645.g7061e 1/12 2024-09-18T12:03:30.718 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : libgfortran-11.5.0-2.el9.x86_64 2/12 2024-09-18T12:03:30.718 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : libquadmath-11.5.0-2.el9.x86_64 3/12 2024-09-18T12:03:30.718 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-09-18T12:03:30.718 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-09-18T12:03:30.719 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-09-18T12:03:30.719 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : openblas-0.3.26-2.el9.x86_64 7/12 2024-09-18T12:03:30.719 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : openblas-openmp-0.3.26-2.el9.x86_64 8/12 2024-09-18T12:03:30.719 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-devel-3.9.19-8.el9.x86_64 9/12 2024-09-18T12:03:30.719 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-09-18T12:03:30.719 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-09-18T12:03:30.784 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : libcephfs-devel-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:30.870 INFO:teuthology.orchestra.run.smithi169.stdout:libcephfs-devel-17.2.7-1645.g7061ea6c.el9.x86_6 154 kB/s | 25 kB 00:00 2024-09-18T12:03:30.871 INFO:teuthology.orchestra.run.smithi169.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:03:30.871 INFO:teuthology.orchestra.run.smithi169.stdout:Total 153 kB/s | 25 kB 00:00 2024-09-18T12:03:30.871 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction check 2024-09-18T12:03:30.874 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction check succeeded. 2024-09-18T12:03:30.874 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction test 2024-09-18T12:03:30.876 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction test succeeded. 2024-09-18T12:03:30.876 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction 2024-09-18T12:03:30.958 INFO:teuthology.orchestra.run.smithi169.stdout: Preparing : 1/1 2024-09-18T12:03:31.066 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : libcephfs-devel-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:31.105 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-09-18T12:03:31.105 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:31.106 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-18T12:03:31.106 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr-diskprediction-local-2:17.2.7-1645.g7061ea6c.el9.noarch 2024-09-18T12:03:31.106 INFO:teuthology.orchestra.run.smithi160.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-09-18T12:03:31.106 INFO:teuthology.orchestra.run.smithi160.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-09-18T12:03:31.106 INFO:teuthology.orchestra.run.smithi160.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-09-18T12:03:31.106 INFO:teuthology.orchestra.run.smithi160.stdout: libgfortran-11.5.0-2.el9.x86_64 2024-09-18T12:03:31.106 INFO:teuthology.orchestra.run.smithi160.stdout: libquadmath-11.5.0-2.el9.x86_64 2024-09-18T12:03:31.106 INFO:teuthology.orchestra.run.smithi160.stdout: openblas-0.3.26-2.el9.x86_64 2024-09-18T12:03:31.106 INFO:teuthology.orchestra.run.smithi160.stdout: openblas-openmp-0.3.26-2.el9.x86_64 2024-09-18T12:03:31.106 INFO:teuthology.orchestra.run.smithi160.stdout: python3-devel-3.9.19-8.el9.x86_64 2024-09-18T12:03:31.106 INFO:teuthology.orchestra.run.smithi160.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-09-18T12:03:31.107 INFO:teuthology.orchestra.run.smithi160.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-09-18T12:03:31.107 INFO:teuthology.orchestra.run.smithi160.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-09-18T12:03:31.107 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:31.107 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-18T12:03:31.128 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: libcephfs-devel-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:31.376 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : libcephfs-devel-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:31.376 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:31.376 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-09-18T12:03:31.376 INFO:teuthology.orchestra.run.smithi076.stdout: libcephfs-devel-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:03:31.376 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:31.376 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-09-18T12:03:31.445 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: libcephfs-devel-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:31.468 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph-mgr-rook 2024-09-18T12:03:31.563 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install librados2 2024-09-18T12:03:31.672 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : libcephfs-devel-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:31.672 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:31.672 INFO:teuthology.orchestra.run.smithi169.stdout:Installed: 2024-09-18T12:03:31.672 INFO:teuthology.orchestra.run.smithi169.stdout: libcephfs-devel-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:03:31.672 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:31.672 INFO:teuthology.orchestra.run.smithi169.stdout:Complete! 2024-09-18T12:03:31.852 DEBUG:teuthology.orchestra.run.smithi169:> sudo yum -y install librados2 2024-09-18T12:03:32.061 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:13 ago on Wed 18 Sep 2024 12:02:19 PM UTC. 2024-09-18T12:03:32.143 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:32 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:03:32.195 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-18T12:03:32.197 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:03:32.197 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repository Size 2024-09-18T12:03:32.197 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:03:32.197 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-18T12:03:32.197 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr-rook noarch 2:17.2.7-1645.g7061ea6c.el9 ceph-noarch 47 k 2024-09-18T12:03:32.197 INFO:teuthology.orchestra.run.smithi160.stdout:Installing dependencies: 2024-09-18T12:03:32.197 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-09-18T12:03:32.197 INFO:teuthology.orchestra.run.smithi160.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2024-09-18T12:03:32.197 INFO:teuthology.orchestra.run.smithi160.stdout: python3-google-auth noarch 1:2.34.0-1.el9 epel 220 k 2024-09-18T12:03:32.197 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-09-18T12:03:32.197 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-09-18T12:03:32.198 INFO:teuthology.orchestra.run.smithi160.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-09-18T12:03:32.198 INFO:teuthology.orchestra.run.smithi160.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-09-18T12:03:32.198 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-09-18T12:03:32.198 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-09-18T12:03:32.198 INFO:teuthology.orchestra.run.smithi160.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-09-18T12:03:32.198 INFO:teuthology.orchestra.run.smithi160.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-09-18T12:03:32.198 INFO:teuthology.orchestra.run.smithi160.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-09-18T12:03:32.198 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:32.198 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-18T12:03:32.198 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:03:32.199 INFO:teuthology.orchestra.run.smithi160.stdout:Install 13 Packages 2024-09-18T12:03:32.199 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:32.199 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 2.2 M 2024-09-18T12:03:32.199 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 26 M 2024-09-18T12:03:32.199 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-18T12:03:32.233 INFO:teuthology.orchestra.run.smithi076.stdout:Package librados2-2:17.2.7-1645.g7061ea6c.el9.x86_64 is already installed. 2024-09-18T12:03:32.275 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-09-18T12:03:32.276 INFO:teuthology.orchestra.run.smithi076.stdout:Nothing to do. 2024-09-18T12:03:32.276 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-09-18T12:03:32.358 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install librbd1 2024-09-18T12:03:32.438 INFO:teuthology.orchestra.run.smithi169.stdout:Last metadata expiration check: 0:01:32 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:03:32.527 INFO:teuthology.orchestra.run.smithi169.stdout:Package librados2-2:17.2.7-1645.g7061ea6c.el9.x86_64 is already installed. 2024-09-18T12:03:32.570 INFO:teuthology.orchestra.run.smithi169.stdout:Dependencies resolved. 2024-09-18T12:03:32.571 INFO:teuthology.orchestra.run.smithi169.stdout:Nothing to do. 2024-09-18T12:03:32.571 INFO:teuthology.orchestra.run.smithi169.stdout:Complete! 2024-09-18T12:03:32.574 INFO:teuthology.orchestra.run.smithi160.stdout:(1/13): python3-jsonpointer-2.0-4.el9.noarch.rp 209 kB/s | 19 kB 00:00 2024-09-18T12:03:32.599 INFO:teuthology.orchestra.run.smithi160.stdout:(2/13): python3-jsonpatch-1.21-16.el9.noarch.rp 219 kB/s | 26 kB 00:00 2024-09-18T12:03:32.646 DEBUG:teuthology.orchestra.run.smithi169:> sudo yum -y install librbd1 2024-09-18T12:03:32.658 INFO:teuthology.orchestra.run.smithi160.stdout:(3/13): ceph-mgr-rook-17.2.7-1645.g7061ea6c.el9 270 kB/s | 47 kB 00:00 2024-09-18T12:03:32.708 INFO:teuthology.orchestra.run.smithi160.stdout:(4/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 1.6 MB/s | 222 kB 00:00 2024-09-18T12:03:32.734 INFO:teuthology.orchestra.run.smithi160.stdout:(5/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.2 MB/s | 159 kB 00:00 2024-09-18T12:03:32.767 INFO:teuthology.orchestra.run.smithi160.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 915 kB/s | 54 kB 00:00 2024-09-18T12:03:32.801 INFO:teuthology.orchestra.run.smithi160.stdout:(7/13): python3-cachetools-4.2.4-1.el9.noarch.r 482 kB/s | 32 kB 00:00 2024-09-18T12:03:32.834 INFO:teuthology.orchestra.run.smithi160.stdout:(8/13): python3-certifi-2023.05.07-4.el9.noarch 216 kB/s | 14 kB 00:00 2024-09-18T12:03:32.868 INFO:teuthology.orchestra.run.smithi160.stdout:(9/13): python3-google-auth-2.34.0-1.el9.noarch 3.3 MB/s | 220 kB 00:00 2024-09-18T12:03:32.893 INFO:teuthology.orchestra.run.smithi160.stdout:(10/13): python3-rsa-4.9-2.el9.noarch.rpm 2.3 MB/s | 59 kB 00:00 2024-09-18T12:03:32.918 INFO:teuthology.orchestra.run.smithi160.stdout:(11/13): python3-pyasn1-modules-0.4.8-6.el9.noa 1.0 MB/s | 279 kB 00:00 2024-09-18T12:03:32.930 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:32 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:03:32.943 INFO:teuthology.orchestra.run.smithi160.stdout:(12/13): python3-websocket-client-1.2.3-2.el9.n 1.7 MB/s | 90 kB 00:00 2024-09-18T12:03:32.977 INFO:teuthology.orchestra.run.smithi160.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 7.1 MB/s | 1.0 MB 00:00 2024-09-18T12:03:32.979 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:03:32.979 INFO:teuthology.orchestra.run.smithi160.stdout:Total 2.8 MB/s | 2.2 MB 00:00 2024-09-18T12:03:33.020 INFO:teuthology.orchestra.run.smithi076.stdout:Package librbd1-2:17.2.7-1645.g7061ea6c.el9.x86_64 is already installed. 2024-09-18T12:03:33.042 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-18T12:03:33.058 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-18T12:03:33.058 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-18T12:03:33.062 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-09-18T12:03:33.063 INFO:teuthology.orchestra.run.smithi076.stdout:Nothing to do. 2024-09-18T12:03:33.063 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-09-18T12:03:33.141 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install python3-rados 2024-09-18T12:03:33.146 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-18T12:03:33.148 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-18T12:03:33.230 INFO:teuthology.orchestra.run.smithi169.stdout:Last metadata expiration check: 0:01:33 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:03:33.322 INFO:teuthology.orchestra.run.smithi169.stdout:Package librbd1-2:17.2.7-1645.g7061ea6c.el9.x86_64 is already installed. 2024-09-18T12:03:33.366 INFO:teuthology.orchestra.run.smithi169.stdout:Dependencies resolved. 2024-09-18T12:03:33.367 INFO:teuthology.orchestra.run.smithi169.stdout:Nothing to do. 2024-09-18T12:03:33.367 INFO:teuthology.orchestra.run.smithi169.stdout:Complete! 2024-09-18T12:03:33.447 DEBUG:teuthology.orchestra.run.smithi169:> sudo yum -y install python3-rados 2024-09-18T12:03:33.668 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-18T12:03:33.721 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:33 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:03:33.810 INFO:teuthology.orchestra.run.smithi076.stdout:Package python3-rados-2:17.2.7-1645.g7061ea6c.el9.x86_64 is already installed. 2024-09-18T12:03:33.833 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-09-18T12:03:33.852 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-09-18T12:03:33.853 INFO:teuthology.orchestra.run.smithi076.stdout:Nothing to do. 2024-09-18T12:03:33.853 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-09-18T12:03:33.886 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-09-18T12:03:33.935 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install python3-rgw 2024-09-18T12:03:33.942 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-09-18T12:03:33.979 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-09-18T12:03:34.021 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 5/13 2024-09-18T12:03:34.028 INFO:teuthology.orchestra.run.smithi169.stdout:Last metadata expiration check: 0:01:34 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:03:34.118 INFO:teuthology.orchestra.run.smithi169.stdout:Package python3-rados-2:17.2.7-1645.g7061ea6c.el9.x86_64 is already installed. 2024-09-18T12:03:34.123 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-09-18T12:03:34.161 INFO:teuthology.orchestra.run.smithi169.stdout:Dependencies resolved. 2024-09-18T12:03:34.162 INFO:teuthology.orchestra.run.smithi169.stdout:Nothing to do. 2024-09-18T12:03:34.162 INFO:teuthology.orchestra.run.smithi169.stdout:Complete! 2024-09-18T12:03:34.228 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-google-auth-1:2.34.0-1.el9.noarch 7/13 2024-09-18T12:03:34.230 DEBUG:teuthology.orchestra.run.smithi169:> sudo yum -y install python3-rgw 2024-09-18T12:03:34.364 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-09-18T12:03:34.519 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:34 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:03:34.609 INFO:teuthology.orchestra.run.smithi076.stdout:Package python3-rgw-2:17.2.7-1645.g7061ea6c.el9.x86_64 is already installed. 2024-09-18T12:03:34.652 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-09-18T12:03:34.653 INFO:teuthology.orchestra.run.smithi076.stdout:Nothing to do. 2024-09-18T12:03:34.653 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-09-18T12:03:34.735 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install python3-cephfs 2024-09-18T12:03:34.806 INFO:teuthology.orchestra.run.smithi169.stdout:Last metadata expiration check: 0:01:34 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:03:34.895 INFO:teuthology.orchestra.run.smithi169.stdout:Package python3-rgw-2:17.2.7-1645.g7061ea6c.el9.x86_64 is already installed. 2024-09-18T12:03:34.938 INFO:teuthology.orchestra.run.smithi169.stdout:Dependencies resolved. 2024-09-18T12:03:34.939 INFO:teuthology.orchestra.run.smithi169.stdout:Nothing to do. 2024-09-18T12:03:34.939 INFO:teuthology.orchestra.run.smithi169.stdout:Complete! 2024-09-18T12:03:35.003 DEBUG:teuthology.orchestra.run.smithi169:> sudo yum -y install python3-cephfs 2024-09-18T12:03:35.083 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-09-18T12:03:35.128 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-09-18T12:03:35.161 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-09-18T12:03:35.207 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-09-18T12:03:35.230 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-mgr-rook-2:17.2.7-1645.g7061ea6c.el9.noarch 13/13 2024-09-18T12:03:35.310 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:35 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:03:35.398 INFO:teuthology.orchestra.run.smithi076.stdout:Package python3-cephfs-2:17.2.7-1645.g7061ea6c.el9.x86_64 is already installed. 2024-09-18T12:03:35.440 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-09-18T12:03:35.441 INFO:teuthology.orchestra.run.smithi076.stdout:Nothing to do. 2024-09-18T12:03:35.442 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-09-18T12:03:35.518 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install python3-rbd 2024-09-18T12:03:35.583 INFO:teuthology.orchestra.run.smithi169.stdout:Last metadata expiration check: 0:01:35 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:03:35.673 INFO:teuthology.orchestra.run.smithi169.stdout:Package python3-cephfs-2:17.2.7-1645.g7061ea6c.el9.x86_64 is already installed. 2024-09-18T12:03:35.716 INFO:teuthology.orchestra.run.smithi169.stdout:Dependencies resolved. 2024-09-18T12:03:35.717 INFO:teuthology.orchestra.run.smithi169.stdout:Nothing to do. 2024-09-18T12:03:35.717 INFO:teuthology.orchestra.run.smithi169.stdout:Complete! 2024-09-18T12:03:35.799 DEBUG:teuthology.orchestra.run.smithi169:> sudo yum -y install python3-rbd 2024-09-18T12:03:35.929 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-mgr-rook-2:17.2.7-1645.g7061ea6c.el9.noarch 13/13 2024-09-18T12:03:35.929 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-mgr-rook-2:17.2.7-1645.g7061ea6c.el9.noarch 1/13 2024-09-18T12:03:35.930 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-09-18T12:03:35.930 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-09-18T12:03:35.930 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-09-18T12:03:35.930 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-09-18T12:03:35.930 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-09-18T12:03:35.930 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-09-18T12:03:35.930 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-09-18T12:03:35.930 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 9/13 2024-09-18T12:03:35.930 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-google-auth-1:2.34.0-1.el9.noarch 10/13 2024-09-18T12:03:35.930 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-09-18T12:03:35.930 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-09-18T12:03:36.097 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:36 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:03:36.187 INFO:teuthology.orchestra.run.smithi076.stdout:Package python3-rbd-2:17.2.7-1645.g7061ea6c.el9.x86_64 is already installed. 2024-09-18T12:03:36.230 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-09-18T12:03:36.231 INFO:teuthology.orchestra.run.smithi076.stdout:Nothing to do. 2024-09-18T12:03:36.231 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-09-18T12:03:36.270 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-09-18T12:03:36.270 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:36.270 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-18T12:03:36.270 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr-rook-2:17.2.7-1645.g7061ea6c.el9.noarch 2024-09-18T12:03:36.270 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-09-18T12:03:36.270 INFO:teuthology.orchestra.run.smithi160.stdout: python3-certifi-2023.05.07-4.el9.noarch 2024-09-18T12:03:36.270 INFO:teuthology.orchestra.run.smithi160.stdout: python3-google-auth-1:2.34.0-1.el9.noarch 2024-09-18T12:03:36.270 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-09-18T12:03:36.270 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-09-18T12:03:36.271 INFO:teuthology.orchestra.run.smithi160.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-09-18T12:03:36.271 INFO:teuthology.orchestra.run.smithi160.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-09-18T12:03:36.271 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-09-18T12:03:36.271 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-09-18T12:03:36.271 INFO:teuthology.orchestra.run.smithi160.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-09-18T12:03:36.271 INFO:teuthology.orchestra.run.smithi160.stdout: python3-rsa-4.9-2.el9.noarch 2024-09-18T12:03:36.271 INFO:teuthology.orchestra.run.smithi160.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-09-18T12:03:36.271 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:36.271 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-18T12:03:36.312 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install rbd-fuse 2024-09-18T12:03:36.376 INFO:teuthology.orchestra.run.smithi169.stdout:Last metadata expiration check: 0:01:36 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:03:36.465 INFO:teuthology.orchestra.run.smithi169.stdout:Package python3-rbd-2:17.2.7-1645.g7061ea6c.el9.x86_64 is already installed. 2024-09-18T12:03:36.507 INFO:teuthology.orchestra.run.smithi169.stdout:Dependencies resolved. 2024-09-18T12:03:36.508 INFO:teuthology.orchestra.run.smithi169.stdout:Nothing to do. 2024-09-18T12:03:36.508 INFO:teuthology.orchestra.run.smithi169.stdout:Complete! 2024-09-18T12:03:36.519 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph-mgr-cephadm 2024-09-18T12:03:36.590 DEBUG:teuthology.orchestra.run.smithi169:> sudo yum -y install rbd-fuse 2024-09-18T12:03:36.887 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:36 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:03:37.020 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-09-18T12:03:37.021 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:03:37.021 INFO:teuthology.orchestra.run.smithi076.stdout: Package Architecture Version Repository Size 2024-09-18T12:03:37.021 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:03:37.021 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-09-18T12:03:37.021 INFO:teuthology.orchestra.run.smithi076.stdout: rbd-fuse x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 82 k 2024-09-18T12:03:37.022 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:37.022 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-09-18T12:03:37.022 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:03:37.022 INFO:teuthology.orchestra.run.smithi076.stdout:Install 1 Package 2024-09-18T12:03:37.022 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:37.022 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 82 k 2024-09-18T12:03:37.022 INFO:teuthology.orchestra.run.smithi076.stdout:Installed size: 222 k 2024-09-18T12:03:37.022 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-09-18T12:03:37.099 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:18 ago on Wed 18 Sep 2024 12:02:19 PM UTC. 2024-09-18T12:03:37.172 INFO:teuthology.orchestra.run.smithi169.stdout:Last metadata expiration check: 0:01:37 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:03:37.217 INFO:teuthology.orchestra.run.smithi076.stdout:rbd-fuse-17.2.7-1645.g7061ea6c.el9.x86_64.rpm 420 kB/s | 82 kB 00:00 2024-09-18T12:03:37.217 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:03:37.217 INFO:teuthology.orchestra.run.smithi076.stdout:Total 418 kB/s | 82 kB 00:00 2024-09-18T12:03:37.218 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-09-18T12:03:37.224 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-09-18T12:03:37.224 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-09-18T12:03:37.232 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-18T12:03:37.233 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:03:37.233 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repository Size 2024-09-18T12:03:37.233 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:03:37.233 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-18T12:03:37.233 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr-cephadm noarch 2:17.2.7-1645.g7061ea6c.el9 ceph-noarch 124 k 2024-09-18T12:03:37.233 INFO:teuthology.orchestra.run.smithi160.stdout:Installing dependencies: 2024-09-18T12:03:37.233 INFO:teuthology.orchestra.run.smithi160.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-09-18T12:03:37.233 INFO:teuthology.orchestra.run.smithi160.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-09-18T12:03:37.233 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jinja2 noarch 2.11.3-6.el9 appstream 248 k 2024-09-18T12:03:37.233 INFO:teuthology.orchestra.run.smithi160.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-09-18T12:03:37.234 INFO:teuthology.orchestra.run.smithi160.stdout: python3-typing-extensions noarch 4.12.2-2.el9 epel 74 k 2024-09-18T12:03:37.234 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:37.234 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-18T12:03:37.234 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:03:37.234 INFO:teuthology.orchestra.run.smithi160.stdout:Install 6 Packages 2024-09-18T12:03:37.234 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:37.234 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 7.0 M 2024-09-18T12:03:37.235 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 33 M 2024-09-18T12:03:37.235 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-18T12:03:37.286 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-09-18T12:03:37.287 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-09-18T12:03:37.304 INFO:teuthology.orchestra.run.smithi169.stdout:Dependencies resolved. 2024-09-18T12:03:37.304 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:03:37.304 INFO:teuthology.orchestra.run.smithi169.stdout: Package Architecture Version Repository Size 2024-09-18T12:03:37.305 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:03:37.305 INFO:teuthology.orchestra.run.smithi169.stdout:Installing: 2024-09-18T12:03:37.305 INFO:teuthology.orchestra.run.smithi169.stdout: rbd-fuse x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 82 k 2024-09-18T12:03:37.305 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:37.305 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction Summary 2024-09-18T12:03:37.305 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:03:37.305 INFO:teuthology.orchestra.run.smithi169.stdout:Install 1 Package 2024-09-18T12:03:37.305 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:37.306 INFO:teuthology.orchestra.run.smithi169.stdout:Total download size: 82 k 2024-09-18T12:03:37.306 INFO:teuthology.orchestra.run.smithi169.stdout:Installed size: 222 k 2024-09-18T12:03:37.306 INFO:teuthology.orchestra.run.smithi169.stdout:Downloading Packages: 2024-09-18T12:03:37.435 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-09-18T12:03:37.507 INFO:teuthology.orchestra.run.smithi169.stdout:rbd-fuse-17.2.7-1645.g7061ea6c.el9.x86_64.rpm 407 kB/s | 82 kB 00:00 2024-09-18T12:03:37.508 INFO:teuthology.orchestra.run.smithi169.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:03:37.508 INFO:teuthology.orchestra.run.smithi169.stdout:Total 404 kB/s | 82 kB 00:00 2024-09-18T12:03:37.508 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction check 2024-09-18T12:03:37.514 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction check succeeded. 2024-09-18T12:03:37.515 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction test 2024-09-18T12:03:37.539 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : rbd-fuse-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:37.577 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction test succeeded. 2024-09-18T12:03:37.577 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction 2024-09-18T12:03:37.686 INFO:teuthology.orchestra.run.smithi160.stdout:(1/6): ceph-mgr-cephadm-17.2.7-1645.g7061ea6c.e 617 kB/s | 124 kB 00:00 2024-09-18T12:03:37.733 INFO:teuthology.orchestra.run.smithi169.stdout: Preparing : 1/1 2024-09-18T12:03:37.745 INFO:teuthology.orchestra.run.smithi160.stdout:(2/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 9.2 MB/s | 548 kB 00:00 2024-09-18T12:03:37.762 INFO:teuthology.orchestra.run.smithi160.stdout:(3/6): python3-natsort-7.1.1-5.el9.noarch.rpm 3.4 MB/s | 58 kB 00:00 2024-09-18T12:03:37.787 INFO:teuthology.orchestra.run.smithi160.stdout:(4/6): python3-typing-extensions-4.12.2-2.el9.n 2.9 MB/s | 74 kB 00:00 2024-09-18T12:03:37.812 INFO:teuthology.orchestra.run.smithi160.stdout:(5/6): python3-jinja2-2.11.3-6.el9.noarch.rpm 760 kB/s | 248 kB 00:00 2024-09-18T12:03:37.820 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : rbd-fuse-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:37.920 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: rbd-fuse-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:38.172 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : rbd-fuse-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:38.173 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:38.173 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-09-18T12:03:38.173 INFO:teuthology.orchestra.run.smithi076.stdout: rbd-fuse-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:03:38.173 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:38.173 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-09-18T12:03:38.207 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: rbd-fuse-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:38.451 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install rbd-mirror 2024-09-18T12:03:38.463 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : rbd-fuse-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:38.463 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:38.463 INFO:teuthology.orchestra.run.smithi169.stdout:Installed: 2024-09-18T12:03:38.463 INFO:teuthology.orchestra.run.smithi169.stdout: rbd-fuse-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:03:38.464 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:38.464 INFO:teuthology.orchestra.run.smithi169.stdout:Complete! 2024-09-18T12:03:38.712 DEBUG:teuthology.orchestra.run.smithi169:> sudo yum -y install rbd-mirror 2024-09-18T12:03:39.038 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:39 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:03:39.172 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-09-18T12:03:39.173 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:03:39.173 INFO:teuthology.orchestra.run.smithi076.stdout: Package Arch Version Repo Size 2024-09-18T12:03:39.173 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:03:39.173 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-09-18T12:03:39.173 INFO:teuthology.orchestra.run.smithi076.stdout: rbd-mirror x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 2.9 M 2024-09-18T12:03:39.173 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:39.174 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-09-18T12:03:39.174 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:03:39.174 INFO:teuthology.orchestra.run.smithi076.stdout:Install 1 Package 2024-09-18T12:03:39.174 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:39.174 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 2.9 M 2024-09-18T12:03:39.174 INFO:teuthology.orchestra.run.smithi076.stdout:Installed size: 12 M 2024-09-18T12:03:39.174 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-09-18T12:03:39.304 INFO:teuthology.orchestra.run.smithi169.stdout:Last metadata expiration check: 0:01:39 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:03:39.438 INFO:teuthology.orchestra.run.smithi169.stdout:Dependencies resolved. 2024-09-18T12:03:39.438 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:03:39.438 INFO:teuthology.orchestra.run.smithi169.stdout: Package Arch Version Repo Size 2024-09-18T12:03:39.438 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:03:39.438 INFO:teuthology.orchestra.run.smithi169.stdout:Installing: 2024-09-18T12:03:39.438 INFO:teuthology.orchestra.run.smithi169.stdout: rbd-mirror x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 2.9 M 2024-09-18T12:03:39.439 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:39.439 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction Summary 2024-09-18T12:03:39.439 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:03:39.439 INFO:teuthology.orchestra.run.smithi169.stdout:Install 1 Package 2024-09-18T12:03:39.439 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:39.439 INFO:teuthology.orchestra.run.smithi169.stdout:Total download size: 2.9 M 2024-09-18T12:03:39.440 INFO:teuthology.orchestra.run.smithi169.stdout:Installed size: 12 M 2024-09-18T12:03:39.440 INFO:teuthology.orchestra.run.smithi169.stdout:Downloading Packages: 2024-09-18T12:03:39.511 INFO:teuthology.orchestra.run.smithi076.stdout:rbd-mirror-17.2.7-1645.g7061ea6c.el9.x86_64.rpm 8.7 MB/s | 2.9 MB 00:00 2024-09-18T12:03:39.512 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:03:39.512 INFO:teuthology.orchestra.run.smithi076.stdout:Total 8.7 MB/s | 2.9 MB 00:00 2024-09-18T12:03:39.513 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-09-18T12:03:39.521 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-09-18T12:03:39.521 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-09-18T12:03:39.601 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-09-18T12:03:39.601 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-09-18T12:03:39.777 INFO:teuthology.orchestra.run.smithi169.stdout:rbd-mirror-17.2.7-1645.g7061ea6c.el9.x86_64.rpm 8.7 MB/s | 2.9 MB 00:00 2024-09-18T12:03:39.778 INFO:teuthology.orchestra.run.smithi169.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:03:39.778 INFO:teuthology.orchestra.run.smithi169.stdout:Total 8.7 MB/s | 2.9 MB 00:00 2024-09-18T12:03:39.778 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction check 2024-09-18T12:03:39.787 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction check succeeded. 2024-09-18T12:03:39.788 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction test 2024-09-18T12:03:39.867 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction test succeeded. 2024-09-18T12:03:39.867 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction 2024-09-18T12:03:39.962 INFO:teuthology.orchestra.run.smithi160.stdout:(6/6): python3-babel-2.9.1-2.el9.noarch.rpm 2.4 MB/s | 6.0 MB 00:02 2024-09-18T12:03:39.964 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:03:39.965 INFO:teuthology.orchestra.run.smithi160.stdout:Total 2.6 MB/s | 7.0 MB 00:02 2024-09-18T12:03:40.018 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-09-18T12:03:40.037 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-18T12:03:40.048 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-18T12:03:40.048 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-18T12:03:40.087 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : rbd-mirror-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:40.113 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: rbd-mirror-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:40.113 INFO:teuthology.orchestra.run.smithi076.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-18T12:03:40.113 INFO:teuthology.orchestra.run.smithi076.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-09-18T12:03:40.113 INFO:teuthology.orchestra.run.smithi076.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-18T12:03:40.113 INFO:teuthology.orchestra.run.smithi076.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-18T12:03:40.113 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:40.147 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-18T12:03:40.148 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-18T12:03:40.275 INFO:teuthology.orchestra.run.smithi169.stdout: Preparing : 1/1 2024-09-18T12:03:40.336 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : rbd-mirror-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:40.361 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: rbd-mirror-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:40.361 INFO:teuthology.orchestra.run.smithi169.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-18T12:03:40.361 INFO:teuthology.orchestra.run.smithi169.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-09-18T12:03:40.361 INFO:teuthology.orchestra.run.smithi169.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-18T12:03:40.361 INFO:teuthology.orchestra.run.smithi169.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-18T12:03:40.361 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:40.461 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-18T12:03:40.619 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-typing-extensions-4.12.2-2.el9.noarch 1/6 2024-09-18T12:03:40.672 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-09-18T12:03:41.195 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-09-18T12:03:41.225 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : rbd-mirror-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:41.225 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:41.225 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-09-18T12:03:41.225 INFO:teuthology.orchestra.run.smithi076.stdout: rbd-mirror-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:03:41.226 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:41.226 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-09-18T12:03:41.276 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-09-18T12:03:41.339 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-jinja2-2.11.3-6.el9.noarch 5/6 2024-09-18T12:03:41.368 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-mgr-cephadm-2:17.2.7-1645.g7061ea6c.el9.noarch 6/6 2024-09-18T12:03:41.462 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : rbd-mirror-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:41.462 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:41.463 INFO:teuthology.orchestra.run.smithi169.stdout:Installed: 2024-09-18T12:03:41.463 INFO:teuthology.orchestra.run.smithi169.stdout: rbd-mirror-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:03:41.463 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:41.463 INFO:teuthology.orchestra.run.smithi169.stdout:Complete! 2024-09-18T12:03:41.500 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install rbd-nbd 2024-09-18T12:03:41.711 DEBUG:teuthology.orchestra.run.smithi169:> sudo yum -y install rbd-nbd 2024-09-18T12:03:42.092 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:42 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:03:42.126 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-mgr-cephadm-2:17.2.7-1645.g7061ea6c.el9.noarch 6/6 2024-09-18T12:03:42.126 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-mgr-cephadm-2:17.2.7-1645.g7061ea6c.el9.noarch 1/6 2024-09-18T12:03:42.126 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-09-18T12:03:42.126 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-jinja2-2.11.3-6.el9.noarch 3/6 2024-09-18T12:03:42.126 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-09-18T12:03:42.126 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-09-18T12:03:42.233 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-09-18T12:03:42.234 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:03:42.234 INFO:teuthology.orchestra.run.smithi076.stdout: Package Architecture Version Repository Size 2024-09-18T12:03:42.234 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:03:42.234 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-09-18T12:03:42.234 INFO:teuthology.orchestra.run.smithi076.stdout: rbd-nbd x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 165 k 2024-09-18T12:03:42.234 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:42.234 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-09-18T12:03:42.234 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-09-18T12:03:42.234 INFO:teuthology.orchestra.run.smithi076.stdout:Install 1 Package 2024-09-18T12:03:42.234 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:42.235 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 165 k 2024-09-18T12:03:42.235 INFO:teuthology.orchestra.run.smithi076.stdout:Installed size: 477 k 2024-09-18T12:03:42.235 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-09-18T12:03:42.311 INFO:teuthology.orchestra.run.smithi169.stdout:Last metadata expiration check: 0:01:42 ago on Wed 18 Sep 2024 12:02:00 PM UTC. 2024-09-18T12:03:42.409 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-typing-extensions-4.12.2-2.el9.noarch 6/6 2024-09-18T12:03:42.409 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:42.409 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-18T12:03:42.410 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr-cephadm-2:17.2.7-1645.g7061ea6c.el9.noarch 2024-09-18T12:03:42.410 INFO:teuthology.orchestra.run.smithi160.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-09-18T12:03:42.410 INFO:teuthology.orchestra.run.smithi160.stdout: python3-babel-2.9.1-2.el9.noarch 2024-09-18T12:03:42.410 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jinja2-2.11.3-6.el9.noarch 2024-09-18T12:03:42.410 INFO:teuthology.orchestra.run.smithi160.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-09-18T12:03:42.410 INFO:teuthology.orchestra.run.smithi160.stdout: python3-typing-extensions-4.12.2-2.el9.noarch 2024-09-18T12:03:42.410 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:42.410 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-18T12:03:42.449 INFO:teuthology.orchestra.run.smithi076.stdout:rbd-nbd-17.2.7-1645.g7061ea6c.el9.x86_64.rpm 772 kB/s | 165 kB 00:00 2024-09-18T12:03:42.450 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:03:42.450 INFO:teuthology.orchestra.run.smithi076.stdout:Total 766 kB/s | 165 kB 00:00 2024-09-18T12:03:42.450 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-09-18T12:03:42.452 INFO:teuthology.orchestra.run.smithi169.stdout:Dependencies resolved. 2024-09-18T12:03:42.452 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:03:42.452 INFO:teuthology.orchestra.run.smithi169.stdout: Package Architecture Version Repository Size 2024-09-18T12:03:42.452 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:03:42.452 INFO:teuthology.orchestra.run.smithi169.stdout:Installing: 2024-09-18T12:03:42.452 INFO:teuthology.orchestra.run.smithi169.stdout: rbd-nbd x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 165 k 2024-09-18T12:03:42.453 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:42.453 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction Summary 2024-09-18T12:03:42.453 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2024-09-18T12:03:42.453 INFO:teuthology.orchestra.run.smithi169.stdout:Install 1 Package 2024-09-18T12:03:42.453 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:42.453 INFO:teuthology.orchestra.run.smithi169.stdout:Total download size: 165 k 2024-09-18T12:03:42.454 INFO:teuthology.orchestra.run.smithi169.stdout:Installed size: 477 k 2024-09-18T12:03:42.454 INFO:teuthology.orchestra.run.smithi169.stdout:Downloading Packages: 2024-09-18T12:03:42.459 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-09-18T12:03:42.459 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-09-18T12:03:42.525 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-09-18T12:03:42.526 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-09-18T12:03:42.650 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph-fuse 2024-09-18T12:03:42.665 INFO:teuthology.orchestra.run.smithi169.stdout:rbd-nbd-17.2.7-1645.g7061ea6c.el9.x86_64.rpm 782 kB/s | 165 kB 00:00 2024-09-18T12:03:42.666 INFO:teuthology.orchestra.run.smithi169.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:03:42.666 INFO:teuthology.orchestra.run.smithi169.stdout:Total 775 kB/s | 165 kB 00:00 2024-09-18T12:03:42.666 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction check 2024-09-18T12:03:42.675 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction check succeeded. 2024-09-18T12:03:42.675 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction test 2024-09-18T12:03:42.680 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-09-18T12:03:42.741 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction test succeeded. 2024-09-18T12:03:42.741 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction 2024-09-18T12:03:42.790 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : rbd-nbd-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:42.895 INFO:teuthology.orchestra.run.smithi169.stdout: Preparing : 1/1 2024-09-18T12:03:43.006 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : rbd-nbd-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:43.225 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: rbd-nbd-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:43.228 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:24 ago on Wed 18 Sep 2024 12:02:19 PM UTC. 2024-09-18T12:03:43.362 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-18T12:03:43.362 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:03:43.362 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repository Size 2024-09-18T12:03:43.362 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:03:43.362 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-18T12:03:43.362 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-fuse x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 813 k 2024-09-18T12:03:43.363 INFO:teuthology.orchestra.run.smithi160.stdout:Installing dependencies: 2024-09-18T12:03:43.363 INFO:teuthology.orchestra.run.smithi160.stdout: fuse x86_64 2.9.9-16.el9 baseos 80 k 2024-09-18T12:03:43.363 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:43.363 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-18T12:03:43.363 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:03:43.363 INFO:teuthology.orchestra.run.smithi160.stdout:Install 2 Packages 2024-09-18T12:03:43.363 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:43.363 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 893 k 2024-09-18T12:03:43.364 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 2.6 M 2024-09-18T12:03:43.364 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-18T12:03:43.455 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: rbd-nbd-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:43.474 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : rbd-nbd-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:43.475 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:43.475 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-09-18T12:03:43.475 INFO:teuthology.orchestra.run.smithi076.stdout: rbd-nbd-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:03:43.475 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:03:43.475 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-09-18T12:03:43.712 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : rbd-nbd-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:43.712 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:43.712 INFO:teuthology.orchestra.run.smithi169.stdout:Installed: 2024-09-18T12:03:43.712 INFO:teuthology.orchestra.run.smithi169.stdout: rbd-nbd-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:03:43.712 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:03:43.712 INFO:teuthology.orchestra.run.smithi169.stdout:Complete! 2024-09-18T12:03:43.773 DEBUG:teuthology.parallel:result is None 2024-09-18T12:03:43.773 INFO:teuthology.orchestra.run.smithi160.stdout:(1/2): fuse-2.9.9-16.el9.x86_64.rpm 532 kB/s | 80 kB 00:00 2024-09-18T12:03:43.913 INFO:teuthology.orchestra.run.smithi160.stdout:(2/2): ceph-fuse-17.2.7-1645.g7061ea6c.el9.x86_ 2.7 MB/s | 813 kB 00:00 2024-09-18T12:03:43.914 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:03:43.914 INFO:teuthology.orchestra.run.smithi160.stdout:Total 1.6 MB/s | 893 kB 00:00 2024-09-18T12:03:43.926 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-18T12:03:43.948 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-18T12:03:43.949 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-18T12:03:43.977 DEBUG:teuthology.parallel:result is None 2024-09-18T12:03:44.028 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-18T12:03:44.028 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-18T12:03:44.212 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-18T12:03:44.357 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : fuse-2.9.9-16.el9.x86_64 1/2 2024-09-18T12:03:44.420 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-fuse-2:17.2.7-1645.g7061ea6c.el9.x86_64 2/2 2024-09-18T12:03:45.076 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-fuse-2:17.2.7-1645.g7061ea6c.el9.x86_64 2/2 2024-09-18T12:03:45.076 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-fuse-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/2 2024-09-18T12:03:45.357 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : fuse-2.9.9-16.el9.x86_64 2/2 2024-09-18T12:03:45.357 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:45.357 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-18T12:03:45.358 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-fuse-2:17.2.7-1645.g7061ea6c.el9.x86_64 fuse-2.9.9-16.el9.x86_64 2024-09-18T12:03:45.358 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:45.358 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-18T12:03:45.672 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph-volume 2024-09-18T12:03:46.264 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:27 ago on Wed 18 Sep 2024 12:02:19 PM UTC. 2024-09-18T12:03:46.402 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-18T12:03:46.403 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:03:46.403 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repository Size 2024-09-18T12:03:46.403 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:03:46.403 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-18T12:03:46.403 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-volume noarch 2:17.2.7-1645.g7061ea6c.el9 ceph-noarch 270 k 2024-09-18T12:03:46.403 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:46.404 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-18T12:03:46.404 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:03:46.404 INFO:teuthology.orchestra.run.smithi160.stdout:Install 1 Package 2024-09-18T12:03:46.404 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:46.404 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 270 k 2024-09-18T12:03:46.404 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 1.3 M 2024-09-18T12:03:46.404 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-18T12:03:46.617 INFO:teuthology.orchestra.run.smithi160.stdout:ceph-volume-17.2.7-1645.g7061ea6c.el9.noarch.rp 1.2 MB/s | 270 kB 00:00 2024-09-18T12:03:46.618 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:03:46.618 INFO:teuthology.orchestra.run.smithi160.stdout:Total 1.2 MB/s | 270 kB 00:00 2024-09-18T12:03:46.618 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-18T12:03:46.627 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-18T12:03:46.627 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-18T12:03:46.653 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-18T12:03:46.654 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-18T12:03:46.869 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-18T12:03:46.936 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-volume-2:17.2.7-1645.g7061ea6c.el9.noarch 1/1 2024-09-18T12:03:46.952 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-volume-2:17.2.7-1645.g7061ea6c.el9.noarch 1/1 2024-09-18T12:03:46.952 INFO:teuthology.orchestra.run.smithi160.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-18T12:03:46.952 INFO:teuthology.orchestra.run.smithi160.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-09-18T12:03:46.952 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:47.926 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-volume-2:17.2.7-1645.g7061ea6c.el9.noarch 1/1 2024-09-18T12:03:47.926 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:47.927 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-18T12:03:47.927 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-volume-2:17.2.7-1645.g7061ea6c.el9.noarch 2024-09-18T12:03:47.927 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:47.927 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-18T12:03:48.212 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install librados-devel 2024-09-18T12:03:48.810 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:29 ago on Wed 18 Sep 2024 12:02:19 PM UTC. 2024-09-18T12:03:48.943 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-18T12:03:48.943 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:03:48.944 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repo Size 2024-09-18T12:03:48.944 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:03:48.944 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-18T12:03:48.944 INFO:teuthology.orchestra.run.smithi160.stdout: librados-devel x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 126 k 2024-09-18T12:03:48.944 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:48.944 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-18T12:03:48.944 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:03:48.944 INFO:teuthology.orchestra.run.smithi160.stdout:Install 1 Package 2024-09-18T12:03:48.944 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:48.944 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 126 k 2024-09-18T12:03:48.944 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 448 k 2024-09-18T12:03:48.945 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-18T12:03:49.139 INFO:teuthology.orchestra.run.smithi160.stdout:librados-devel-17.2.7-1645.g7061ea6c.el9.x86_64 651 kB/s | 126 kB 00:00 2024-09-18T12:03:49.140 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:03:49.140 INFO:teuthology.orchestra.run.smithi160.stdout:Total 646 kB/s | 126 kB 00:00 2024-09-18T12:03:49.140 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-18T12:03:49.145 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-18T12:03:49.145 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-18T12:03:49.208 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-18T12:03:49.209 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-18T12:03:49.353 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-18T12:03:49.452 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : librados-devel-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:49.894 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: librados-devel-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:50.174 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : librados-devel-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:50.175 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:50.175 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-18T12:03:50.175 INFO:teuthology.orchestra.run.smithi160.stdout: librados-devel-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:03:50.175 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:50.175 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-18T12:03:50.398 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install libcephfs2 2024-09-18T12:03:50.997 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:31 ago on Wed 18 Sep 2024 12:02:19 PM UTC. 2024-09-18T12:03:51.089 INFO:teuthology.orchestra.run.smithi160.stdout:Package libcephfs2-2:17.2.7-1645.g7061ea6c.el9.x86_64 is already installed. 2024-09-18T12:03:51.133 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-18T12:03:51.134 INFO:teuthology.orchestra.run.smithi160.stdout:Nothing to do. 2024-09-18T12:03:51.134 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-18T12:03:51.200 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install libcephfs-devel 2024-09-18T12:03:51.781 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:32 ago on Wed 18 Sep 2024 12:02:19 PM UTC. 2024-09-18T12:03:51.914 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-18T12:03:51.914 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:03:51.914 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repo Size 2024-09-18T12:03:51.914 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:03:51.914 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-18T12:03:51.915 INFO:teuthology.orchestra.run.smithi160.stdout: libcephfs-devel x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 25 k 2024-09-18T12:03:51.915 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:51.915 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-18T12:03:51.915 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:03:51.915 INFO:teuthology.orchestra.run.smithi160.stdout:Install 1 Package 2024-09-18T12:03:51.915 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:51.916 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 25 k 2024-09-18T12:03:51.916 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 110 k 2024-09-18T12:03:51.916 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-18T12:03:52.074 INFO:teuthology.orchestra.run.smithi160.stdout:libcephfs-devel-17.2.7-1645.g7061ea6c.el9.x86_6 157 kB/s | 25 kB 00:00 2024-09-18T12:03:52.075 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:03:52.075 INFO:teuthology.orchestra.run.smithi160.stdout:Total 156 kB/s | 25 kB 00:00 2024-09-18T12:03:52.075 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-18T12:03:52.078 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-18T12:03:52.079 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-18T12:03:52.080 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-18T12:03:52.080 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-18T12:03:52.166 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-18T12:03:52.272 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : libcephfs-devel-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:52.627 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: libcephfs-devel-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:52.873 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : libcephfs-devel-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:52.873 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:52.874 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-18T12:03:52.874 INFO:teuthology.orchestra.run.smithi160.stdout: libcephfs-devel-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:03:52.874 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:52.874 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-18T12:03:53.055 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install librados2 2024-09-18T12:03:53.642 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:34 ago on Wed 18 Sep 2024 12:02:19 PM UTC. 2024-09-18T12:03:53.731 INFO:teuthology.orchestra.run.smithi160.stdout:Package librados2-2:17.2.7-1645.g7061ea6c.el9.x86_64 is already installed. 2024-09-18T12:03:53.774 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-18T12:03:53.775 INFO:teuthology.orchestra.run.smithi160.stdout:Nothing to do. 2024-09-18T12:03:53.775 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-18T12:03:53.842 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install librbd1 2024-09-18T12:03:54.422 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:35 ago on Wed 18 Sep 2024 12:02:19 PM UTC. 2024-09-18T12:03:54.512 INFO:teuthology.orchestra.run.smithi160.stdout:Package librbd1-2:17.2.7-1645.g7061ea6c.el9.x86_64 is already installed. 2024-09-18T12:03:54.555 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-18T12:03:54.556 INFO:teuthology.orchestra.run.smithi160.stdout:Nothing to do. 2024-09-18T12:03:54.556 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-18T12:03:54.626 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install python3-rados 2024-09-18T12:03:55.204 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:36 ago on Wed 18 Sep 2024 12:02:19 PM UTC. 2024-09-18T12:03:55.294 INFO:teuthology.orchestra.run.smithi160.stdout:Package python3-rados-2:17.2.7-1645.g7061ea6c.el9.x86_64 is already installed. 2024-09-18T12:03:55.337 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-18T12:03:55.338 INFO:teuthology.orchestra.run.smithi160.stdout:Nothing to do. 2024-09-18T12:03:55.338 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-18T12:03:55.415 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install python3-rgw 2024-09-18T12:03:56.002 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:36 ago on Wed 18 Sep 2024 12:02:19 PM UTC. 2024-09-18T12:03:56.092 INFO:teuthology.orchestra.run.smithi160.stdout:Package python3-rgw-2:17.2.7-1645.g7061ea6c.el9.x86_64 is already installed. 2024-09-18T12:03:56.135 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-18T12:03:56.136 INFO:teuthology.orchestra.run.smithi160.stdout:Nothing to do. 2024-09-18T12:03:56.136 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-18T12:03:56.215 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install python3-cephfs 2024-09-18T12:03:56.795 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:37 ago on Wed 18 Sep 2024 12:02:19 PM UTC. 2024-09-18T12:03:56.885 INFO:teuthology.orchestra.run.smithi160.stdout:Package python3-cephfs-2:17.2.7-1645.g7061ea6c.el9.x86_64 is already installed. 2024-09-18T12:03:56.927 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-18T12:03:56.928 INFO:teuthology.orchestra.run.smithi160.stdout:Nothing to do. 2024-09-18T12:03:56.929 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-18T12:03:57.001 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install python3-rbd 2024-09-18T12:03:57.577 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:38 ago on Wed 18 Sep 2024 12:02:19 PM UTC. 2024-09-18T12:03:57.666 INFO:teuthology.orchestra.run.smithi160.stdout:Package python3-rbd-2:17.2.7-1645.g7061ea6c.el9.x86_64 is already installed. 2024-09-18T12:03:57.709 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-18T12:03:57.710 INFO:teuthology.orchestra.run.smithi160.stdout:Nothing to do. 2024-09-18T12:03:57.710 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-18T12:03:57.780 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install rbd-fuse 2024-09-18T12:03:58.370 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:39 ago on Wed 18 Sep 2024 12:02:19 PM UTC. 2024-09-18T12:03:58.511 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-18T12:03:58.512 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:03:58.512 INFO:teuthology.orchestra.run.smithi160.stdout: Package Architecture Version Repository Size 2024-09-18T12:03:58.512 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:03:58.512 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-18T12:03:58.512 INFO:teuthology.orchestra.run.smithi160.stdout: rbd-fuse x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 82 k 2024-09-18T12:03:58.512 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:58.512 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-18T12:03:58.512 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:03:58.512 INFO:teuthology.orchestra.run.smithi160.stdout:Install 1 Package 2024-09-18T12:03:58.512 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:58.513 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 82 k 2024-09-18T12:03:58.513 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 222 k 2024-09-18T12:03:58.513 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-18T12:03:58.694 INFO:teuthology.orchestra.run.smithi160.stdout:rbd-fuse-17.2.7-1645.g7061ea6c.el9.x86_64.rpm 451 kB/s | 82 kB 00:00 2024-09-18T12:03:58.695 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:03:58.695 INFO:teuthology.orchestra.run.smithi160.stdout:Total 447 kB/s | 82 kB 00:00 2024-09-18T12:03:58.696 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-18T12:03:58.702 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-18T12:03:58.703 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-18T12:03:58.769 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-18T12:03:58.769 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-18T12:03:58.946 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-18T12:03:59.043 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : rbd-fuse-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:59.442 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: rbd-fuse-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:59.666 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : rbd-fuse-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:03:59.666 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:59.666 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-18T12:03:59.666 INFO:teuthology.orchestra.run.smithi160.stdout: rbd-fuse-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:03:59.666 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:03:59.666 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-18T12:03:59.962 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install rbd-mirror 2024-09-18T12:04:00.559 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:41 ago on Wed 18 Sep 2024 12:02:19 PM UTC. 2024-09-18T12:04:00.699 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-18T12:04:00.699 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:04:00.700 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repo Size 2024-09-18T12:04:00.700 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:04:00.700 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-18T12:04:00.700 INFO:teuthology.orchestra.run.smithi160.stdout: rbd-mirror x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 2.9 M 2024-09-18T12:04:00.700 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:04:00.700 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-18T12:04:00.700 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:04:00.700 INFO:teuthology.orchestra.run.smithi160.stdout:Install 1 Package 2024-09-18T12:04:00.700 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:04:00.700 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 2.9 M 2024-09-18T12:04:00.700 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 12 M 2024-09-18T12:04:00.700 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-18T12:04:01.047 INFO:teuthology.orchestra.run.smithi160.stdout:rbd-mirror-17.2.7-1645.g7061ea6c.el9.x86_64.rpm 8.5 MB/s | 2.9 MB 00:00 2024-09-18T12:04:01.048 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:04:01.048 INFO:teuthology.orchestra.run.smithi160.stdout:Total 8.4 MB/s | 2.9 MB 00:00 2024-09-18T12:04:01.048 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-18T12:04:01.057 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-18T12:04:01.057 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-18T12:04:01.138 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-18T12:04:01.139 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-18T12:04:01.551 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-18T12:04:01.615 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : rbd-mirror-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:04:01.641 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: rbd-mirror-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:04:01.641 INFO:teuthology.orchestra.run.smithi160.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-18T12:04:01.641 INFO:teuthology.orchestra.run.smithi160.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-09-18T12:04:01.641 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-18T12:04:01.641 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-18T12:04:01.641 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:04:02.749 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : rbd-mirror-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:04:02.749 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:04:02.749 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-18T12:04:02.749 INFO:teuthology.orchestra.run.smithi160.stdout: rbd-mirror-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:04:02.749 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:04:02.749 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-18T12:04:02.976 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install rbd-nbd 2024-09-18T12:04:03.578 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:44 ago on Wed 18 Sep 2024 12:02:19 PM UTC. 2024-09-18T12:04:03.711 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-18T12:04:03.712 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:04:03.712 INFO:teuthology.orchestra.run.smithi160.stdout: Package Architecture Version Repository Size 2024-09-18T12:04:03.712 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:04:03.712 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-18T12:04:03.712 INFO:teuthology.orchestra.run.smithi160.stdout: rbd-nbd x86_64 2:17.2.7-1645.g7061ea6c.el9 ceph 165 k 2024-09-18T12:04:03.712 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:04:03.712 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-18T12:04:03.712 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-18T12:04:03.712 INFO:teuthology.orchestra.run.smithi160.stdout:Install 1 Package 2024-09-18T12:04:03.712 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:04:03.712 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 165 k 2024-09-18T12:04:03.713 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 477 k 2024-09-18T12:04:03.713 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-18T12:04:04.042 INFO:teuthology.orchestra.run.smithi160.stdout:rbd-nbd-17.2.7-1645.g7061ea6c.el9.x86_64.rpm 501 kB/s | 165 kB 00:00 2024-09-18T12:04:04.043 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:04:04.043 INFO:teuthology.orchestra.run.smithi160.stdout:Total 499 kB/s | 165 kB 00:00 2024-09-18T12:04:04.043 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-18T12:04:04.051 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-18T12:04:04.051 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-18T12:04:04.114 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-18T12:04:04.115 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-18T12:04:04.263 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-18T12:04:04.364 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : rbd-nbd-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:04:04.790 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: rbd-nbd-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:04:05.081 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : rbd-nbd-2:17.2.7-1645.g7061ea6c.el9.x86_64 1/1 2024-09-18T12:04:05.082 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:04:05.082 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-18T12:04:05.082 INFO:teuthology.orchestra.run.smithi160.stdout: rbd-nbd-2:17.2.7-1645.g7061ea6c.el9.x86_64 2024-09-18T12:04:05.082 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-18T12:04:05.082 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-18T12:04:05.353 DEBUG:teuthology.parallel:result is None 2024-09-18T12:04:05.354 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=7061ea6ca50908d104e9f3979dc615e118d9e153 2024-09-18T12:04:05.497 DEBUG:teuthology.orchestra.run.smithi076:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-09-18T12:04:05.523 INFO:teuthology.orchestra.run.smithi076.stdout:17.2.7-1645.g7061ea6c.el9 2024-09-18T12:04:05.524 INFO:teuthology.packaging:The installed version of ceph is 17.2.7-1645.g7061ea6c.el9 2024-09-18T12:04:05.525 INFO:teuthology.task.install:The correct ceph version 17.2.7-1645.g7061ea6c is installed. 2024-09-18T12:04:05.528 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=7061ea6ca50908d104e9f3979dc615e118d9e153 2024-09-18T12:04:05.672 DEBUG:teuthology.orchestra.run.smithi160:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-09-18T12:04:05.695 INFO:teuthology.orchestra.run.smithi160.stdout:17.2.7-1645.g7061ea6c.el9 2024-09-18T12:04:05.695 INFO:teuthology.packaging:The installed version of ceph is 17.2.7-1645.g7061ea6c.el9 2024-09-18T12:04:05.695 INFO:teuthology.task.install:The correct ceph version 17.2.7-1645.g7061ea6c is installed. 2024-09-18T12:04:05.697 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=7061ea6ca50908d104e9f3979dc615e118d9e153 2024-09-18T12:04:05.830 DEBUG:teuthology.orchestra.run.smithi169:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-09-18T12:04:05.856 INFO:teuthology.orchestra.run.smithi169.stdout:17.2.7-1645.g7061ea6c.el9 2024-09-18T12:04:05.856 INFO:teuthology.packaging:The installed version of ceph is 17.2.7-1645.g7061ea6c.el9 2024-09-18T12:04:05.857 INFO:teuthology.task.install:The correct ceph version 17.2.7-1645.g7061ea6c is installed. 2024-09-18T12:04:05.859 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2024-09-18T12:04:05.859 DEBUG:teuthology.orchestra.run.smithi076:> set -ex 2024-09-18T12:04:05.859 DEBUG:teuthology.orchestra.run.smithi076:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-18T12:04:05.889 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-09-18T12:04:05.889 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-18T12:04:05.916 DEBUG:teuthology.orchestra.run.smithi169:> set -ex 2024-09-18T12:04:05.917 DEBUG:teuthology.orchestra.run.smithi169:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-18T12:04:05.948 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2024-09-18T12:04:05.949 DEBUG:teuthology.orchestra.run.smithi076:> set -ex 2024-09-18T12:04:05.949 DEBUG:teuthology.orchestra.run.smithi076:> sudo dd of=/usr/bin/daemon-helper 2024-09-18T12:04:05.976 DEBUG:teuthology.orchestra.run.smithi076:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-18T12:04:06.042 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-09-18T12:04:06.042 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd of=/usr/bin/daemon-helper 2024-09-18T12:04:06.069 DEBUG:teuthology.orchestra.run.smithi160:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-18T12:04:06.135 DEBUG:teuthology.orchestra.run.smithi169:> set -ex 2024-09-18T12:04:06.135 DEBUG:teuthology.orchestra.run.smithi169:> sudo dd of=/usr/bin/daemon-helper 2024-09-18T12:04:06.164 DEBUG:teuthology.orchestra.run.smithi169:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-18T12:04:06.234 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2024-09-18T12:04:06.234 DEBUG:teuthology.orchestra.run.smithi076:> set -ex 2024-09-18T12:04:06.234 DEBUG:teuthology.orchestra.run.smithi076:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-18T12:04:06.262 DEBUG:teuthology.orchestra.run.smithi076:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-18T12:04:06.329 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-09-18T12:04:06.330 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-18T12:04:06.355 DEBUG:teuthology.orchestra.run.smithi160:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-18T12:04:06.420 DEBUG:teuthology.orchestra.run.smithi169:> set -ex 2024-09-18T12:04:06.420 DEBUG:teuthology.orchestra.run.smithi169:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-18T12:04:06.449 DEBUG:teuthology.orchestra.run.smithi169:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-18T12:04:06.518 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2024-09-18T12:04:06.518 DEBUG:teuthology.orchestra.run.smithi076:> set -ex 2024-09-18T12:04:06.518 DEBUG:teuthology.orchestra.run.smithi076:> sudo dd of=/usr/bin/stdin-killer 2024-09-18T12:04:06.545 DEBUG:teuthology.orchestra.run.smithi076:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-18T12:04:06.612 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-09-18T12:04:06.612 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd of=/usr/bin/stdin-killer 2024-09-18T12:04:06.638 DEBUG:teuthology.orchestra.run.smithi160:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-18T12:04:06.703 DEBUG:teuthology.orchestra.run.smithi169:> set -ex 2024-09-18T12:04:06.703 DEBUG:teuthology.orchestra.run.smithi169:> sudo dd of=/usr/bin/stdin-killer 2024-09-18T12:04:06.732 DEBUG:teuthology.orchestra.run.smithi169:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-18T12:04:06.801 INFO:teuthology.run_tasks:Running task cephadm... 2024-09-18T12:04:06.892 INFO:tasks.cephadm:Config: {'conf': {'global': {'mon election default strategy': 3}, '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'], 'sha1': '7061ea6ca50908d104e9f3979dc615e118d9e153'} 2024-09-18T12:04:06.892 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 2024-09-18T12:04:06.893 INFO:tasks.cephadm:Cluster fsid is 1afb0892-75b6-11ef-bceb-c7b262605968 2024-09-18T12:04:06.893 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-09-18T12:04:06.893 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '172.21.15.76', 'mon.b': '172.21.15.160', 'mon.c': '172.21.15.169'} 2024-09-18T12:04:06.893 INFO:tasks.cephadm:First mon is mon.a on smithi076 2024-09-18T12:04:06.893 INFO:tasks.cephadm:First mgr is a 2024-09-18T12:04:06.893 INFO:tasks.cephadm:Normalizing hostnames... 2024-09-18T12:04:06.894 DEBUG:teuthology.orchestra.run.smithi076:> sudo hostname $(hostname -s) 2024-09-18T12:04:06.921 DEBUG:teuthology.orchestra.run.smithi160:> sudo hostname $(hostname -s) 2024-09-18T12:04:06.947 DEBUG:teuthology.orchestra.run.smithi169:> sudo hostname $(hostname -s) 2024-09-18T12:04:06.975 INFO:tasks.cephadm:Downloading cephadm (repo https://github.com/ceph/ceph-ci.git ref 7061ea6ca50908d104e9f3979dc615e118d9e153)... 2024-09-18T12:04:06.976 DEBUG:teuthology.orchestra.run.smithi076:> curl --silent https://raw.githubusercontent.com/ceph/ceph-ci/7061ea6ca50908d104e9f3979dc615e118d9e153/src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-18T12:04:07.221 INFO:teuthology.orchestra.run.smithi076.stdout:-rw-r--r--. 1 ubuntu ubuntu 378585 Sep 18 12:04 /home/ubuntu/cephtest/cephadm 2024-09-18T12:04:07.224 DEBUG:teuthology.orchestra.run.smithi160:> curl --silent https://raw.githubusercontent.com/ceph/ceph-ci/7061ea6ca50908d104e9f3979dc615e118d9e153/src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-18T12:04:07.362 INFO:teuthology.orchestra.run.smithi160.stdout:-rw-r--r--. 1 ubuntu ubuntu 378585 Sep 18 12:04 /home/ubuntu/cephtest/cephadm 2024-09-18T12:04:07.363 DEBUG:teuthology.orchestra.run.smithi169:> curl --silent https://raw.githubusercontent.com/ceph/ceph-ci/7061ea6ca50908d104e9f3979dc615e118d9e153/src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-18T12:04:07.494 INFO:teuthology.orchestra.run.smithi169.stdout:-rw-r--r--. 1 ubuntu ubuntu 378585 Sep 18 12:04 /home/ubuntu/cephtest/cephadm 2024-09-18T12:04:07.494 DEBUG:teuthology.orchestra.run.smithi076:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-18T12:04:07.513 DEBUG:teuthology.orchestra.run.smithi160:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-18T12:04:07.530 DEBUG:teuthology.orchestra.run.smithi169:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-18T12:04:07.558 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 on all hosts... 2024-09-18T12:04:07.559 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 pull 2024-09-18T12:04:07.561 DEBUG:teuthology.orchestra.run.smithi160:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 pull 2024-09-18T12:04:07.573 DEBUG:teuthology.orchestra.run.smithi169:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 pull 2024-09-18T12:04:09.083 INFO:teuthology.orchestra.run.smithi169.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153... 2024-09-18T12:04:09.220 INFO:teuthology.orchestra.run.smithi076.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153... 2024-09-18T12:04:09.257 INFO:teuthology.orchestra.run.smithi160.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153... 2024-09-18T12:04:38.800 INFO:teuthology.orchestra.run.smithi169.stdout:{ 2024-09-18T12:04:38.800 INFO:teuthology.orchestra.run.smithi169.stdout: "ceph_version": "ceph version 17.2.7-1645-g7061ea6c (7061ea6ca50908d104e9f3979dc615e118d9e153) quincy (stable)", 2024-09-18T12:04:38.801 INFO:teuthology.orchestra.run.smithi169.stdout: "image_id": "f2dfd3bedcfd8a352dfcb2d35150edfb80cae3a6389830dbb2d080962a731a96", 2024-09-18T12:04:38.801 INFO:teuthology.orchestra.run.smithi169.stdout: "repo_digests": [ 2024-09-18T12:04:38.801 INFO:teuthology.orchestra.run.smithi169.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9" 2024-09-18T12:04:38.801 INFO:teuthology.orchestra.run.smithi169.stdout: ] 2024-09-18T12:04:38.801 INFO:teuthology.orchestra.run.smithi169.stdout:} 2024-09-18T12:04:57.550 INFO:teuthology.orchestra.run.smithi160.stdout:{ 2024-09-18T12:04:57.551 INFO:teuthology.orchestra.run.smithi160.stdout: "ceph_version": "ceph version 17.2.7-1645-g7061ea6c (7061ea6ca50908d104e9f3979dc615e118d9e153) quincy (stable)", 2024-09-18T12:04:57.551 INFO:teuthology.orchestra.run.smithi160.stdout: "image_id": "f2dfd3bedcfd8a352dfcb2d35150edfb80cae3a6389830dbb2d080962a731a96", 2024-09-18T12:04:57.551 INFO:teuthology.orchestra.run.smithi160.stdout: "repo_digests": [ 2024-09-18T12:04:57.551 INFO:teuthology.orchestra.run.smithi160.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9" 2024-09-18T12:04:57.551 INFO:teuthology.orchestra.run.smithi160.stdout: ] 2024-09-18T12:04:57.551 INFO:teuthology.orchestra.run.smithi160.stdout:} 2024-09-18T12:04:57.732 INFO:teuthology.orchestra.run.smithi076.stdout:{ 2024-09-18T12:04:57.733 INFO:teuthology.orchestra.run.smithi076.stdout: "ceph_version": "ceph version 17.2.7-1645-g7061ea6c (7061ea6ca50908d104e9f3979dc615e118d9e153) quincy (stable)", 2024-09-18T12:04:57.733 INFO:teuthology.orchestra.run.smithi076.stdout: "image_id": "f2dfd3bedcfd8a352dfcb2d35150edfb80cae3a6389830dbb2d080962a731a96", 2024-09-18T12:04:57.733 INFO:teuthology.orchestra.run.smithi076.stdout: "repo_digests": [ 2024-09-18T12:04:57.733 INFO:teuthology.orchestra.run.smithi076.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9" 2024-09-18T12:04:57.733 INFO:teuthology.orchestra.run.smithi076.stdout: ] 2024-09-18T12:04:57.733 INFO:teuthology.orchestra.run.smithi076.stdout:} 2024-09-18T12:04:57.752 DEBUG:teuthology.orchestra.run.smithi076:> sudo mkdir -p /etc/ceph 2024-09-18T12:04:57.805 DEBUG:teuthology.orchestra.run.smithi160:> sudo mkdir -p /etc/ceph 2024-09-18T12:04:57.833 DEBUG:teuthology.orchestra.run.smithi169:> sudo mkdir -p /etc/ceph 2024-09-18T12:04:57.866 DEBUG:teuthology.orchestra.run.smithi076:> sudo chmod 777 /etc/ceph 2024-09-18T12:04:57.891 DEBUG:teuthology.orchestra.run.smithi160:> sudo chmod 777 /etc/ceph 2024-09-18T12:04:57.917 DEBUG:teuthology.orchestra.run.smithi169:> sudo chmod 777 /etc/ceph 2024-09-18T12:04:57.945 INFO:tasks.cephadm:Writing seed config... 2024-09-18T12:04:57.946 INFO:tasks.cephadm: override: [global] mon election default strategy = 3 2024-09-18T12:04:57.947 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-09-18T12:04:57.947 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-09-18T12:04:57.947 INFO:tasks.cephadm: override: [mgr] mgr/cephadm/use_agent = False 2024-09-18T12:04:57.947 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-09-18T12:04:57.947 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-09-18T12:04:57.947 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-09-18T12:04:57.947 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-09-18T12:04:57.947 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-09-18T12:04:57.948 DEBUG:teuthology.orchestra.run.smithi076:> set -ex 2024-09-18T12:04:57.948 DEBUG:teuthology.orchestra.run.smithi076:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-09-18T12:04:57.963 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 = 1afb0892-75b6-11ef-bceb-c7b262605968 mon election default strategy = 3 [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-18T12:04:57.963 DEBUG:teuthology.orchestra.run.smithi076:mon.a> sudo journalctl -f -n 0 -u ceph-1afb0892-75b6-11ef-bceb-c7b262605968@mon.a.service 2024-09-18T12:04:58.005 DEBUG:teuthology.orchestra.run.smithi076:mgr.a> sudo journalctl -f -n 0 -u ceph-1afb0892-75b6-11ef-bceb-c7b262605968@mgr.a.service 2024-09-18T12:04:58.048 INFO:tasks.cephadm:Bootstrapping... 2024-09-18T12:04:58.048 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 -v bootstrap --fsid 1afb0892-75b6-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.76 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-09-18T12:04:58.246 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-09-18T12:04:58.246 INFO:teuthology.orchestra.run.smithi076.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153', '-v', 'bootstrap', '--fsid', '1afb0892-75b6-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.76', '--skip-admin-label'] 2024-09-18T12:04:58.274 INFO:teuthology.orchestra.run.smithi076.stdout:/bin/podman: stdout 5.2.2 2024-09-18T12:04:58.275 INFO:teuthology.orchestra.run.smithi076.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-09-18T12:04:58.275 INFO:teuthology.orchestra.run.smithi076.stdout:Verifying podman|docker is present... 2024-09-18T12:04:58.297 INFO:teuthology.orchestra.run.smithi076.stdout:/bin/podman: stdout 5.2.2 2024-09-18T12:04:58.297 INFO:teuthology.orchestra.run.smithi076.stdout:Verifying lvm2 is present... 2024-09-18T12:04:58.297 INFO:teuthology.orchestra.run.smithi076.stdout:Verifying time synchronization is in place... 2024-09-18T12:04:58.305 INFO:teuthology.orchestra.run.smithi076.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-18T12:04:58.305 INFO:teuthology.orchestra.run.smithi076.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-18T12:04:58.311 INFO:teuthology.orchestra.run.smithi076.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-18T12:04:58.311 INFO:teuthology.orchestra.run.smithi076.stdout:systemctl: stdout inactive 2024-09-18T12:04:58.318 INFO:teuthology.orchestra.run.smithi076.stdout:systemctl: stdout enabled 2024-09-18T12:04:58.325 INFO:teuthology.orchestra.run.smithi076.stdout:systemctl: stdout active 2024-09-18T12:04:58.325 INFO:teuthology.orchestra.run.smithi076.stdout:Unit chronyd.service is enabled and running 2024-09-18T12:04:58.325 INFO:teuthology.orchestra.run.smithi076.stdout:Repeating the final host check... 2024-09-18T12:04:58.346 INFO:teuthology.orchestra.run.smithi076.stdout:/bin/podman: stdout 5.2.2 2024-09-18T12:04:58.347 INFO:teuthology.orchestra.run.smithi076.stdout:podman (/bin/podman) version 5.2.2 is present 2024-09-18T12:04:58.347 INFO:teuthology.orchestra.run.smithi076.stdout:systemctl is present 2024-09-18T12:04:58.347 INFO:teuthology.orchestra.run.smithi076.stdout:lvcreate is present 2024-09-18T12:04:58.353 INFO:teuthology.orchestra.run.smithi076.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-18T12:04:58.353 INFO:teuthology.orchestra.run.smithi076.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-18T12:04:58.360 INFO:teuthology.orchestra.run.smithi076.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-18T12:04:58.360 INFO:teuthology.orchestra.run.smithi076.stdout:systemctl: stdout inactive 2024-09-18T12:04:58.366 INFO:teuthology.orchestra.run.smithi076.stdout:systemctl: stdout enabled 2024-09-18T12:04:58.373 INFO:teuthology.orchestra.run.smithi076.stdout:systemctl: stdout active 2024-09-18T12:04:58.373 INFO:teuthology.orchestra.run.smithi076.stdout:Unit chronyd.service is enabled and running 2024-09-18T12:04:58.373 INFO:teuthology.orchestra.run.smithi076.stdout:Host looks OK 2024-09-18T12:04:58.373 INFO:teuthology.orchestra.run.smithi076.stdout:Cluster fsid: 1afb0892-75b6-11ef-bceb-c7b262605968 2024-09-18T12:04:58.374 INFO:teuthology.orchestra.run.smithi076.stdout:Acquiring lock 139654641574816 on /run/cephadm/1afb0892-75b6-11ef-bceb-c7b262605968.lock 2024-09-18T12:04:58.374 INFO:teuthology.orchestra.run.smithi076.stdout:Lock 139654641574816 acquired on /run/cephadm/1afb0892-75b6-11ef-bceb-c7b262605968.lock 2024-09-18T12:04:58.374 INFO:teuthology.orchestra.run.smithi076.stdout:Verifying IP 172.21.15.76 port 3300 ... 2024-09-18T12:04:58.374 INFO:teuthology.orchestra.run.smithi076.stdout:Verifying IP 172.21.15.76 port 6789 ... 2024-09-18T12:04:58.374 INFO:teuthology.orchestra.run.smithi076.stdout:Base mon IP(s) is [172.21.15.76:3300, 172.21.15.76:6789], mon addrv is [v2:172.21.15.76:3300,v1:172.21.15.76:6789] 2024-09-18T12:04:58.378 INFO:teuthology.orchestra.run.smithi076.stdout:/sbin/ip: stdout default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.76 metric 100 2024-09-18T12:04:58.378 INFO:teuthology.orchestra.run.smithi076.stdout:/sbin/ip: stdout 172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.76 metric 100 2024-09-18T12:04:58.380 INFO:teuthology.orchestra.run.smithi076.stdout:/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-09-18T12:04:58.381 INFO:teuthology.orchestra.run.smithi076.stdout:/sbin/ip: stdout fe80::/64 dev enp3s0f1 proto kernel metric 1024 pref medium 2024-09-18T12:04:58.381 INFO:teuthology.orchestra.run.smithi076.stdout:/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev enp3s0f1 proto ra metric 100 pref medium 2024-09-18T12:04:58.383 INFO:teuthology.orchestra.run.smithi076.stdout:/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-09-18T12:04:58.383 INFO:teuthology.orchestra.run.smithi076.stdout:/sbin/ip: stdout inet6 ::1/128 scope host 2024-09-18T12:04:58.383 INFO:teuthology.orchestra.run.smithi076.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-18T12:04:58.383 INFO:teuthology.orchestra.run.smithi076.stdout:/sbin/ip: stdout 5: enp3s0f1: mtu 1500 state UP qlen 1000 2024-09-18T12:04:58.383 INFO:teuthology.orchestra.run.smithi076.stdout:/sbin/ip: stdout inet6 fe80::ec4:7aff:fe8f:47e1/64 scope link noprefixroute 2024-09-18T12:04:58.384 INFO:teuthology.orchestra.run.smithi076.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-18T12:04:58.384 INFO:teuthology.orchestra.run.smithi076.stdout:Mon IP `172.21.15.76` is in CIDR network `172.21.0.0/20` 2024-09-18T12:04:58.384 INFO:teuthology.orchestra.run.smithi076.stdout:Mon IP `172.21.15.76` is in CIDR network `172.21.0.0/20` 2024-09-18T12:04:58.384 INFO:teuthology.orchestra.run.smithi076.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-09-18T12:04:58.384 INFO:teuthology.orchestra.run.smithi076.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-09-18T12:04:58.385 INFO:teuthology.orchestra.run.smithi076.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153... 2024-09-18T12:04:58.874 INFO:teuthology.orchestra.run.smithi076.stdout:/bin/podman: stdout f2dfd3bedcfd8a352dfcb2d35150edfb80cae3a6389830dbb2d080962a731a96 2024-09-18T12:04:58.874 INFO:teuthology.orchestra.run.smithi076.stdout:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153... 2024-09-18T12:04:58.875 INFO:teuthology.orchestra.run.smithi076.stdout:/bin/podman: stderr Getting image source signatures 2024-09-18T12:04:58.875 INFO:teuthology.orchestra.run.smithi076.stdout:/bin/podman: stderr Copying blob sha256:e8b54c863393b7a8216a71737771b73b16a8e43ec7acf927c7faa175c255e551 2024-09-18T12:04:58.875 INFO:teuthology.orchestra.run.smithi076.stdout:/bin/podman: stderr Copying blob sha256:18f0e168bb5949d29b802da7211258bcbbf1130e86b62b5279105a769deb2933 2024-09-18T12:04:58.875 INFO:teuthology.orchestra.run.smithi076.stdout:/bin/podman: stderr Copying config sha256:f2dfd3bedcfd8a352dfcb2d35150edfb80cae3a6389830dbb2d080962a731a96 2024-09-18T12:04:58.875 INFO:teuthology.orchestra.run.smithi076.stdout:/bin/podman: stderr Writing manifest to image destination 2024-09-18T12:04:59.753 INFO:teuthology.orchestra.run.smithi076.stdout:ceph: stdout ceph version 17.2.7-1645-g7061ea6c (7061ea6ca50908d104e9f3979dc615e118d9e153) quincy (stable) 2024-09-18T12:04:59.754 INFO:teuthology.orchestra.run.smithi076.stdout:Ceph version: ceph version 17.2.7-1645-g7061ea6c (7061ea6ca50908d104e9f3979dc615e118d9e153) quincy (stable) 2024-09-18T12:04:59.754 INFO:teuthology.orchestra.run.smithi076.stdout:Extracting ceph user uid/gid from container image... 2024-09-18T12:05:00.801 INFO:teuthology.orchestra.run.smithi076.stdout:stat: stdout 167 167 2024-09-18T12:05:00.801 INFO:teuthology.orchestra.run.smithi076.stdout:Creating initial keys... 2024-09-18T12:05:01.589 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph-authtool: stdout AQDtwepmjwbJBBAAbLGFPL8dDhG3kIt1tzzzgg== 2024-09-18T12:05:02.520 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph-authtool: stdout AQDtwepmc5LJNxAAevm+SqYLBSP4Q8pMFtfkZA== 2024-09-18T12:05:07.648 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph-authtool: stdout AQDuwepmd3EZMRAAR3tYJfdRYFVsxlLUP58BjQ== 2024-09-18T12:05:07.648 INFO:teuthology.orchestra.run.smithi076.stdout:Creating initial monmap... 2024-09-18T12:05:13.724 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-18T12:05:13.725 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = octopus 2024-09-18T12:05:13.725 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 1afb0892-75b6-11ef-bceb-c7b262605968 2024-09-18T12:05:13.725 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-18T12:05:13.725 INFO:teuthology.orchestra.run.smithi076.stdout:monmaptool for a [v2:172.21.15.76:3300,v1:172.21.15.76:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-18T12:05:13.725 INFO:teuthology.orchestra.run.smithi076.stdout:setting min_mon_release = octopus 2024-09-18T12:05:13.725 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/monmaptool: set fsid to 1afb0892-75b6-11ef-bceb-c7b262605968 2024-09-18T12:05:13.725 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-18T12:05:13.725 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:05:13.725 INFO:teuthology.orchestra.run.smithi076.stdout:Creating mon... 2024-09-18T12:05:14.977 INFO:teuthology.orchestra.run.smithi076.stdout:create mon.a on 2024-09-18T12:05:15.225 INFO:teuthology.orchestra.run.smithi076.stdout:systemctl: stderr Removed "/etc/systemd/system/multi-user.target.wants/ceph.target". 2024-09-18T12:05:15.361 INFO:teuthology.orchestra.run.smithi076.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2024-09-18T12:05:15.508 INFO:teuthology.orchestra.run.smithi076.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-1afb0892-75b6-11ef-bceb-c7b262605968.target → /etc/systemd/system/ceph-1afb0892-75b6-11ef-bceb-c7b262605968.target. 2024-09-18T12:05:15.508 INFO:teuthology.orchestra.run.smithi076.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-1afb0892-75b6-11ef-bceb-c7b262605968.target → /etc/systemd/system/ceph-1afb0892-75b6-11ef-bceb-c7b262605968.target. 2024-09-18T12:05:15.674 INFO:teuthology.orchestra.run.smithi076.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-1afb0892-75b6-11ef-bceb-c7b262605968@mon.a 2024-09-18T12:05:15.675 INFO:teuthology.orchestra.run.smithi076.stdout:systemctl: stderr Failed to reset failed state of unit ceph-1afb0892-75b6-11ef-bceb-c7b262605968@mon.a.service: Unit ceph-1afb0892-75b6-11ef-bceb-c7b262605968@mon.a.service not loaded. 2024-09-18T12:05:15.830 INFO:teuthology.orchestra.run.smithi076.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-1afb0892-75b6-11ef-bceb-c7b262605968.target.wants/ceph-1afb0892-75b6-11ef-bceb-c7b262605968@mon.a.service → /etc/systemd/system/ceph-1afb0892-75b6-11ef-bceb-c7b262605968@.service. 2024-09-18T12:05:16.372 INFO:teuthology.orchestra.run.smithi076.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-18T12:05:16.372 INFO:teuthology.orchestra.run.smithi076.stdout:systemctl: stdout disabled 2024-09-18T12:05:16.380 INFO:teuthology.orchestra.run.smithi076.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-18T12:05:16.380 INFO:teuthology.orchestra.run.smithi076.stdout:systemctl: stdout inactive 2024-09-18T12:05:16.380 INFO:teuthology.orchestra.run.smithi076.stdout:firewalld.service is not enabled 2024-09-18T12:05:16.380 INFO:teuthology.orchestra.run.smithi076.stdout:Not possible to enable service . firewalld.service is not available 2024-09-18T12:05:16.381 INFO:teuthology.orchestra.run.smithi076.stdout:Waiting for mon to start... 2024-09-18T12:05:16.381 INFO:teuthology.orchestra.run.smithi076.stdout:Waiting for mon... 2024-09-18T12:05:17.475 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout cluster: 2024-09-18T12:05:17.475 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout id: 1afb0892-75b6-11ef-bceb-c7b262605968 2024-09-18T12:05:17.475 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-09-18T12:05:17.475 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout 2024-09-18T12:05:17.475 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout services: 2024-09-18T12:05:17.475 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum a (age 0.605835s) 2024-09-18T12:05:17.475 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-09-18T12:05:17.476 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-09-18T12:05:17.476 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout 2024-09-18T12:05:17.476 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout data: 2024-09-18T12:05:17.476 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-09-18T12:05:17.476 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-09-18T12:05:17.476 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-09-18T12:05:17.476 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout pgs: 2024-09-18T12:05:17.476 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout 2024-09-18T12:05:17.476 INFO:teuthology.orchestra.run.smithi076.stdout:mon is available 2024-09-18T12:05:17.476 INFO:teuthology.orchestra.run.smithi076.stdout:Assimilating anything we can from ceph.conf... 2024-09-18T12:05:18.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:18 smithi076 ceph-mon[27205]: from='client.? 172.21.15.76:0/3175635137' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-18T12:05:19.319 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout 2024-09-18T12:05:19.319 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout [global] 2024-09-18T12:05:19.319 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout fsid = 1afb0892-75b6-11ef-bceb-c7b262605968 2024-09-18T12:05:19.319 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-09-18T12:05:19.319 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.76:3300,v1:172.21.15.76:6789] 2024-09-18T12:05:19.319 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-18T12:05:19.320 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-18T12:05:19.320 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-18T12:05:19.320 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-18T12:05:19.320 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout 2024-09-18T12:05:19.320 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-18T12:05:19.320 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout mgr/cephadm/use_agent = False 2024-09-18T12:05:19.320 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-18T12:05:19.320 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout 2024-09-18T12:05:19.320 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout [osd] 2024-09-18T12:05:19.320 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-18T12:05:19.320 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-18T12:05:19.320 INFO:teuthology.orchestra.run.smithi076.stdout:Generating new minimal ceph.conf... 2024-09-18T12:05:20.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:19 smithi076 ceph-mon[27205]: from='client.? 172.21.15.76:0/3994437614' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:05:20.373 INFO:teuthology.orchestra.run.smithi076.stdout:Restarting the monitor... 2024-09-18T12:05:20.649 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:20 smithi076 systemd[1]: Stopping Ceph mon.a for 1afb0892-75b6-11ef-bceb-c7b262605968... 2024-09-18T12:05:20.998 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:20 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mon-a[27200]: 2024-09-18T12:05:20.647+0000 7f1a3321b640 -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-18T12:05:20.998 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:20 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mon-a[27200]: 2024-09-18T12:05:20.647+0000 7f1a3321b640 -1 mon.a@0(leader) e1 *** Got Signal Terminated *** 2024-09-18T12:05:20.998 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:20 smithi076 podman[27459]: 2024-09-18 12:05:20.749577594 +0000 UTC m=+0.213500934 container died bccc432d5768eb86860038e49f9fca17aa6488bfb432e2da4d373e97ebff3f81 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mon-a, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, GIT_CLEAN=True, ceph=True, org.label-schema.license=GPLv2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.build-date=20240731) 2024-09-18T12:05:21.248 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 podman[27459]: 2024-09-18 12:05:21.071956255 +0000 UTC m=+0.535879594 container cleanup bccc432d5768eb86860038e49f9fca17aa6488bfb432e2da4d373e97ebff3f81 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mon-a, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, GIT_CLEAN=True, org.label-schema.build-date=20240731, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_BRANCH=HEAD) 2024-09-18T12:05:21.248 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 bash[27459]: ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mon-a 2024-09-18T12:05:21.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 podman[27473]: 2024-09-18 12:05:21.247647214 +0000 UTC m=+0.493354896 container remove bccc432d5768eb86860038e49f9fca17aa6488bfb432e2da4d373e97ebff3f81 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mon-a, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, ceph=True, org.label-schema.vendor=CentOS, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731) 2024-09-18T12:05:21.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 systemd[1]: ceph-1afb0892-75b6-11ef-bceb-c7b262605968@mon.a.service: Deactivated successfully. 2024-09-18T12:05:21.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 systemd[1]: Stopped Ceph mon.a for 1afb0892-75b6-11ef-bceb-c7b262605968. 2024-09-18T12:05:21.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 systemd[1]: Starting Ceph mon.a for 1afb0892-75b6-11ef-bceb-c7b262605968... 2024-09-18T12:05:21.968 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 podman[27564]: 2024-09-18 12:05:21.69016866 +0000 UTC m=+0.112398643 container create 79e55293c26c145e19495deefbe9093a54606e3f28f7ba97a31a07ca71364301 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mon-a, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731, GIT_CLEAN=True, org.label-schema.schema-version=1.0, ceph=True, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6) 2024-09-18T12:05:21.968 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 podman[27564]: 2024-09-18 12:05:21.593468814 +0000 UTC m=+0.015698766 image pull f2dfd3bedcfd8a352dfcb2d35150edfb80cae3a6389830dbb2d080962a731a96 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 2024-09-18T12:05:21.968 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 podman[27564]: 2024-09-18 12:05:21.892255385 +0000 UTC m=+0.314485335 container init 79e55293c26c145e19495deefbe9093a54606e3f28f7ba97a31a07ca71364301 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mon-a, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.license=GPLv2, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, ceph=True, GIT_CLEAN=True) 2024-09-18T12:05:21.968 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 podman[27564]: 2024-09-18 12:05:21.895334394 +0000 UTC m=+0.317564343 container start 79e55293c26c145e19495deefbe9093a54606e3f28f7ba97a31a07ca71364301 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mon-a, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, ceph=True, org.label-schema.license=GPLv2, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6) 2024-09-18T12:05:21.969 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: set uid:gid to 167:167 (ceph:ceph) 2024-09-18T12:05:21.969 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: ceph version 17.2.7-1645-g7061ea6c (7061ea6ca50908d104e9f3979dc615e118d9e153) quincy (stable), process ceph-mon, pid 2 2024-09-18T12:05:21.969 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: pidfile_write: ignore empty --pid-file 2024-09-18T12:05:21.969 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: load: jerasure load: lrc 2024-09-18T12:05:21.969 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: RocksDB version: 6.15.5 2024-09-18T12:05:21.969 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-09-18T12:05:21.969 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Compile date Sep 18 2024 2024-09-18T12:05:21.969 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: DB SUMMARY 2024-09-18T12:05:21.969 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: DB Session ID: ZA0YJJZIRV7FP8A8U93Q 2024-09-18T12:05:21.969 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: CURRENT file: CURRENT 2024-09-18T12:05:21.969 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: IDENTITY file: IDENTITY 2024-09-18T12:05:21.969 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: MANIFEST file: MANIFEST-000009 size: 131 Bytes 2024-09-18T12:05:21.970 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 1, files: 000008.sst 2024-09-18T12:05:21.970 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 000010.log size: 82862 ; 2024-09-18T12:05:21.970 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.error_if_exists: 0 2024-09-18T12:05:21.970 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.create_if_missing: 0 2024-09-18T12:05:21.970 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.paranoid_checks: 1 2024-09-18T12:05:21.970 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-18T12:05:21.970 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.env: 0x5604585974c0 2024-09-18T12:05:21.970 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.fs: Posix File System 2024-09-18T12:05:21.970 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.info_log: 0x56045a5b4ec0 2024-09-18T12:05:21.970 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.max_file_opening_threads: 16 2024-09-18T12:05:21.970 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.statistics: (nil) 2024-09-18T12:05:21.971 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.use_fsync: 0 2024-09-18T12:05:21.971 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.max_log_file_size: 0 2024-09-18T12:05:21.971 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-18T12:05:21.971 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.log_file_time_to_roll: 0 2024-09-18T12:05:21.971 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.keep_log_file_num: 1000 2024-09-18T12:05:21.971 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.recycle_log_file_num: 0 2024-09-18T12:05:21.971 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.allow_fallocate: 1 2024-09-18T12:05:21.971 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.allow_mmap_reads: 0 2024-09-18T12:05:21.971 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.allow_mmap_writes: 0 2024-09-18T12:05:21.971 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.use_direct_reads: 0 2024-09-18T12:05:21.971 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-18T12:05:21.971 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.create_missing_column_families: 0 2024-09-18T12:05:21.972 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.db_log_dir: 2024-09-18T12:05:21.972 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-a/store.db 2024-09-18T12:05:21.972 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.table_cache_numshardbits: 6 2024-09-18T12:05:21.972 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.WAL_ttl_seconds: 0 2024-09-18T12:05:21.972 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.WAL_size_limit_MB: 0 2024-09-18T12:05:21.972 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-18T12:05:21.972 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-18T12:05:21.972 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.is_fd_close_on_exec: 1 2024-09-18T12:05:21.972 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.advise_random_on_open: 1 2024-09-18T12:05:21.972 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.db_write_buffer_size: 0 2024-09-18T12:05:21.973 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.write_buffer_manager: 0x56045a6727e0 2024-09-18T12:05:21.973 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-18T12:05:21.973 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-09-18T12:05:21.973 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-18T12:05:21.973 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.use_adaptive_mutex: 0 2024-09-18T12:05:21.973 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.rate_limiter: (nil) 2024-09-18T12:05:21.973 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-18T12:05:21.975 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.wal_recovery_mode: 2 2024-09-18T12:05:21.975 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.enable_thread_tracking: 0 2024-09-18T12:05:21.975 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.enable_pipelined_write: 0 2024-09-18T12:05:21.975 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.unordered_write: 0 2024-09-18T12:05:21.975 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-18T12:05:21.975 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-18T12:05:21.975 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-18T12:05:21.975 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-18T12:05:21.975 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.row_cache: None 2024-09-18T12:05:21.975 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.wal_filter: None 2024-09-18T12:05:21.975 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-18T12:05:21.975 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.allow_ingest_behind: 0 2024-09-18T12:05:21.976 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.preserve_deletes: 0 2024-09-18T12:05:21.976 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.two_write_queues: 0 2024-09-18T12:05:21.976 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.manual_wal_flush: 0 2024-09-18T12:05:21.976 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.atomic_flush: 0 2024-09-18T12:05:21.976 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-18T12:05:21.976 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.persist_stats_to_disk: 0 2024-09-18T12:05:21.976 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.write_dbid_to_manifest: 0 2024-09-18T12:05:21.976 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.log_readahead_size: 0 2024-09-18T12:05:21.976 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-18T12:05:21.976 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.best_efforts_recovery: 0 2024-09-18T12:05:21.976 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-18T12:05:21.976 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-18T12:05:21.976 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.allow_data_in_errors: 0 2024-09-18T12:05:21.976 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.db_host_id: __hostname__ 2024-09-18T12:05:21.977 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.max_background_jobs: 2 2024-09-18T12:05:21.977 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.max_background_compactions: -1 2024-09-18T12:05:21.977 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.max_subcompactions: 1 2024-09-18T12:05:21.977 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-18T12:05:21.977 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-18T12:05:21.977 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.delayed_write_rate : 16777216 2024-09-18T12:05:21.977 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.max_total_wal_size: 0 2024-09-18T12:05:21.977 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-18T12:05:21.977 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.stats_dump_period_sec: 600 2024-09-18T12:05:21.977 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.stats_persist_period_sec: 600 2024-09-18T12:05:21.977 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-18T12:05:21.977 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.max_open_files: -1 2024-09-18T12:05:21.977 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.bytes_per_sync: 0 2024-09-18T12:05:21.978 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.wal_bytes_per_sync: 0 2024-09-18T12:05:21.978 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.strict_bytes_per_sync: 0 2024-09-18T12:05:21.978 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.compaction_readahead_size: 0 2024-09-18T12:05:21.978 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.max_background_flushes: -1 2024-09-18T12:05:21.978 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Compression algorithms supported: 2024-09-18T12:05:21.978 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: kZSTD supported: 0 2024-09-18T12:05:21.978 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: kXpressCompression supported: 0 2024-09-18T12:05:21.978 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: kBZip2Compression supported: 0 2024-09-18T12:05:21.978 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-18T12:05:21.978 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: kLZ4Compression supported: 1 2024-09-18T12:05:21.978 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: kZlibCompression supported: 1 2024-09-18T12:05:21.978 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: kLZ4HCCompression supported: 1 2024-09-18T12:05:21.978 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: kSnappyCompression supported: 1 2024-09-18T12:05:21.978 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Fast CRC32 supported: Supported on x86 2024-09-18T12:05:21.978 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: [db/version_set.cc:4724] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000009 2024-09-18T12:05:21.979 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: [db/column_family.cc:595] --------------- Options for column family [default]: 2024-09-18T12:05:21.979 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-18T12:05:21.979 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.merge_operator: 2024-09-18T12:05:21.979 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.compaction_filter: None 2024-09-18T12:05:21.979 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.compaction_filter_factory: None 2024-09-18T12:05:21.979 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.sst_partitioner_factory: None 2024-09-18T12:05:21.979 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.memtable_factory: SkipListFactory 2024-09-18T12:05:21.979 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.table_factory: BlockBasedTable 2024-09-18T12:05:21.979 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x56045a55ba38) 2024-09-18T12:05:21.979 INFO:journalctl@ceph.mon.a.smithi076.stdout: cache_index_and_filter_blocks: 1 2024-09-18T12:05:21.979 INFO:journalctl@ceph.mon.a.smithi076.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-18T12:05:21.979 INFO:journalctl@ceph.mon.a.smithi076.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-18T12:05:21.980 INFO:journalctl@ceph.mon.a.smithi076.stdout: pin_top_level_index_and_filter: 1 2024-09-18T12:05:21.980 INFO:journalctl@ceph.mon.a.smithi076.stdout: index_type: 0 2024-09-18T12:05:21.980 INFO:journalctl@ceph.mon.a.smithi076.stdout: data_block_index_type: 0 2024-09-18T12:05:21.980 INFO:journalctl@ceph.mon.a.smithi076.stdout: index_shortening: 1 2024-09-18T12:05:21.980 INFO:journalctl@ceph.mon.a.smithi076.stdout: data_block_hash_table_util_ratio: 0.750000 2024-09-18T12:05:21.980 INFO:journalctl@ceph.mon.a.smithi076.stdout: hash_index_allow_collision: 1 2024-09-18T12:05:21.980 INFO:journalctl@ceph.mon.a.smithi076.stdout: checksum: 1 2024-09-18T12:05:21.980 INFO:journalctl@ceph.mon.a.smithi076.stdout: no_block_cache: 0 2024-09-18T12:05:21.980 INFO:journalctl@ceph.mon.a.smithi076.stdout: block_cache: 0x56045a5911f0 2024-09-18T12:05:21.980 INFO:journalctl@ceph.mon.a.smithi076.stdout: block_cache_name: BinnedLRUCache 2024-09-18T12:05:21.980 INFO:journalctl@ceph.mon.a.smithi076.stdout: block_cache_options: 2024-09-18T12:05:21.980 INFO:journalctl@ceph.mon.a.smithi076.stdout: capacity : 536870912 2024-09-18T12:05:21.980 INFO:journalctl@ceph.mon.a.smithi076.stdout: num_shard_bits : 4 2024-09-18T12:05:21.981 INFO:journalctl@ceph.mon.a.smithi076.stdout: strict_capacity_limit : 0 2024-09-18T12:05:21.981 INFO:journalctl@ceph.mon.a.smithi076.stdout: high_pri_pool_ratio: 0.000 2024-09-18T12:05:21.981 INFO:journalctl@ceph.mon.a.smithi076.stdout: block_cache_compressed: (nil) 2024-09-18T12:05:21.981 INFO:journalctl@ceph.mon.a.smithi076.stdout: persistent_cache: (nil) 2024-09-18T12:05:21.981 INFO:journalctl@ceph.mon.a.smithi076.stdout: block_size: 4096 2024-09-18T12:05:21.981 INFO:journalctl@ceph.mon.a.smithi076.stdout: block_size_deviation: 10 2024-09-18T12:05:21.981 INFO:journalctl@ceph.mon.a.smithi076.stdout: block_restart_interval: 16 2024-09-18T12:05:21.981 INFO:journalctl@ceph.mon.a.smithi076.stdout: index_block_restart_interval: 1 2024-09-18T12:05:21.981 INFO:journalctl@ceph.mon.a.smithi076.stdout: metadata_block_size: 4096 2024-09-18T12:05:21.981 INFO:journalctl@ceph.mon.a.smithi076.stdout: partition_filters: 0 2024-09-18T12:05:21.981 INFO:journalctl@ceph.mon.a.smithi076.stdout: use_delta_encoding: 1 2024-09-18T12:05:21.981 INFO:journalctl@ceph.mon.a.smithi076.stdout: filter_policy: rocksdb.BuiltinBloomFilter 2024-09-18T12:05:21.981 INFO:journalctl@ceph.mon.a.smithi076.stdout: whole_key_filtering: 1 2024-09-18T12:05:21.982 INFO:journalctl@ceph.mon.a.smithi076.stdout: verify_compression: 0 2024-09-18T12:05:21.982 INFO:journalctl@ceph.mon.a.smithi076.stdout: read_amp_bytes_per_bit: 0 2024-09-18T12:05:21.982 INFO:journalctl@ceph.mon.a.smithi076.stdout: format_version: 4 2024-09-18T12:05:21.982 INFO:journalctl@ceph.mon.a.smithi076.stdout: enable_index_compression: 1 2024-09-18T12:05:21.982 INFO:journalctl@ceph.mon.a.smithi076.stdout: block_align: 0 2024-09-18T12:05:21.982 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.write_buffer_size: 33554432 2024-09-18T12:05:21.982 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.max_write_buffer_number: 2 2024-09-18T12:05:21.982 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.compression: NoCompression 2024-09-18T12:05:21.982 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.bottommost_compression: Disabled 2024-09-18T12:05:21.982 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.prefix_extractor: nullptr 2024-09-18T12:05:21.982 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-18T12:05:21.982 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.num_levels: 7 2024-09-18T12:05:21.982 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-18T12:05:21.983 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-18T12:05:21.983 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-18T12:05:21.983 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-18T12:05:21.983 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-18T12:05:21.983 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-18T12:05:21.983 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-18T12:05:21.983 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-18T12:05:21.983 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-18T12:05:21.983 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-18T12:05:21.983 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.compression_opts.window_bits: -14 2024-09-18T12:05:21.983 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.compression_opts.level: 32767 2024-09-18T12:05:21.983 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.compression_opts.strategy: 0 2024-09-18T12:05:21.983 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-18T12:05:21.984 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-18T12:05:21.984 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-18T12:05:21.984 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.compression_opts.enabled: false 2024-09-18T12:05:21.984 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-18T12:05:21.984 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-18T12:05:21.984 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-18T12:05:21.984 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.target_file_size_base: 67108864 2024-09-18T12:05:21.984 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.target_file_size_multiplier: 1 2024-09-18T12:05:21.984 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-18T12:05:21.984 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-18T12:05:21.984 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-18T12:05:21.984 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-18T12:05:21.984 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-18T12:05:21.985 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-18T12:05:21.985 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-18T12:05:21.985 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-18T12:05:21.985 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-18T12:05:21.985 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-18T12:05:21.985 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-18T12:05:21.985 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-18T12:05:21.985 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.arena_block_size: 4194304 2024-09-18T12:05:21.985 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-18T12:05:21.985 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-18T12:05:21.985 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-09-18T12:05:21.985 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.disable_auto_compactions: 0 2024-09-18T12:05:21.985 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-18T12:05:21.986 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-18T12:05:21.986 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-18T12:05:21.986 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-18T12:05:21.986 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-18T12:05:21.986 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-18T12:05:21.986 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-18T12:05:21.986 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-18T12:05:21.986 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-18T12:05:21.986 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-18T12:05:21.986 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-18T12:05:21.986 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.inplace_update_support: 0 2024-09-18T12:05:21.986 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.inplace_update_num_locks: 10000 2024-09-18T12:05:21.987 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-18T12:05:21.987 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-18T12:05:21.987 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.memtable_huge_page_size: 0 2024-09-18T12:05:21.987 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.bloom_locality: 0 2024-09-18T12:05:21.987 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.max_successive_merges: 0 2024-09-18T12:05:21.987 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.optimize_filters_for_hits: 0 2024-09-18T12:05:21.987 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.paranoid_file_checks: 0 2024-09-18T12:05:21.987 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.force_consistency_checks: 1 2024-09-18T12:05:21.987 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.report_bg_io_stats: 0 2024-09-18T12:05:21.987 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.ttl: 2592000 2024-09-18T12:05:21.987 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.periodic_compaction_seconds: 0 2024-09-18T12:05:21.987 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.enable_blob_files: false 2024-09-18T12:05:21.987 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.min_blob_size: 0 2024-09-18T12:05:21.988 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.blob_file_size: 268435456 2024-09-18T12:05:21.988 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.blob_compression_type: NoCompression 2024-09-18T12:05:21.988 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.enable_blob_garbage_collection: false 2024-09-18T12:05:21.988 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-18T12:05:21.988 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: [db/version_set.cc:4764] Recovered from manifest file:/var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000009 succeeded,manifest_file_number is 9, next_file_number is 11, last_sequence is 5, log_number is 5,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-09-18T12:05:21.988 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: [db/version_set.cc:4779] Column family [default] (ID 0), log number is 5 2024-09-18T12:05:21.988 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: [db/version_set.cc:4082] Creating manifest 13 2024-09-18T12:05:21.988 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726661121917781, "job": 1, "event": "recovery_started", "wal_files": [10]} 2024-09-18T12:05:21.988 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: [db/db_impl/db_impl_open.cc:845] Recovering log #10 mode 2 2024-09-18T12:05:21.988 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: [table/block_based/filter_policy.cc:991] Using legacy Bloom filter with high (20) bits/key. Dramatic filter space and/or accuracy improvement is available with format_version>=5. 2024-09-18T12:05:21.988 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726661121920426, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 14, "file_size": 79592, "file_checksum": "", "file_checksum_func_name": "Unknown", "table_properties": {"data_size": 77824, "index_size": 230, "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": 9759, "raw_average_key_size": 47, "raw_value_size": 72231, "raw_average_value_size": 348, "num_data_blocks": 10, "num_entries": 207, "num_deletions": 3, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "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; ", "creation_time": 1726661121, "oldest_key_time": 0, "file_creation_time": 0, "db_id": "a207a7c3-66b0-417b-b73a-b50c4e335fa1", "db_session_id": "ZA0YJJZIRV7FP8A8U93Q"}} 2024-09-18T12:05:21.988 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: [db/version_set.cc:4082] Creating manifest 15 2024-09-18T12:05:21.988 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726661121920800, "job": 1, "event": "recovery_finished"} 2024-09-18T12:05:21.988 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: [file/delete_scheduler.cc:69] Deleted file /var/lib/ceph/mon/ceph-a/store.db/000010.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-18T12:05:21.989 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: [db/db_impl/db_impl_open.cc:1700] SstFileManager instance 0x56045a5c4700 2024-09-18T12:05:21.989 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: DB pointer 0x56045a594000 2024-09-18T12:05:21.989 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: [db/db_impl/db_impl.cc:901] ------- DUMPING STATS ------- 2024-09-18T12:05:21.989 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: rocksdb: [db/db_impl/db_impl.cc:903] 2024-09-18T12:05:21.989 INFO:journalctl@ceph.mon.a.smithi076.stdout: ** DB Stats ** 2024-09-18T12:05:21.989 INFO:journalctl@ceph.mon.a.smithi076.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-18T12:05:21.989 INFO:journalctl@ceph.mon.a.smithi076.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-18T12:05:21.989 INFO:journalctl@ceph.mon.a.smithi076.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-18T12:05:21.989 INFO:journalctl@ceph.mon.a.smithi076.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-18T12:05:21.989 INFO:journalctl@ceph.mon.a.smithi076.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-18T12:05:21.989 INFO:journalctl@ceph.mon.a.smithi076.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2024-09-18T12:05:21.989 INFO:journalctl@ceph.mon.a.smithi076.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-18T12:05:21.990 INFO:journalctl@ceph.mon.a.smithi076.stdout: 2024-09-18T12:05:21.990 INFO:journalctl@ceph.mon.a.smithi076.stdout: ** Compaction Stats [default] ** 2024-09-18T12:05:21.990 INFO:journalctl@ceph.mon.a.smithi076.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 2024-09-18T12:05:21.990 INFO:journalctl@ceph.mon.a.smithi076.stdout: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-18T12:05:21.990 INFO:journalctl@ceph.mon.a.smithi076.stdout: L0 2/0 79.51 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 31.5 0.00 0.00 1 0.002 0 0 2024-09-18T12:05:21.990 INFO:journalctl@ceph.mon.a.smithi076.stdout: Sum 2/0 79.51 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 31.5 0.00 0.00 1 0.002 0 0 2024-09-18T12:05:21.990 INFO:journalctl@ceph.mon.a.smithi076.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 31.5 0.00 0.00 1 0.002 0 0 2024-09-18T12:05:21.990 INFO:journalctl@ceph.mon.a.smithi076.stdout: 2024-09-18T12:05:21.990 INFO:journalctl@ceph.mon.a.smithi076.stdout: ** Compaction Stats [default] ** 2024-09-18T12:05:21.990 INFO:journalctl@ceph.mon.a.smithi076.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 2024-09-18T12:05:21.990 INFO:journalctl@ceph.mon.a.smithi076.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-18T12:05:21.990 INFO:journalctl@ceph.mon.a.smithi076.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 31.5 0.00 0.00 1 0.002 0 0 2024-09-18T12:05:21.990 INFO:journalctl@ceph.mon.a.smithi076.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-18T12:05:21.991 INFO:journalctl@ceph.mon.a.smithi076.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-09-18T12:05:21.991 INFO:journalctl@ceph.mon.a.smithi076.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-18T12:05:21.991 INFO:journalctl@ceph.mon.a.smithi076.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-09-18T12:05:21.991 INFO:journalctl@ceph.mon.a.smithi076.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-09-18T12:05:21.991 INFO:journalctl@ceph.mon.a.smithi076.stdout: AddFile(Keys): cumulative 0, interval 0 2024-09-18T12:05:21.991 INFO:journalctl@ceph.mon.a.smithi076.stdout: Cumulative compaction: 0.00 GB write, 15.25 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-18T12:05:21.991 INFO:journalctl@ceph.mon.a.smithi076.stdout: Interval compaction: 0.00 GB write, 15.25 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-18T12:05:21.991 INFO:journalctl@ceph.mon.a.smithi076.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-18T12:05:21.991 INFO:journalctl@ceph.mon.a.smithi076.stdout: 2024-09-18T12:05:21.991 INFO:journalctl@ceph.mon.a.smithi076.stdout: ** File Read Latency Histogram By Level [default] ** 2024-09-18T12:05:21.991 INFO:journalctl@ceph.mon.a.smithi076.stdout: 2024-09-18T12:05:21.991 INFO:journalctl@ceph.mon.a.smithi076.stdout: ** Compaction Stats [default] ** 2024-09-18T12:05:21.992 INFO:journalctl@ceph.mon.a.smithi076.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 2024-09-18T12:05:21.992 INFO:journalctl@ceph.mon.a.smithi076.stdout: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-18T12:05:21.992 INFO:journalctl@ceph.mon.a.smithi076.stdout: L0 2/0 79.51 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 31.5 0.00 0.00 1 0.002 0 0 2024-09-18T12:05:21.992 INFO:journalctl@ceph.mon.a.smithi076.stdout: Sum 2/0 79.51 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 31.5 0.00 0.00 1 0.002 0 0 2024-09-18T12:05:21.992 INFO:journalctl@ceph.mon.a.smithi076.stdout: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2024-09-18T12:05:21.992 INFO:journalctl@ceph.mon.a.smithi076.stdout: 2024-09-18T12:05:21.992 INFO:journalctl@ceph.mon.a.smithi076.stdout: ** Compaction Stats [default] ** 2024-09-18T12:05:21.992 INFO:journalctl@ceph.mon.a.smithi076.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 2024-09-18T12:05:21.992 INFO:journalctl@ceph.mon.a.smithi076.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-18T12:05:21.992 INFO:journalctl@ceph.mon.a.smithi076.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 31.5 0.00 0.00 1 0.002 0 0 2024-09-18T12:05:21.992 INFO:journalctl@ceph.mon.a.smithi076.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-18T12:05:21.992 INFO:journalctl@ceph.mon.a.smithi076.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-09-18T12:05:21.993 INFO:journalctl@ceph.mon.a.smithi076.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-18T12:05:21.993 INFO:journalctl@ceph.mon.a.smithi076.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-09-18T12:05:21.993 INFO:journalctl@ceph.mon.a.smithi076.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-09-18T12:05:21.993 INFO:journalctl@ceph.mon.a.smithi076.stdout: AddFile(Keys): cumulative 0, interval 0 2024-09-18T12:05:21.993 INFO:journalctl@ceph.mon.a.smithi076.stdout: Cumulative compaction: 0.00 GB write, 15.16 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-18T12:05:21.993 INFO:journalctl@ceph.mon.a.smithi076.stdout: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-18T12:05:21.993 INFO:journalctl@ceph.mon.a.smithi076.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-18T12:05:21.993 INFO:journalctl@ceph.mon.a.smithi076.stdout: 2024-09-18T12:05:21.993 INFO:journalctl@ceph.mon.a.smithi076.stdout: ** File Read Latency Histogram By Level [default] ** 2024-09-18T12:05:21.993 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: starting mon.a rank 0 at public addrs [v2:172.21.15.76:3300/0,v1:172.21.15.76:6789/0] at bind addrs [v2:172.21.15.76:3300/0,v1:172.21.15.76:6789/0] mon_data /var/lib/ceph/mon/ceph-a fsid 1afb0892-75b6-11ef-bceb-c7b262605968 2024-09-18T12:05:21.993 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: mon.a@-1(???) e1 preinit fsid 1afb0892-75b6-11ef-bceb-c7b262605968 2024-09-18T12:05:21.993 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: mon.a@-1(???).mds e1 new map 2024-09-18T12:05:21.994 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: mon.a@-1(???).mds e1 print_map 2024-09-18T12:05:21.994 INFO:journalctl@ceph.mon.a.smithi076.stdout: e1 2024-09-18T12:05:21.994 INFO:journalctl@ceph.mon.a.smithi076.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-09-18T12:05:21.994 INFO:journalctl@ceph.mon.a.smithi076.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-18T12:05:21.994 INFO:journalctl@ceph.mon.a.smithi076.stdout: legacy client fscid: -1 2024-09-18T12:05:21.994 INFO:journalctl@ceph.mon.a.smithi076.stdout: 2024-09-18T12:05:21.994 INFO:journalctl@ceph.mon.a.smithi076.stdout: No filesystems configured 2024-09-18T12:05:21.994 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: mon.a@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-18T12:05:21.994 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-18T12:05:21.994 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-18T12:05:21.994 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-18T12:05:21.994 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: mon.a@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-09-18T12:05:21.994 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 bash[27564]: 79e55293c26c145e19495deefbe9093a54606e3f28f7ba97a31a07ca71364301 2024-09-18T12:05:21.994 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 systemd[1]: Started Ceph mon.a for 1afb0892-75b6-11ef-bceb-c7b262605968. 2024-09-18T12:05:21.995 INFO:teuthology.orchestra.run.smithi076.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-09-18T12:05:22.304 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: mon.a is new leader, mons a in quorum (ranks 0) 2024-09-18T12:05:22.304 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: monmap e1: 1 mons at {a=[v2:172.21.15.76:3300/0,v1:172.21.15.76:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-18T12:05:22.304 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: fsmap 2024-09-18T12:05:22.304 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: osdmap e1: 0 total, 0 up, 0 in 2024-09-18T12:05:22.304 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:21 smithi076 ceph-mon[27582]: mgrmap e1: no daemons active 2024-09-18T12:05:23.009 INFO:teuthology.orchestra.run.smithi076.stdout:Wrote config to /etc/ceph/ceph.conf 2024-09-18T12:05:23.010 INFO:teuthology.orchestra.run.smithi076.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-09-18T12:05:23.010 INFO:teuthology.orchestra.run.smithi076.stdout:Creating mgr... 2024-09-18T12:05:23.010 INFO:teuthology.orchestra.run.smithi076.stdout:Verifying port 0.0.0.0:9283 ... 2024-09-18T12:05:23.010 INFO:teuthology.orchestra.run.smithi076.stdout:Verifying port 0.0.0.0:8765 ... 2024-09-18T12:05:23.187 INFO:teuthology.orchestra.run.smithi076.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-1afb0892-75b6-11ef-bceb-c7b262605968@mgr.a 2024-09-18T12:05:23.187 INFO:teuthology.orchestra.run.smithi076.stdout:systemctl: stderr Failed to reset failed state of unit ceph-1afb0892-75b6-11ef-bceb-c7b262605968@mgr.a.service: Unit ceph-1afb0892-75b6-11ef-bceb-c7b262605968@mgr.a.service not loaded. 2024-09-18T12:05:23.333 INFO:teuthology.orchestra.run.smithi076.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-1afb0892-75b6-11ef-bceb-c7b262605968.target.wants/ceph-1afb0892-75b6-11ef-bceb-c7b262605968@mgr.a.service → /etc/systemd/system/ceph-1afb0892-75b6-11ef-bceb-c7b262605968@.service. 2024-09-18T12:05:23.661 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:23 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/1202423517' entity='client.admin' 2024-09-18T12:05:23.877 INFO:teuthology.orchestra.run.smithi076.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-18T12:05:23.877 INFO:teuthology.orchestra.run.smithi076.stdout:systemctl: stdout disabled 2024-09-18T12:05:23.886 INFO:teuthology.orchestra.run.smithi076.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-18T12:05:23.886 INFO:teuthology.orchestra.run.smithi076.stdout:systemctl: stdout inactive 2024-09-18T12:05:23.886 INFO:teuthology.orchestra.run.smithi076.stdout:firewalld.service is not enabled 2024-09-18T12:05:23.886 INFO:teuthology.orchestra.run.smithi076.stdout:Not possible to enable service . firewalld.service is not available 2024-09-18T12:05:23.897 INFO:teuthology.orchestra.run.smithi076.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-18T12:05:23.897 INFO:teuthology.orchestra.run.smithi076.stdout:systemctl: stdout disabled 2024-09-18T12:05:23.906 INFO:teuthology.orchestra.run.smithi076.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-18T12:05:23.906 INFO:teuthology.orchestra.run.smithi076.stdout:systemctl: stdout inactive 2024-09-18T12:05:23.906 INFO:teuthology.orchestra.run.smithi076.stdout:firewalld.service is not enabled 2024-09-18T12:05:23.906 INFO:teuthology.orchestra.run.smithi076.stdout:Not possible to open ports <[9283, 8765]>. firewalld.service is not available 2024-09-18T12:05:23.906 INFO:teuthology.orchestra.run.smithi076.stdout:Waiting for mgr to start... 2024-09-18T12:05:23.906 INFO:teuthology.orchestra.run.smithi076.stdout:Waiting for mgr... 2024-09-18T12:05:24.032 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:24 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:24.007+0000 7f530a948ec0 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-18T12:05:24.323 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:24 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:24.133+0000 7f530a948ec0 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-18T12:05:24.323 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:24 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:24.275+0000 7f530a948ec0 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-18T12:05:24.606 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:24 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/3162792842' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-18T12:05:24.606 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:24 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:24.545+0000 7f530a948ec0 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-18T12:05:24.606 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:24 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:24.604+0000 7f530a948ec0 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-18T12:05:24.951 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:24 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:24.767+0000 7f530a948ec0 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-18T12:05:25.189 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout 2024-09-18T12:05:25.189 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout { 2024-09-18T12:05:25.189 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "fsid": "1afb0892-75b6-11ef-bceb-c7b262605968", 2024-09-18T12:05:25.189 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "health": { 2024-09-18T12:05:25.189 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-18T12:05:25.189 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-18T12:05:25.189 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-18T12:05:25.189 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout }, 2024-09-18T12:05:25.190 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-18T12:05:25.190 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-18T12:05:25.190 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout 0 2024-09-18T12:05:25.190 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout ], 2024-09-18T12:05:25.190 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-18T12:05:25.190 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "a" 2024-09-18T12:05:25.190 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout ], 2024-09-18T12:05:25.190 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "quorum_age": 2, 2024-09-18T12:05:25.190 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-18T12:05:25.190 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-18T12:05:25.190 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "quincy", 2024-09-18T12:05:25.190 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-18T12:05:25.191 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout }, 2024-09-18T12:05:25.191 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-18T12:05:25.191 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-18T12:05:25.191 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-18T12:05:25.191 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-18T12:05:25.191 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-18T12:05:25.191 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-18T12:05:25.191 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-18T12:05:25.191 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-18T12:05:25.194 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout }, 2024-09-18T12:05:25.195 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-18T12:05:25.195 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-18T12:05:25.195 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-18T12:05:25.195 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-18T12:05:25.195 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-18T12:05:25.195 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-18T12:05:25.195 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-18T12:05:25.195 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-18T12:05:25.195 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-18T12:05:25.195 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout }, 2024-09-18T12:05:25.195 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-18T12:05:25.195 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-18T12:05:25.195 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-18T12:05:25.196 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-18T12:05:25.196 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout }, 2024-09-18T12:05:25.196 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-18T12:05:25.196 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-18T12:05:25.196 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-18T12:05:25.196 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-18T12:05:25.196 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-18T12:05:25.196 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-18T12:05:25.196 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "restful" 2024-09-18T12:05:25.196 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout ], 2024-09-18T12:05:25.196 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-18T12:05:25.196 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout }, 2024-09-18T12:05:25.196 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-18T12:05:25.196 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-18T12:05:25.197 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "modified": "2024-09-18T12:05:16.292857+0000", 2024-09-18T12:05:25.197 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-18T12:05:25.197 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout }, 2024-09-18T12:05:25.197 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-18T12:05:25.197 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout } 2024-09-18T12:05:25.197 INFO:teuthology.orchestra.run.smithi076.stdout:mgr not available, waiting (1/15)... 2024-09-18T12:05:26.073 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:25 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:25.611+0000 7f530a948ec0 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-18T12:05:26.073 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:25 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:25.674+0000 7f530a948ec0 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-18T12:05:26.670 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:26 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:26.381+0000 7f530a948ec0 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-18T12:05:26.671 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:26 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:26.492+0000 7f530a948ec0 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-18T12:05:26.671 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:26 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:26.611+0000 7f530a948ec0 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-18T12:05:27.050 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:26 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:26.669+0000 7f530a948ec0 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-18T12:05:27.050 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:26 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:26.793+0000 7f530a948ec0 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-18T12:05:27.050 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:26 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:26.858+0000 7f530a948ec0 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-18T12:05:27.050 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:26 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:26.915+0000 7f530a948ec0 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-18T12:05:27.050 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:27 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:27.048+0000 7f530a948ec0 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-18T12:05:27.313 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:27 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:27.110+0000 7f530a948ec0 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-18T12:05:27.313 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:27 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:27.173+0000 7f530a948ec0 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-18T12:05:27.313 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:27 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:27.257+0000 7f530a948ec0 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-18T12:05:27.573 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:27 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:27.314+0000 7f530a948ec0 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-18T12:05:27.573 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:27 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:27.372+0000 7f530a948ec0 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-18T12:05:28.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:27 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/1330990477' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-18T12:05:28.256 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout 2024-09-18T12:05:28.256 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout { 2024-09-18T12:05:28.256 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "fsid": "1afb0892-75b6-11ef-bceb-c7b262605968", 2024-09-18T12:05:28.256 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "health": { 2024-09-18T12:05:28.256 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-18T12:05:28.256 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-18T12:05:28.256 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-18T12:05:28.256 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout }, 2024-09-18T12:05:28.257 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-18T12:05:28.257 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-18T12:05:28.257 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout 0 2024-09-18T12:05:28.257 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout ], 2024-09-18T12:05:28.257 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-18T12:05:28.257 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "a" 2024-09-18T12:05:28.257 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout ], 2024-09-18T12:05:28.257 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "quorum_age": 5, 2024-09-18T12:05:28.257 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-18T12:05:28.258 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-18T12:05:28.258 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "quincy", 2024-09-18T12:05:28.258 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-18T12:05:28.258 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout }, 2024-09-18T12:05:28.258 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-18T12:05:28.258 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-18T12:05:28.258 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-18T12:05:28.258 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-18T12:05:28.258 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-18T12:05:28.258 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-18T12:05:28.258 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-18T12:05:28.259 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-18T12:05:28.259 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout }, 2024-09-18T12:05:28.259 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-18T12:05:28.259 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-18T12:05:28.259 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-18T12:05:28.259 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-18T12:05:28.259 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-18T12:05:28.259 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-18T12:05:28.260 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-18T12:05:28.260 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-18T12:05:28.260 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-18T12:05:28.260 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout }, 2024-09-18T12:05:28.260 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-18T12:05:28.260 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-18T12:05:28.260 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-18T12:05:28.260 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-18T12:05:28.260 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout }, 2024-09-18T12:05:28.260 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-18T12:05:28.260 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-18T12:05:28.260 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-18T12:05:28.260 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-18T12:05:28.261 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-18T12:05:28.261 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-18T12:05:28.261 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "restful" 2024-09-18T12:05:28.261 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout ], 2024-09-18T12:05:28.261 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-18T12:05:28.261 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout }, 2024-09-18T12:05:28.261 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-18T12:05:28.261 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-18T12:05:28.261 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "modified": "2024-09-18T12:05:16.292857+0000", 2024-09-18T12:05:28.261 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-18T12:05:28.261 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout }, 2024-09-18T12:05:28.261 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-18T12:05:28.262 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout } 2024-09-18T12:05:28.262 INFO:teuthology.orchestra.run.smithi076.stdout:mgr not available, waiting (2/15)... 2024-09-18T12:05:28.573 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:28 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:28.136+0000 7f530a948ec0 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-18T12:05:29.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:28 smithi076 ceph-mon[27582]: Activating manager daemon a 2024-09-18T12:05:29.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:28 smithi076 ceph-mon[27582]: mgrmap e2: a(active, starting, since 0.00272571s) 2024-09-18T12:05:29.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:28 smithi076 ceph-mon[27582]: from='mgr.14100 172.21.15.76:0/1986550756' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-18T12:05:29.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:28 smithi076 ceph-mon[27582]: from='mgr.14100 172.21.15.76:0/1986550756' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-18T12:05:29.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:28 smithi076 ceph-mon[27582]: from='mgr.14100 172.21.15.76:0/1986550756' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-18T12:05:29.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:28 smithi076 ceph-mon[27582]: from='mgr.14100 172.21.15.76:0/1986550756' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-18T12:05:29.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:28 smithi076 ceph-mon[27582]: from='mgr.14100 172.21.15.76:0/1986550756' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-09-18T12:05:29.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:28 smithi076 ceph-mon[27582]: Manager daemon a is now available 2024-09-18T12:05:29.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:28 smithi076 ceph-mon[27582]: from='mgr.14100 172.21.15.76:0/1986550756' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-09-18T12:05:29.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:28 smithi076 ceph-mon[27582]: from='mgr.14100 172.21.15.76:0/1986550756' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-09-18T12:05:29.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:28 smithi076 ceph-mon[27582]: from='mgr.14100 172.21.15.76:0/1986550756' entity='mgr.a' 2024-09-18T12:05:29.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:28 smithi076 ceph-mon[27582]: from='mgr.14100 172.21.15.76:0/1986550756' entity='mgr.a' 2024-09-18T12:05:29.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:28 smithi076 ceph-mon[27582]: from='mgr.14100 172.21.15.76:0/1986550756' entity='mgr.a' 2024-09-18T12:05:30.481 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:30 smithi076 ceph-mon[27582]: mgrmap e3: a(active, since 1.00617s) 2024-09-18T12:05:31.462 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:31 smithi076 ceph-mon[27582]: mgrmap e4: a(active, since 2s) 2024-09-18T12:05:31.462 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:31 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/3914951559' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-18T12:05:31.470 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout 2024-09-18T12:05:31.470 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout { 2024-09-18T12:05:31.470 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "fsid": "1afb0892-75b6-11ef-bceb-c7b262605968", 2024-09-18T12:05:31.470 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "health": { 2024-09-18T12:05:31.470 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-18T12:05:31.470 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-18T12:05:31.470 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-18T12:05:31.471 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout }, 2024-09-18T12:05:31.471 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-18T12:05:31.471 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-18T12:05:31.471 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout 0 2024-09-18T12:05:31.471 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout ], 2024-09-18T12:05:31.471 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-18T12:05:31.471 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "a" 2024-09-18T12:05:31.471 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout ], 2024-09-18T12:05:31.471 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "quorum_age": 8, 2024-09-18T12:05:31.471 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-18T12:05:31.471 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-18T12:05:31.471 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "quincy", 2024-09-18T12:05:31.472 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-18T12:05:31.472 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout }, 2024-09-18T12:05:31.472 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-18T12:05:31.472 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-18T12:05:31.472 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-18T12:05:31.472 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-18T12:05:31.472 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-18T12:05:31.472 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-18T12:05:31.472 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-18T12:05:31.472 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-18T12:05:31.472 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout }, 2024-09-18T12:05:31.472 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-18T12:05:31.473 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-18T12:05:31.473 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-18T12:05:31.473 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-18T12:05:31.473 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-18T12:05:31.473 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-18T12:05:31.473 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-18T12:05:31.473 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-18T12:05:31.473 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-18T12:05:31.473 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout }, 2024-09-18T12:05:31.473 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-18T12:05:31.473 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-18T12:05:31.473 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-18T12:05:31.474 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-18T12:05:31.474 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout }, 2024-09-18T12:05:31.474 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-18T12:05:31.474 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-18T12:05:31.474 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-18T12:05:31.474 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-18T12:05:31.474 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-18T12:05:31.474 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-18T12:05:31.474 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "restful" 2024-09-18T12:05:31.474 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout ], 2024-09-18T12:05:31.474 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-18T12:05:31.475 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout }, 2024-09-18T12:05:31.475 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-18T12:05:31.475 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-18T12:05:31.475 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "modified": "2024-09-18T12:05:16.292857+0000", 2024-09-18T12:05:31.475 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-18T12:05:31.475 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout }, 2024-09-18T12:05:31.475 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-18T12:05:31.475 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout } 2024-09-18T12:05:31.475 INFO:teuthology.orchestra.run.smithi076.stdout:mgr is available 2024-09-18T12:05:32.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:32 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/304260210' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-09-18T12:05:32.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:32 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/304260210' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-18T12:05:32.613 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout 2024-09-18T12:05:32.613 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout [global] 2024-09-18T12:05:32.613 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout fsid = 1afb0892-75b6-11ef-bceb-c7b262605968 2024-09-18T12:05:32.613 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-09-18T12:05:32.613 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-18T12:05:32.613 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-18T12:05:32.613 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-18T12:05:32.614 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-18T12:05:32.614 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout 2024-09-18T12:05:32.614 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-18T12:05:32.614 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-18T12:05:32.614 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout 2024-09-18T12:05:32.614 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout [osd] 2024-09-18T12:05:32.614 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-18T12:05:32.614 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-18T12:05:32.614 INFO:teuthology.orchestra.run.smithi076.stdout:Enabling cephadm module... 2024-09-18T12:05:33.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:33 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/3222138183' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-09-18T12:05:33.573 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:33 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: ignoring --setuser ceph since I am not root 2024-09-18T12:05:33.573 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:33 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: ignoring --setgroup ceph since I am not root 2024-09-18T12:05:33.573 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:33 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:33.378+0000 7f42363a2ec0 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-18T12:05:33.573 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:33 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:33.433+0000 7f42363a2ec0 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-18T12:05:33.573 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:33 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:33.502+0000 7f42363a2ec0 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-18T12:05:33.868 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:33 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:33.626+0000 7f42363a2ec0 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-18T12:05:33.868 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:33 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:33.762+0000 7f42363a2ec0 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-18T12:05:34.196 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:34 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:34.023+0000 7f42363a2ec0 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-18T12:05:34.196 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:34 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:34.085+0000 7f42363a2ec0 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-18T12:05:34.494 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:34 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/3222138183' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-18T12:05:34.494 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:34 smithi076 ceph-mon[27582]: mgrmap e5: a(active, since 5s) 2024-09-18T12:05:34.494 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:34 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:34.251+0000 7f42363a2ec0 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-18T12:05:35.103 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout { 2024-09-18T12:05:35.103 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-09-18T12:05:35.103 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-18T12:05:35.103 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-09-18T12:05:35.103 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-18T12:05:35.103 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout } 2024-09-18T12:05:35.104 INFO:teuthology.orchestra.run.smithi076.stdout:Waiting for the mgr to restart... 2024-09-18T12:05:35.104 INFO:teuthology.orchestra.run.smithi076.stdout:Waiting for mgr epoch 5... 2024-09-18T12:05:35.361 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:35 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/1592489318' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-09-18T12:05:35.362 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:35 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:35.115+0000 7f42363a2ec0 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-18T12:05:35.362 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:35 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:35.182+0000 7f42363a2ec0 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-18T12:05:36.146 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:35 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:35.894+0000 7f42363a2ec0 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-18T12:05:36.146 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:36 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:36.004+0000 7f42363a2ec0 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-18T12:05:36.397 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:36 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:36.144+0000 7f42363a2ec0 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-18T12:05:36.398 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:36 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:36.204+0000 7f42363a2ec0 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-18T12:05:36.398 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:36 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:36.330+0000 7f42363a2ec0 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-18T12:05:36.398 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:36 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:36.396+0000 7f42363a2ec0 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-18T12:05:36.651 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:36 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:36.454+0000 7f42363a2ec0 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-18T12:05:36.651 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:36 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:36.586+0000 7f42363a2ec0 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-18T12:05:36.651 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:36 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:36.649+0000 7f42363a2ec0 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-18T12:05:36.908 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:36 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:36.713+0000 7f42363a2ec0 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-18T12:05:36.908 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:36 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:36.793+0000 7f42363a2ec0 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-18T12:05:36.908 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:36 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:36.850+0000 7f42363a2ec0 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-18T12:05:36.908 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:36 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:36.906+0000 7f42363a2ec0 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-18T12:05:38.073 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:37 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:37.638+0000 7f42363a2ec0 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-18T12:05:38.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:37 smithi076 ceph-mon[27582]: Active manager daemon a restarted 2024-09-18T12:05:38.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:37 smithi076 ceph-mon[27582]: Activating manager daemon a 2024-09-18T12:05:38.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:37 smithi076 ceph-mon[27582]: osdmap e2: 0 total, 0 up, 0 in 2024-09-18T12:05:38.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:37 smithi076 ceph-mon[27582]: mgrmap e6: a(active, starting, since 0.00297104s) 2024-09-18T12:05:38.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:37 smithi076 ceph-mon[27582]: from='mgr.14118 172.21.15.76:0/3188185440' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-18T12:05:38.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:37 smithi076 ceph-mon[27582]: from='mgr.14118 172.21.15.76:0/3188185440' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-09-18T12:05:38.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:37 smithi076 ceph-mon[27582]: from='mgr.14118 172.21.15.76:0/3188185440' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-18T12:05:38.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:37 smithi076 ceph-mon[27582]: from='mgr.14118 172.21.15.76:0/3188185440' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-18T12:05:38.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:37 smithi076 ceph-mon[27582]: from='mgr.14118 172.21.15.76:0/3188185440' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-18T12:05:38.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:37 smithi076 ceph-mon[27582]: Manager daemon a is now available 2024-09-18T12:05:38.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:37 smithi076 ceph-mon[27582]: from='mgr.14118 172.21.15.76:0/3188185440' entity='mgr.a' 2024-09-18T12:05:38.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:37 smithi076 ceph-mon[27582]: from='mgr.14118 172.21.15.76:0/3188185440' entity='mgr.a' 2024-09-18T12:05:38.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:37 smithi076 ceph-mon[27582]: from='mgr.14118 172.21.15.76:0/3188185440' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:05:38.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:37 smithi076 ceph-mon[27582]: from='mgr.14118 172.21.15.76:0/3188185440' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:05:38.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:37 smithi076 ceph-mon[27582]: from='mgr.14118 172.21.15.76:0/3188185440' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-09-18T12:05:38.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:37 smithi076 ceph-mon[27582]: from='mgr.14118 172.21.15.76:0/3188185440' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-09-18T12:05:38.957 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:38 smithi076 ceph-mon[27582]: Found migration_current of "None". Setting to last migration. 2024-09-18T12:05:38.957 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:38 smithi076 ceph-mon[27582]: mgrmap e7: a(active, since 1.00492s) 2024-09-18T12:05:39.267 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:39 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:39.178+0000 7f41e8790640 -1 log_channel(cephadm) log [ERR] : [18/Sep/2024:12:05:39] ENGINE Error in HTTPServer.serve 2024-09-18T12:05:39.267 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:39 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: Traceback (most recent call last): 2024-09-18T12:05:39.267 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:39 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-18T12:05:39.267 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:39 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: self._connections.run(self.expiration_interval) 2024-09-18T12:05:39.267 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:39 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-18T12:05:39.267 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:39 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: self._run(expiration_interval) 2024-09-18T12:05:39.268 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:39 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-18T12:05:39.268 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:39 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: new_conn = self._from_server_socket(self.server.socket) 2024-09-18T12:05:39.268 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:39 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-18T12:05:39.268 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:39 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-18T12:05:39.268 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:39 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-18T12:05:39.268 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:39 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: s = self.context.wrap_socket( 2024-09-18T12:05:39.268 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:39 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-18T12:05:39.268 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:39 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: return self.sslsocket_class._create( 2024-09-18T12:05:39.268 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:39 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-18T12:05:39.268 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:39 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: self.do_handshake() 2024-09-18T12:05:39.268 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:39 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-18T12:05:39.268 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:39 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: self._sslobj.do_handshake() 2024-09-18T12:05:39.269 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:39 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-18T12:05:39.269 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:39 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:39.270 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout { 2024-09-18T12:05:39.270 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-09-18T12:05:39.270 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-18T12:05:39.270 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout } 2024-09-18T12:05:39.270 INFO:teuthology.orchestra.run.smithi076.stdout:mgr epoch 5 is available 2024-09-18T12:05:39.270 INFO:teuthology.orchestra.run.smithi076.stdout:Setting orchestrator backend to cephadm... 2024-09-18T12:05:40.424 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:40 smithi076 ceph-mon[27582]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-18T12:05:40.425 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:40 smithi076 ceph-mon[27582]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-18T12:05:40.425 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:40 smithi076 ceph-mon[27582]: [18/Sep/2024:12:05:39] ENGINE Bus STARTING 2024-09-18T12:05:40.425 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:40 smithi076 ceph-mon[27582]: [18/Sep/2024:12:05:39] ENGINE Serving on https://172.21.15.76:7150 2024-09-18T12:05:40.425 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:40 smithi076 ceph-mon[27582]: [18/Sep/2024:12:05:39] ENGINE Bus STARTED 2024-09-18T12:05:40.425 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:40 smithi076 ceph-mon[27582]: [18/Sep/2024:12:05:39] ENGINE Error in HTTPServer.serve 2024-09-18T12:05:40.425 INFO:journalctl@ceph.mon.a.smithi076.stdout: Traceback (most recent call last): 2024-09-18T12:05:40.425 INFO:journalctl@ceph.mon.a.smithi076.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-18T12:05:40.425 INFO:journalctl@ceph.mon.a.smithi076.stdout: self._connections.run(self.expiration_interval) 2024-09-18T12:05:40.425 INFO:journalctl@ceph.mon.a.smithi076.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-18T12:05:40.425 INFO:journalctl@ceph.mon.a.smithi076.stdout: self._run(expiration_interval) 2024-09-18T12:05:40.425 INFO:journalctl@ceph.mon.a.smithi076.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-18T12:05:40.425 INFO:journalctl@ceph.mon.a.smithi076.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-18T12:05:40.426 INFO:journalctl@ceph.mon.a.smithi076.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-18T12:05:40.426 INFO:journalctl@ceph.mon.a.smithi076.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-18T12:05:40.426 INFO:journalctl@ceph.mon.a.smithi076.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-18T12:05:40.426 INFO:journalctl@ceph.mon.a.smithi076.stdout: s = self.context.wrap_socket( 2024-09-18T12:05:40.426 INFO:journalctl@ceph.mon.a.smithi076.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-18T12:05:40.426 INFO:journalctl@ceph.mon.a.smithi076.stdout: return self.sslsocket_class._create( 2024-09-18T12:05:40.426 INFO:journalctl@ceph.mon.a.smithi076.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-18T12:05:40.426 INFO:journalctl@ceph.mon.a.smithi076.stdout: self.do_handshake() 2024-09-18T12:05:40.426 INFO:journalctl@ceph.mon.a.smithi076.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-18T12:05:40.426 INFO:journalctl@ceph.mon.a.smithi076.stdout: self._sslobj.do_handshake() 2024-09-18T12:05:40.426 INFO:journalctl@ceph.mon.a.smithi076.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-18T12:05:40.426 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:40 smithi076 ceph-mon[27582]: from='mgr.14118 172.21.15.76:0/3188185440' entity='mgr.a' 2024-09-18T12:05:40.426 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:40 smithi076 ceph-mon[27582]: from='mgr.14118 172.21.15.76:0/3188185440' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:05:40.426 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:40 smithi076 ceph-mon[27582]: from='mgr.14118 172.21.15.76:0/3188185440' entity='mgr.a' 2024-09-18T12:05:40.427 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:40 smithi076 ceph-mon[27582]: from='mgr.14118 172.21.15.76:0/3188185440' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:05:41.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:41 smithi076 ceph-mon[27582]: from='client.14130 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:05:41.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:41 smithi076 ceph-mon[27582]: mgrmap e8: a(active, since 2s) 2024-09-18T12:05:41.583 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout value unchanged 2024-09-18T12:05:41.583 INFO:teuthology.orchestra.run.smithi076.stdout:Generating ssh key... 2024-09-18T12:05:42.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:42 smithi076 ceph-mon[27582]: from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:05:42.573 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:42 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: Generating public/private rsa key pair. 2024-09-18T12:05:42.573 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:42 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: Your identification has been saved in /tmp/tmppkvrhtb4/key 2024-09-18T12:05:42.573 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:42 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: Your public key has been saved in /tmp/tmppkvrhtb4/key.pub 2024-09-18T12:05:42.573 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:42 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: The key fingerprint is: 2024-09-18T12:05:42.573 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:42 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: SHA256:frbkkwDN5Qg4F+N0+2higErGWShFC5u81Bv1r7ocBdU ceph-1afb0892-75b6-11ef-bceb-c7b262605968 2024-09-18T12:05:42.573 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:42 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: The key's randomart image is: 2024-09-18T12:05:42.574 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:42 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: +---[RSA 3072]----+ 2024-09-18T12:05:42.574 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:42 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: |.o+. o+oo | 2024-09-18T12:05:42.574 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:42 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: |+=+o+o=o E. | 2024-09-18T12:05:42.574 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:42 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: |+Boo.+.=.+ | 2024-09-18T12:05:42.574 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:42 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: |+.. o.o =o. | 2024-09-18T12:05:42.574 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:42 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: |.. . ooS.. | 2024-09-18T12:05:42.574 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:42 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: | ..+o | 2024-09-18T12:05:42.574 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:42 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: | . ...+. | 2024-09-18T12:05:42.574 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:42 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: | . o =o. | 2024-09-18T12:05:42.574 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:42 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: | +. o. | 2024-09-18T12:05:42.574 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:42 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: +----[SHA256]-----+ 2024-09-18T12:05:43.292 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:43 smithi076 ceph-mon[27582]: from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:05:43.292 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:43 smithi076 ceph-mon[27582]: Generating ssh key... 2024-09-18T12:05:43.292 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:43 smithi076 ceph-mon[27582]: from='mgr.14118 172.21.15.76:0/3188185440' entity='mgr.a' 2024-09-18T12:05:43.293 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:43 smithi076 ceph-mon[27582]: from='mgr.14118 172.21.15.76:0/3188185440' entity='mgr.a' 2024-09-18T12:05:44.092 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBFq0QIHi+XaR021bd+jqLnXyZ4AwBqVrBRVpoGdhze82uK/7+k0YW2ld2NeSzYwyn8GOVu3Uj8iapXBkZcuPIeiWpIPN2wt9X1IhWiAMBigYToKN5X15y2vSuPHfN7P8uAf/7MZs4IGDEO/Lg4NuMFW0H2Bgs23N3dOmGtOkkj1eB6BjdEe0N8KvwiAOqZr+Mw3YorDTjjAQFKsnfWZUFKXa0lsD2tYpx3+vbzibHLkBayTHDo8Iil4m7TByncpuVtLTivMr2Pdn6XGTcqMnCh81BCvw+PHoQRxJDpBb0AiHgfv73x2tf7UgYfOqE1u4VPMag+CmZhbEwv21rzDR12961gV6tucPT7Tz/r8+++AptaIeKn8BcgGdZbh1dvkkrndOJ+VY71bVOyGf72WNsBZKlPzC/Krz0VdM/BTA1x2Ulo2j3qV6rjQv47kX4AK5hBibNSORfj5/eywYhnSd5ri32tixvqle32aAwncrXn3sre3qaqJ1ZgMKvGqibt+8= ceph-1afb0892-75b6-11ef-bceb-c7b262605968 2024-09-18T12:05:44.092 INFO:teuthology.orchestra.run.smithi076.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-09-18T12:05:44.092 INFO:teuthology.orchestra.run.smithi076.stdout:Adding key to root@localhost authorized_keys... 2024-09-18T12:05:44.102 INFO:teuthology.orchestra.run.smithi076.stdout:Adding host smithi076... 2024-09-18T12:05:44.778 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:44 smithi076 ceph-mon[27582]: from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:05:45.412 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:45 smithi076 ceph-mon[27582]: from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi076", "addr": "172.21.15.76", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:05:46.374 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:46 smithi076 ceph-mon[27582]: Deploying cephadm binary to smithi076 2024-09-18T12:05:47.900 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout Added host 'smithi076' with addr '172.21.15.76' 2024-09-18T12:05:47.900 INFO:teuthology.orchestra.run.smithi076.stdout:Deploying unmanaged mon service... 2024-09-18T12:05:48.468 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:48 smithi076 ceph-mon[27582]: from='mgr.14118 172.21.15.76:0/3188185440' entity='mgr.a' 2024-09-18T12:05:48.468 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:48 smithi076 ceph-mon[27582]: Added host smithi076 2024-09-18T12:05:48.468 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:48 smithi076 ceph-mon[27582]: from='mgr.14118 172.21.15.76:0/3188185440' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:05:49.236 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-09-18T12:05:49.236 INFO:teuthology.orchestra.run.smithi076.stdout:Deploying unmanaged mgr service... 2024-09-18T12:05:49.552 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:49 smithi076 ceph-mon[27582]: from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:05:49.552 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:49 smithi076 ceph-mon[27582]: Saving service mon spec with placement count:5 2024-09-18T12:05:49.552 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:49 smithi076 ceph-mon[27582]: from='mgr.14118 172.21.15.76:0/3188185440' entity='mgr.a' 2024-09-18T12:05:50.395 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-09-18T12:05:51.182 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:50 smithi076 ceph-mon[27582]: from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:05:51.182 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:50 smithi076 ceph-mon[27582]: Saving service mgr spec with placement count:2 2024-09-18T12:05:51.182 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:50 smithi076 ceph-mon[27582]: from='mgr.14118 172.21.15.76:0/3188185440' entity='mgr.a' 2024-09-18T12:05:52.422 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:52 smithi076 ceph-mon[27582]: from='mgr.14118 172.21.15.76:0/3188185440' entity='mgr.a' 2024-09-18T12:05:52.422 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:52 smithi076 ceph-mon[27582]: from='mgr.14118 172.21.15.76:0/3188185440' entity='mgr.a' 2024-09-18T12:05:52.423 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:52 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/3463537742' entity='client.admin' 2024-09-18T12:05:53.785 INFO:teuthology.orchestra.run.smithi076.stdout:Enabling the dashboard module... 2024-09-18T12:05:54.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:53 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/686735269' entity='client.admin' 2024-09-18T12:05:55.005 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:54 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/234434367' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-09-18T12:05:55.005 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:54 smithi076 ceph-mon[27582]: from='mgr.14118 172.21.15.76:0/3188185440' entity='mgr.a' 2024-09-18T12:05:55.323 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:55 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: ignoring --setuser ceph since I am not root 2024-09-18T12:05:55.323 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:55 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: ignoring --setgroup ceph since I am not root 2024-09-18T12:05:55.323 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:55 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:55.111+0000 7f5763f3fec0 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-18T12:05:55.323 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:55 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:55.174+0000 7f5763f3fec0 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-18T12:05:55.323 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:55 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:55.243+0000 7f5763f3fec0 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-18T12:05:55.626 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:55 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:55.369+0000 7f5763f3fec0 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-18T12:05:55.626 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:55 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:55.504+0000 7f5763f3fec0 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-18T12:05:55.881 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:55 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:55.764+0000 7f5763f3fec0 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-18T12:05:55.881 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:55 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:55.824+0000 7f5763f3fec0 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-18T12:05:56.267 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:55 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/234434367' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-09-18T12:05:56.267 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:55 smithi076 ceph-mon[27582]: mgrmap e9: a(active, since 17s) 2024-09-18T12:05:56.268 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:55 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:55.994+0000 7f5763f3fec0 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-18T12:05:56.880 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout { 2024-09-18T12:05:56.880 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-09-18T12:05:56.880 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-18T12:05:56.880 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-09-18T12:05:56.880 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-18T12:05:56.880 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout } 2024-09-18T12:05:56.880 INFO:teuthology.orchestra.run.smithi076.stdout:Waiting for the mgr to restart... 2024-09-18T12:05:56.880 INFO:teuthology.orchestra.run.smithi076.stdout:Waiting for mgr epoch 9... 2024-09-18T12:05:57.126 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:56 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:56.882+0000 7f5763f3fec0 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-18T12:05:57.126 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:56 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:56.951+0000 7f5763f3fec0 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-18T12:05:57.127 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:56 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/2578408847' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-09-18T12:05:57.823 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:57 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:57.684+0000 7f5763f3fec0 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-18T12:05:57.823 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:57 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:57.793+0000 7f5763f3fec0 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-18T12:05:58.214 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:57 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:57.911+0000 7f5763f3fec0 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-18T12:05:58.214 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:57 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:57.969+0000 7f5763f3fec0 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-18T12:05:58.214 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:58 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:58.091+0000 7f5763f3fec0 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-18T12:05:58.214 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:58 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:58.156+0000 7f5763f3fec0 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-18T12:05:58.214 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:58 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:58.212+0000 7f5763f3fec0 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-18T12:05:58.472 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:58 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:58.345+0000 7f5763f3fec0 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-18T12:05:58.472 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:58 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:58.406+0000 7f5763f3fec0 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-18T12:05:58.472 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:58 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:58.470+0000 7f5763f3fec0 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-18T12:05:58.823 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:58 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:58.550+0000 7f5763f3fec0 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-18T12:05:58.823 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:58 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:58.605+0000 7f5763f3fec0 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-18T12:05:58.823 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:58 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:58.662+0000 7f5763f3fec0 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-18T12:05:59.823 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:05:59 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:05:59.390+0000 7f5763f3fec0 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-18T12:05:59.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:59 smithi076 ceph-mon[27582]: Active manager daemon a restarted 2024-09-18T12:05:59.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:59 smithi076 ceph-mon[27582]: Activating manager daemon a 2024-09-18T12:05:59.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:59 smithi076 ceph-mon[27582]: osdmap e3: 0 total, 0 up, 0 in 2024-09-18T12:05:59.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:59 smithi076 ceph-mon[27582]: mgrmap e10: a(active, starting, since 0.00296666s) 2024-09-18T12:05:59.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:59 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-18T12:05:59.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:59 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-09-18T12:05:59.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:59 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-18T12:05:59.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:59 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-18T12:05:59.824 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:59 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-18T12:05:59.824 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:59 smithi076 ceph-mon[27582]: Manager daemon a is now available 2024-09-18T12:05:59.824 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:59 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:05:59.824 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:59 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-09-18T12:05:59.824 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:05:59 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-09-18T12:06:00.871 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:06:00 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:06:00.700+0000 7f5714a9c640 -1 log_channel(cephadm) log [ERR] : [18/Sep/2024:12:06:00] ENGINE Error in HTTPServer.serve 2024-09-18T12:06:00.871 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:06:00 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: Traceback (most recent call last): 2024-09-18T12:06:00.871 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:06:00 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-18T12:06:00.871 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:06:00 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: self._connections.run(self.expiration_interval) 2024-09-18T12:06:00.871 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:06:00 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-18T12:06:00.871 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:06:00 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: self._run(expiration_interval) 2024-09-18T12:06:00.872 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:06:00 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-18T12:06:00.872 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:06:00 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: new_conn = self._from_server_socket(self.server.socket) 2024-09-18T12:06:00.872 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:06:00 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-18T12:06:00.872 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:06:00 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-18T12:06:00.872 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:06:00 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-18T12:06:00.872 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:06:00 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: s = self.context.wrap_socket( 2024-09-18T12:06:00.872 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:06:00 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-18T12:06:00.872 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:06:00 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: return self.sslsocket_class._create( 2024-09-18T12:06:00.872 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:06:00 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-18T12:06:00.872 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:06:00 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: self.do_handshake() 2024-09-18T12:06:00.872 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:06:00 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-18T12:06:00.872 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:06:00 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: self._sslobj.do_handshake() 2024-09-18T12:06:00.872 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:06:00 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-18T12:06:00.873 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:06:00 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:06:01.157 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout { 2024-09-18T12:06:01.157 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-09-18T12:06:01.157 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-18T12:06:01.157 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout } 2024-09-18T12:06:01.157 INFO:teuthology.orchestra.run.smithi076.stdout:mgr epoch 9 is available 2024-09-18T12:06:01.157 INFO:teuthology.orchestra.run.smithi076.stdout:Generating a dashboard self-signed certificate... 2024-09-18T12:06:01.408 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:01 smithi076 ceph-mon[27582]: mgrmap e11: a(active, since 1.00564s) 2024-09-18T12:06:01.409 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:01 smithi076 ceph-mon[27582]: [18/Sep/2024:12:06:00] ENGINE Bus STARTING 2024-09-18T12:06:01.409 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:01 smithi076 ceph-mon[27582]: [18/Sep/2024:12:06:00] ENGINE Serving on https://172.21.15.76:7150 2024-09-18T12:06:01.409 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:01 smithi076 ceph-mon[27582]: [18/Sep/2024:12:06:00] ENGINE Bus STARTED 2024-09-18T12:06:01.409 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:01 smithi076 ceph-mon[27582]: [18/Sep/2024:12:06:00] ENGINE Error in HTTPServer.serve 2024-09-18T12:06:01.409 INFO:journalctl@ceph.mon.a.smithi076.stdout: Traceback (most recent call last): 2024-09-18T12:06:01.409 INFO:journalctl@ceph.mon.a.smithi076.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-18T12:06:01.409 INFO:journalctl@ceph.mon.a.smithi076.stdout: self._connections.run(self.expiration_interval) 2024-09-18T12:06:01.409 INFO:journalctl@ceph.mon.a.smithi076.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-18T12:06:01.409 INFO:journalctl@ceph.mon.a.smithi076.stdout: self._run(expiration_interval) 2024-09-18T12:06:01.409 INFO:journalctl@ceph.mon.a.smithi076.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-18T12:06:01.409 INFO:journalctl@ceph.mon.a.smithi076.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-18T12:06:01.409 INFO:journalctl@ceph.mon.a.smithi076.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-18T12:06:01.410 INFO:journalctl@ceph.mon.a.smithi076.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-18T12:06:01.410 INFO:journalctl@ceph.mon.a.smithi076.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-18T12:06:01.410 INFO:journalctl@ceph.mon.a.smithi076.stdout: s = self.context.wrap_socket( 2024-09-18T12:06:01.410 INFO:journalctl@ceph.mon.a.smithi076.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-18T12:06:01.410 INFO:journalctl@ceph.mon.a.smithi076.stdout: return self.sslsocket_class._create( 2024-09-18T12:06:01.410 INFO:journalctl@ceph.mon.a.smithi076.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-18T12:06:01.410 INFO:journalctl@ceph.mon.a.smithi076.stdout: self.do_handshake() 2024-09-18T12:06:01.410 INFO:journalctl@ceph.mon.a.smithi076.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-18T12:06:01.410 INFO:journalctl@ceph.mon.a.smithi076.stdout: self._sslobj.do_handshake() 2024-09-18T12:06:01.410 INFO:journalctl@ceph.mon.a.smithi076.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-18T12:06:01.410 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:01 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:01.410 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:01 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:02.440 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout Self-signed certificate created 2024-09-18T12:06:02.441 INFO:teuthology.orchestra.run.smithi076.stdout:Creating initial admin user... 2024-09-18T12:06:02.819 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:02 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:02.819 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:02 smithi076 ceph-mon[27582]: from='client.14162 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:06:02.820 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:02 smithi076 ceph-mon[27582]: mgrmap e12: a(active, since 2s) 2024-09-18T12:06:02.820 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:02 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:02.820 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:02 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:04.035 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$1LO4VT3.5DPLQE86Ur.DSudkoK4bLuePswIXWkxSrAkHFBGe6CCDe", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1726661163, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-09-18T12:06:04.035 INFO:teuthology.orchestra.run.smithi076.stdout:Fetching dashboard port number... 2024-09-18T12:06:04.609 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:04 smithi076 ceph-mon[27582]: 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-18T12:06:04.609 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:04 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:05.512 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stdout 8443 2024-09-18T12:06:05.523 INFO:teuthology.orchestra.run.smithi076.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-18T12:06:05.523 INFO:teuthology.orchestra.run.smithi076.stdout:systemctl: stdout disabled 2024-09-18T12:06:05.531 INFO:teuthology.orchestra.run.smithi076.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-18T12:06:05.531 INFO:teuthology.orchestra.run.smithi076.stdout:systemctl: stdout inactive 2024-09-18T12:06:05.531 INFO:teuthology.orchestra.run.smithi076.stdout:firewalld.service is not enabled 2024-09-18T12:06:05.531 INFO:teuthology.orchestra.run.smithi076.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-09-18T12:06:05.533 INFO:teuthology.orchestra.run.smithi076.stdout:Ceph Dashboard is now available at: 2024-09-18T12:06:05.533 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:06:05.533 INFO:teuthology.orchestra.run.smithi076.stdout: URL: https://smithi076.front.sepia.ceph.com:8443/ 2024-09-18T12:06:05.533 INFO:teuthology.orchestra.run.smithi076.stdout: User: admin 2024-09-18T12:06:05.533 INFO:teuthology.orchestra.run.smithi076.stdout: Password: 5h9szexm74 2024-09-18T12:06:05.533 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:06:05.534 INFO:teuthology.orchestra.run.smithi076.stdout:Saving cluster configuration to /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/config directory 2024-09-18T12:06:05.534 INFO:teuthology.orchestra.run.smithi076.stdout:Enabling autotune for osd_memory_target 2024-09-18T12:06:05.656 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:05 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/3392595842' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-09-18T12:06:06.793 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:06 smithi076 ceph-mon[27582]: mgrmap e13: a(active, since 6s) 2024-09-18T12:06:07.910 INFO:teuthology.orchestra.run.smithi076.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-09-18T12:06:07.910 INFO:teuthology.orchestra.run.smithi076.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-09-18T12:06:07.910 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:06:07.911 INFO:teuthology.orchestra.run.smithi076.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-09-18T12:06:07.911 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:06:07.911 INFO:teuthology.orchestra.run.smithi076.stdout:Or, if you are only running a single cluster on this host: 2024-09-18T12:06:07.911 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:06:07.911 INFO:teuthology.orchestra.run.smithi076.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-09-18T12:06:07.911 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:06:07.911 INFO:teuthology.orchestra.run.smithi076.stdout:Please consider enabling telemetry to help improve Ceph: 2024-09-18T12:06:07.911 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:06:07.911 INFO:teuthology.orchestra.run.smithi076.stdout: ceph telemetry on 2024-09-18T12:06:07.911 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:06:07.911 INFO:teuthology.orchestra.run.smithi076.stdout:For more information see: 2024-09-18T12:06:07.911 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:06:07.912 INFO:teuthology.orchestra.run.smithi076.stdout: https://docs.ceph.com/docs/master/mgr/telemetry/ 2024-09-18T12:06:07.912 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:06:07.912 INFO:teuthology.orchestra.run.smithi076.stdout:Bootstrap complete. 2024-09-18T12:06:07.943 INFO:tasks.cephadm:Fetching config... 2024-09-18T12:06:07.943 DEBUG:teuthology.orchestra.run.smithi076:> set -ex 2024-09-18T12:06:07.943 DEBUG:teuthology.orchestra.run.smithi076:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-09-18T12:06:07.960 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-09-18T12:06:07.960 DEBUG:teuthology.orchestra.run.smithi076:> set -ex 2024-09-18T12:06:07.960 DEBUG:teuthology.orchestra.run.smithi076:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-09-18T12:06:08.016 INFO:tasks.cephadm:Fetching mon keyring... 2024-09-18T12:06:08.017 DEBUG:teuthology.orchestra.run.smithi076:> set -ex 2024-09-18T12:06:08.017 DEBUG:teuthology.orchestra.run.smithi076:> sudo dd if=/var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/keyring of=/dev/stdout 2024-09-18T12:06:08.081 INFO:tasks.cephadm:Fetching pub ssh key... 2024-09-18T12:06:08.081 DEBUG:teuthology.orchestra.run.smithi076:> set -ex 2024-09-18T12:06:08.081 DEBUG:teuthology.orchestra.run.smithi076:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-09-18T12:06:08.137 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-09-18T12:06:08.138 DEBUG:teuthology.orchestra.run.smithi076:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBFq0QIHi+XaR021bd+jqLnXyZ4AwBqVrBRVpoGdhze82uK/7+k0YW2ld2NeSzYwyn8GOVu3Uj8iapXBkZcuPIeiWpIPN2wt9X1IhWiAMBigYToKN5X15y2vSuPHfN7P8uAf/7MZs4IGDEO/Lg4NuMFW0H2Bgs23N3dOmGtOkkj1eB6BjdEe0N8KvwiAOqZr+Mw3YorDTjjAQFKsnfWZUFKXa0lsD2tYpx3+vbzibHLkBayTHDo8Iil4m7TByncpuVtLTivMr2Pdn6XGTcqMnCh81BCvw+PHoQRxJDpBb0AiHgfv73x2tf7UgYfOqE1u4VPMag+CmZhbEwv21rzDR12961gV6tucPT7Tz/r8+++AptaIeKn8BcgGdZbh1dvkkrndOJ+VY71bVOyGf72WNsBZKlPzC/Krz0VdM/BTA1x2Ulo2j3qV6rjQv47kX4AK5hBibNSORfj5/eywYhnSd5ri32tixvqle32aAwncrXn3sre3qaqJ1ZgMKvGqibt+8= ceph-1afb0892-75b6-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-18T12:06:08.211 INFO:teuthology.orchestra.run.smithi076.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBFq0QIHi+XaR021bd+jqLnXyZ4AwBqVrBRVpoGdhze82uK/7+k0YW2ld2NeSzYwyn8GOVu3Uj8iapXBkZcuPIeiWpIPN2wt9X1IhWiAMBigYToKN5X15y2vSuPHfN7P8uAf/7MZs4IGDEO/Lg4NuMFW0H2Bgs23N3dOmGtOkkj1eB6BjdEe0N8KvwiAOqZr+Mw3YorDTjjAQFKsnfWZUFKXa0lsD2tYpx3+vbzibHLkBayTHDo8Iil4m7TByncpuVtLTivMr2Pdn6XGTcqMnCh81BCvw+PHoQRxJDpBb0AiHgfv73x2tf7UgYfOqE1u4VPMag+CmZhbEwv21rzDR12961gV6tucPT7Tz/r8+++AptaIeKn8BcgGdZbh1dvkkrndOJ+VY71bVOyGf72WNsBZKlPzC/Krz0VdM/BTA1x2Ulo2j3qV6rjQv47kX4AK5hBibNSORfj5/eywYhnSd5ri32tixvqle32aAwncrXn3sre3qaqJ1ZgMKvGqibt+8= ceph-1afb0892-75b6-11ef-bceb-c7b262605968 2024-09-18T12:06:08.222 DEBUG:teuthology.orchestra.run.smithi160:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBFq0QIHi+XaR021bd+jqLnXyZ4AwBqVrBRVpoGdhze82uK/7+k0YW2ld2NeSzYwyn8GOVu3Uj8iapXBkZcuPIeiWpIPN2wt9X1IhWiAMBigYToKN5X15y2vSuPHfN7P8uAf/7MZs4IGDEO/Lg4NuMFW0H2Bgs23N3dOmGtOkkj1eB6BjdEe0N8KvwiAOqZr+Mw3YorDTjjAQFKsnfWZUFKXa0lsD2tYpx3+vbzibHLkBayTHDo8Iil4m7TByncpuVtLTivMr2Pdn6XGTcqMnCh81BCvw+PHoQRxJDpBb0AiHgfv73x2tf7UgYfOqE1u4VPMag+CmZhbEwv21rzDR12961gV6tucPT7Tz/r8+++AptaIeKn8BcgGdZbh1dvkkrndOJ+VY71bVOyGf72WNsBZKlPzC/Krz0VdM/BTA1x2Ulo2j3qV6rjQv47kX4AK5hBibNSORfj5/eywYhnSd5ri32tixvqle32aAwncrXn3sre3qaqJ1ZgMKvGqibt+8= ceph-1afb0892-75b6-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-18T12:06:08.275 INFO:teuthology.orchestra.run.smithi160.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBFq0QIHi+XaR021bd+jqLnXyZ4AwBqVrBRVpoGdhze82uK/7+k0YW2ld2NeSzYwyn8GOVu3Uj8iapXBkZcuPIeiWpIPN2wt9X1IhWiAMBigYToKN5X15y2vSuPHfN7P8uAf/7MZs4IGDEO/Lg4NuMFW0H2Bgs23N3dOmGtOkkj1eB6BjdEe0N8KvwiAOqZr+Mw3YorDTjjAQFKsnfWZUFKXa0lsD2tYpx3+vbzibHLkBayTHDo8Iil4m7TByncpuVtLTivMr2Pdn6XGTcqMnCh81BCvw+PHoQRxJDpBb0AiHgfv73x2tf7UgYfOqE1u4VPMag+CmZhbEwv21rzDR12961gV6tucPT7Tz/r8+++AptaIeKn8BcgGdZbh1dvkkrndOJ+VY71bVOyGf72WNsBZKlPzC/Krz0VdM/BTA1x2Ulo2j3qV6rjQv47kX4AK5hBibNSORfj5/eywYhnSd5ri32tixvqle32aAwncrXn3sre3qaqJ1ZgMKvGqibt+8= ceph-1afb0892-75b6-11ef-bceb-c7b262605968 2024-09-18T12:06:08.288 DEBUG:teuthology.orchestra.run.smithi169:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBFq0QIHi+XaR021bd+jqLnXyZ4AwBqVrBRVpoGdhze82uK/7+k0YW2ld2NeSzYwyn8GOVu3Uj8iapXBkZcuPIeiWpIPN2wt9X1IhWiAMBigYToKN5X15y2vSuPHfN7P8uAf/7MZs4IGDEO/Lg4NuMFW0H2Bgs23N3dOmGtOkkj1eB6BjdEe0N8KvwiAOqZr+Mw3YorDTjjAQFKsnfWZUFKXa0lsD2tYpx3+vbzibHLkBayTHDo8Iil4m7TByncpuVtLTivMr2Pdn6XGTcqMnCh81BCvw+PHoQRxJDpBb0AiHgfv73x2tf7UgYfOqE1u4VPMag+CmZhbEwv21rzDR12961gV6tucPT7Tz/r8+++AptaIeKn8BcgGdZbh1dvkkrndOJ+VY71bVOyGf72WNsBZKlPzC/Krz0VdM/BTA1x2Ulo2j3qV6rjQv47kX4AK5hBibNSORfj5/eywYhnSd5ri32tixvqle32aAwncrXn3sre3qaqJ1ZgMKvGqibt+8= ceph-1afb0892-75b6-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-18T12:06:08.409 INFO:teuthology.orchestra.run.smithi169.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBFq0QIHi+XaR021bd+jqLnXyZ4AwBqVrBRVpoGdhze82uK/7+k0YW2ld2NeSzYwyn8GOVu3Uj8iapXBkZcuPIeiWpIPN2wt9X1IhWiAMBigYToKN5X15y2vSuPHfN7P8uAf/7MZs4IGDEO/Lg4NuMFW0H2Bgs23N3dOmGtOkkj1eB6BjdEe0N8KvwiAOqZr+Mw3YorDTjjAQFKsnfWZUFKXa0lsD2tYpx3+vbzibHLkBayTHDo8Iil4m7TByncpuVtLTivMr2Pdn6XGTcqMnCh81BCvw+PHoQRxJDpBb0AiHgfv73x2tf7UgYfOqE1u4VPMag+CmZhbEwv21rzDR12961gV6tucPT7Tz/r8+++AptaIeKn8BcgGdZbh1dvkkrndOJ+VY71bVOyGf72WNsBZKlPzC/Krz0VdM/BTA1x2Ulo2j3qV6rjQv47kX4AK5hBibNSORfj5/eywYhnSd5ri32tixvqle32aAwncrXn3sre3qaqJ1ZgMKvGqibt+8= ceph-1afb0892-75b6-11ef-bceb-c7b262605968 2024-09-18T12:06:08.422 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-09-18T12:06:08.470 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:08 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/1577046342' entity='client.admin' 2024-09-18T12:06:08.667 INFO:teuthology.orchestra.run.smithi076.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T12:06:11.076 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:10 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:11.077 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:10 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:11.077 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:10 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi076", "name": "osd_memory_target"}]: dispatch 2024-09-18T12:06:11.077 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:10 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:11.077 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:10 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:06:11.077 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:10 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:11.598 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-09-18T12:06:11.598 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-09-18T12:06:11.834 INFO:teuthology.orchestra.run.smithi076.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T12:06:12.285 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:11 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/3763075723' entity='client.admin' 2024-09-18T12:06:12.285 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:11 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:06:12.285 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:11 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:14.341 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi160 2024-09-18T12:06:14.341 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-09-18T12:06:14.341 DEBUG:teuthology.orchestra.run.smithi160:> dd of=/etc/ceph/ceph.conf 2024-09-18T12:06:14.362 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-09-18T12:06:14.362 DEBUG:teuthology.orchestra.run.smithi160:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-18T12:06:14.420 INFO:tasks.cephadm:Adding host smithi160 to orchestrator... 2024-09-18T12:06:14.420 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph orch host add smithi160 2024-09-18T12:06:14.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:14 smithi076 ceph-mon[27582]: from='client.14174 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:06:14.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:14 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:14.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:14 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:06:14.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:14 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:06:14.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:14 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:06:14.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:14 smithi076 ceph-mon[27582]: Updating smithi076:/etc/ceph/ceph.conf 2024-09-18T12:06:14.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:14 smithi076 ceph-mon[27582]: Updating smithi076:/var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T12:06:14.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:14 smithi076 ceph-mon[27582]: Updating smithi076:/etc/ceph/ceph.client.admin.keyring 2024-09-18T12:06:14.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:14 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:14.574 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:14 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:14.574 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:14 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:14.664 INFO:teuthology.orchestra.run.smithi076.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T12:06:15.690 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:15 smithi076 ceph-mon[27582]: Updating smithi076:/var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-18T12:06:17.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:17 smithi076 ceph-mon[27582]: from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi160", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:06:18.572 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:18 smithi076 ceph-mon[27582]: Deploying cephadm binary to smithi160 2024-09-18T12:06:18.999 INFO:teuthology.orchestra.run.smithi076.stdout:Added host 'smithi160' with addr '172.21.15.160' 2024-09-18T12:06:19.591 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph orch host ls --format=json 2024-09-18T12:06:19.833 INFO:teuthology.orchestra.run.smithi076.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T12:06:20.235 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:19 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:20.235 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:19 smithi076 ceph-mon[27582]: Added host smithi160 2024-09-18T12:06:20.235 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:19 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:06:20.235 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:19 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:20.235 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:19 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:21.284 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:20 smithi076 ceph-mon[27582]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:21.284 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:20 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:21.528 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:06:21.528 INFO:teuthology.orchestra.run.smithi076.stdout:[{"addr": "172.21.15.76", "hostname": "smithi076", "labels": [], "status": ""}, {"addr": "172.21.15.160", "hostname": "smithi160", "labels": [], "status": ""}] 2024-09-18T12:06:22.128 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi169 2024-09-18T12:06:22.129 DEBUG:teuthology.orchestra.run.smithi169:> set -ex 2024-09-18T12:06:22.129 DEBUG:teuthology.orchestra.run.smithi169:> dd of=/etc/ceph/ceph.conf 2024-09-18T12:06:22.148 DEBUG:teuthology.orchestra.run.smithi169:> set -ex 2024-09-18T12:06:22.149 DEBUG:teuthology.orchestra.run.smithi169:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-18T12:06:22.207 INFO:tasks.cephadm:Adding host smithi169 to orchestrator... 2024-09-18T12:06:22.207 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph orch host add smithi169 2024-09-18T12:06:22.444 INFO:teuthology.orchestra.run.smithi076.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T12:06:23.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:22 smithi076 ceph-mon[27582]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:23.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:22 smithi076 ceph-mon[27582]: from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T12:06:24.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:24 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:24.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:24 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:24.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:24 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:24.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:24 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:24.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:24 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi160", "name": "osd_memory_target"}]: dispatch 2024-09-18T12:06:24.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:24 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:06:24.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:24 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:06:24.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:24 smithi076 ceph-mon[27582]: Updating smithi160:/etc/ceph/ceph.conf 2024-09-18T12:06:24.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:24 smithi076 ceph-mon[27582]: Updating smithi160:/var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T12:06:24.324 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:24 smithi076 ceph-mon[27582]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:24.324 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:24 smithi076 ceph-mon[27582]: Updating smithi160:/etc/ceph/ceph.client.admin.keyring 2024-09-18T12:06:24.324 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:24 smithi076 ceph-mon[27582]: Updating smithi160:/var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-18T12:06:24.324 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:24 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:24.324 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:24 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:24.324 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:24 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:25.572 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:25 smithi076 ceph-mon[27582]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi169", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:06:26.474 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:26 smithi076 ceph-mon[27582]: Deploying cephadm binary to smithi169 2024-09-18T12:06:26.474 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:26 smithi076 ceph-mon[27582]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:26.958 INFO:teuthology.orchestra.run.smithi076.stdout:Added host 'smithi169' with addr '172.21.15.169' 2024-09-18T12:06:27.721 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph orch host ls --format=json 2024-09-18T12:06:27.961 INFO:teuthology.orchestra.run.smithi076.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T12:06:28.282 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:27 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:28.282 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:27 smithi076 ceph-mon[27582]: Added host smithi169 2024-09-18T12:06:28.283 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:27 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:06:28.283 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:27 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:28.283 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:27 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:28.986 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:28 smithi076 ceph-mon[27582]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:28.986 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:28 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:29.583 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:06:29.583 INFO:teuthology.orchestra.run.smithi076.stdout:[{"addr": "172.21.15.76", "hostname": "smithi076", "labels": [], "status": ""}, {"addr": "172.21.15.160", "hostname": "smithi160", "labels": [], "status": ""}, {"addr": "172.21.15.169", "hostname": "smithi169", "labels": [], "status": ""}] 2024-09-18T12:06:30.244 INFO:tasks.cephadm:Setting crush tunables to default 2024-09-18T12:06:30.244 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph osd crush tunables default 2024-09-18T12:06:30.480 INFO:teuthology.orchestra.run.smithi076.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T12:06:31.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:30 smithi076 ceph-mon[27582]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:31.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:30 smithi076 ceph-mon[27582]: from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T12:06:32.576 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:32 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:32.576 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:32 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:32.576 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:32 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:32.577 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:32 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:32.577 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:32 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi169", "name": "osd_memory_target"}]: dispatch 2024-09-18T12:06:32.577 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:32 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:06:32.577 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:32 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:06:32.577 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:32 smithi076 ceph-mon[27582]: Updating smithi169:/etc/ceph/ceph.conf 2024-09-18T12:06:32.577 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:32 smithi076 ceph-mon[27582]: Updating smithi169:/var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T12:06:32.577 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:32 smithi076 ceph-mon[27582]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:32.577 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:32 smithi076 ceph-mon[27582]: Updating smithi169:/etc/ceph/ceph.client.admin.keyring 2024-09-18T12:06:32.577 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:32 smithi076 ceph-mon[27582]: Updating smithi169:/var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-18T12:06:32.577 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:32 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:32.577 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:32 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:32.577 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:32 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:33.085 INFO:teuthology.orchestra.run.smithi076.stderr:adjusted tunables profile to default 2024-09-18T12:06:33.395 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:33 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/4170285349' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-09-18T12:06:33.681 INFO:tasks.cephadm:Adding mon.a on smithi076 2024-09-18T12:06:33.681 INFO:tasks.cephadm:Adding mon.b on smithi160 2024-09-18T12:06:33.682 INFO:tasks.cephadm:Adding mon.c on smithi169 2024-09-18T12:06:33.682 DEBUG:teuthology.orchestra.run.smithi169:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph orch apply mon '3;smithi076:172.21.15.76=a;smithi160:172.21.15.160=b;smithi169:172.21.15.169=c' 2024-09-18T12:06:33.924 INFO:teuthology.orchestra.run.smithi169.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T12:06:34.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:34 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/4170285349' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-18T12:06:34.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:34 smithi076 ceph-mon[27582]: osdmap e4: 0 total, 0 up, 0 in 2024-09-18T12:06:34.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:34 smithi076 ceph-mon[27582]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:35.620 INFO:teuthology.orchestra.run.smithi169.stdout:Scheduled mon update... 2024-09-18T12:06:36.189 DEBUG:teuthology.orchestra.run.smithi160:mon.b> sudo journalctl -f -n 0 -u ceph-1afb0892-75b6-11ef-bceb-c7b262605968@mon.b.service 2024-09-18T12:06:36.191 DEBUG:teuthology.orchestra.run.smithi169:mon.c> sudo journalctl -f -n 0 -u ceph-1afb0892-75b6-11ef-bceb-c7b262605968@mon.c.service 2024-09-18T12:06:36.193 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-18T12:06:36.194 DEBUG:teuthology.orchestra.run.smithi169:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-18T12:06:36.908 INFO:teuthology.orchestra.run.smithi169.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T12:06:37.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:36 smithi076 ceph-mon[27582]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:37.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:36 smithi076 ceph-mon[27582]: from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi076:172.21.15.76=a;smithi160:172.21.15.160=b;smithi169:172.21.15.169=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:06:37.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:36 smithi076 ceph-mon[27582]: Saving service mon spec with placement smithi076:172.21.15.76=a;smithi160:172.21.15.160=b;smithi169:172.21.15.169=c;count:3 2024-09-18T12:06:37.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:36 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:37.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:36 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:06:37.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:36 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:06:37.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:36 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:06:37.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:36 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:37.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:36 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-18T12:06:37.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:36 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:06:37.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:36 smithi076 ceph-mon[27582]: Deploying daemon mon.c on smithi169 2024-09-18T12:06:38.553 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:06:38.553 INFO:teuthology.orchestra.run.smithi169.stdout:{"epoch":1,"fsid":"1afb0892-75b6-11ef-bceb-c7b262605968","modified":"2024-09-18T12:05:10.502035Z","created":"2024-09-18T12:05:10.502035Z","min_mon_release":17,"min_mon_release_name":"quincy","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"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.76:3300","nonce":0},{"type":"v1","addr":"172.21.15.76:6789","nonce":0}]},"addr":"172.21.15.76:6789/0","public_addr":"172.21.15.76:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-18T12:06:38.554 INFO:teuthology.orchestra.run.smithi169.stderr:dumped monmap epoch 1 2024-09-18T12:06:39.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:38 smithi076 ceph-mon[27582]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:39.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:38 smithi076 ceph-mon[27582]: from='client.? 172.21.15.169:0/3981566735' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-18T12:06:40.303 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-18T12:06:40.304 DEBUG:teuthology.orchestra.run.smithi169:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-18T12:06:40.568 INFO:teuthology.orchestra.run.smithi169.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.c/config 2024-09-18T12:06:41.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:40 smithi076 ceph-mon[27582]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:41.466 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:41 smithi169 systemd[1]: Starting Ceph mon.c for 1afb0892-75b6-11ef-bceb-c7b262605968... 2024-09-18T12:06:42.339 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 podman[32131]: 2024-09-18 12:06:42.034917463 +0000 UTC m=+0.016457050 image pull f2dfd3bedcfd8a352dfcb2d35150edfb80cae3a6389830dbb2d080962a731a96 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9 2024-09-18T12:06:42.339 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 podman[32131]: 2024-09-18 12:06:42.135253556 +0000 UTC m=+0.116793123 container create cbaa05a3bc80474314e6b0e2537af4f91abd5edbd0a4dc00254044144f85492d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mon-c, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_BRANCH=HEAD, ceph=True, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS) 2024-09-18T12:06:42.590 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 podman[32131]: 2024-09-18 12:06:42.514056852 +0000 UTC m=+0.495596439 container init cbaa05a3bc80474314e6b0e2537af4f91abd5edbd0a4dc00254044144f85492d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mon-c, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, ceph=True, GIT_CLEAN=True, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-18T12:06:42.591 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 podman[32131]: 2024-09-18 12:06:42.517414666 +0000 UTC m=+0.498954234 container start cbaa05a3bc80474314e6b0e2537af4f91abd5edbd0a4dc00254044144f85492d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mon-c, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, CEPH_POINT_RELEASE=, GIT_CLEAN=True, GIT_BRANCH=HEAD) 2024-09-18T12:06:42.591 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: set uid:gid to 167:167 (ceph:ceph) 2024-09-18T12:06:42.591 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: ceph version 17.2.7-1645-g7061ea6c (7061ea6ca50908d104e9f3979dc615e118d9e153) quincy (stable), process ceph-mon, pid 2 2024-09-18T12:06:42.591 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: pidfile_write: ignore empty --pid-file 2024-09-18T12:06:42.591 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: load: jerasure load: lrc 2024-09-18T12:06:42.591 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: RocksDB version: 6.15.5 2024-09-18T12:06:42.591 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-09-18T12:06:42.591 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Compile date Sep 18 2024 2024-09-18T12:06:42.591 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: DB SUMMARY 2024-09-18T12:06:42.591 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: DB Session ID: CP4W48OGDWHCJLR6WFUN 2024-09-18T12:06:42.592 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: CURRENT file: CURRENT 2024-09-18T12:06:42.592 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: IDENTITY file: IDENTITY 2024-09-18T12:06:42.592 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: MANIFEST file: MANIFEST-000003 size: 57 Bytes 2024-09-18T12:06:42.592 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: SST files in /var/lib/ceph/mon/ceph-c/store.db dir, Total Num: 0, files: 2024-09-18T12:06:42.592 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-c/store.db: 000004.log size: 511 ; 2024-09-18T12:06:42.592 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.error_if_exists: 0 2024-09-18T12:06:42.592 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.create_if_missing: 0 2024-09-18T12:06:42.592 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.paranoid_checks: 1 2024-09-18T12:06:42.592 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-18T12:06:42.592 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.env: 0x55b01d5ac4c0 2024-09-18T12:06:42.592 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.fs: Posix File System 2024-09-18T12:06:42.593 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.info_log: 0x55b01f7b2ec0 2024-09-18T12:06:42.593 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.max_file_opening_threads: 16 2024-09-18T12:06:42.593 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.statistics: (nil) 2024-09-18T12:06:42.593 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.use_fsync: 0 2024-09-18T12:06:42.593 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.max_log_file_size: 0 2024-09-18T12:06:42.593 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-18T12:06:42.593 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.log_file_time_to_roll: 0 2024-09-18T12:06:42.593 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.keep_log_file_num: 1000 2024-09-18T12:06:42.593 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.recycle_log_file_num: 0 2024-09-18T12:06:42.593 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.allow_fallocate: 1 2024-09-18T12:06:42.593 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.allow_mmap_reads: 0 2024-09-18T12:06:42.593 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.allow_mmap_writes: 0 2024-09-18T12:06:42.594 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.use_direct_reads: 0 2024-09-18T12:06:42.594 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-18T12:06:42.594 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.create_missing_column_families: 0 2024-09-18T12:06:42.594 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.db_log_dir: 2024-09-18T12:06:42.594 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-c/store.db 2024-09-18T12:06:42.594 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.table_cache_numshardbits: 6 2024-09-18T12:06:42.594 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.WAL_ttl_seconds: 0 2024-09-18T12:06:42.594 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.WAL_size_limit_MB: 0 2024-09-18T12:06:42.594 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-18T12:06:42.594 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-18T12:06:42.594 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.is_fd_close_on_exec: 1 2024-09-18T12:06:42.595 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.advise_random_on_open: 1 2024-09-18T12:06:42.595 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.db_write_buffer_size: 0 2024-09-18T12:06:42.595 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.write_buffer_manager: 0x55b01f8707e0 2024-09-18T12:06:42.595 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-18T12:06:42.595 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-09-18T12:06:42.595 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-18T12:06:42.595 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.use_adaptive_mutex: 0 2024-09-18T12:06:42.595 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.rate_limiter: (nil) 2024-09-18T12:06:42.595 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-18T12:06:42.595 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.wal_recovery_mode: 2 2024-09-18T12:06:42.595 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.enable_thread_tracking: 0 2024-09-18T12:06:42.595 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.enable_pipelined_write: 0 2024-09-18T12:06:42.595 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.unordered_write: 0 2024-09-18T12:06:42.596 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-18T12:06:42.596 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-18T12:06:42.596 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-18T12:06:42.596 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-18T12:06:42.596 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.row_cache: None 2024-09-18T12:06:42.596 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.wal_filter: None 2024-09-18T12:06:42.597 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-18T12:06:42.598 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.allow_ingest_behind: 0 2024-09-18T12:06:42.598 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.preserve_deletes: 0 2024-09-18T12:06:42.598 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.two_write_queues: 0 2024-09-18T12:06:42.598 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.manual_wal_flush: 0 2024-09-18T12:06:42.598 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.atomic_flush: 0 2024-09-18T12:06:42.598 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-18T12:06:42.598 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.persist_stats_to_disk: 0 2024-09-18T12:06:42.598 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.write_dbid_to_manifest: 0 2024-09-18T12:06:42.598 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.log_readahead_size: 0 2024-09-18T12:06:42.598 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-18T12:06:42.598 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.best_efforts_recovery: 0 2024-09-18T12:06:42.599 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-18T12:06:42.599 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-18T12:06:42.599 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.allow_data_in_errors: 0 2024-09-18T12:06:42.599 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.db_host_id: __hostname__ 2024-09-18T12:06:42.599 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.max_background_jobs: 2 2024-09-18T12:06:42.599 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.max_background_compactions: -1 2024-09-18T12:06:42.599 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.max_subcompactions: 1 2024-09-18T12:06:42.599 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-18T12:06:42.599 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-18T12:06:42.599 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.delayed_write_rate : 16777216 2024-09-18T12:06:42.599 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.max_total_wal_size: 0 2024-09-18T12:06:42.600 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-18T12:06:42.600 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.stats_dump_period_sec: 600 2024-09-18T12:06:42.600 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.stats_persist_period_sec: 600 2024-09-18T12:06:42.600 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-18T12:06:42.600 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.max_open_files: -1 2024-09-18T12:06:42.600 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.bytes_per_sync: 0 2024-09-18T12:06:42.600 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.wal_bytes_per_sync: 0 2024-09-18T12:06:42.600 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.strict_bytes_per_sync: 0 2024-09-18T12:06:42.600 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.compaction_readahead_size: 0 2024-09-18T12:06:42.600 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.max_background_flushes: -1 2024-09-18T12:06:42.600 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Compression algorithms supported: 2024-09-18T12:06:42.600 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: kZSTD supported: 0 2024-09-18T12:06:42.600 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: kXpressCompression supported: 0 2024-09-18T12:06:42.601 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: kBZip2Compression supported: 0 2024-09-18T12:06:42.601 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-18T12:06:42.601 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: kLZ4Compression supported: 1 2024-09-18T12:06:42.601 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: kZlibCompression supported: 1 2024-09-18T12:06:42.601 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: kLZ4HCCompression supported: 1 2024-09-18T12:06:42.601 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: kSnappyCompression supported: 1 2024-09-18T12:06:42.601 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Fast CRC32 supported: Supported on x86 2024-09-18T12:06:42.601 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: [db/version_set.cc:4724] Recovering from manifest file: /var/lib/ceph/mon/ceph-c/store.db/MANIFEST-000003 2024-09-18T12:06:42.601 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: [db/column_family.cc:595] --------------- Options for column family [default]: 2024-09-18T12:06:42.601 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-18T12:06:42.601 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.merge_operator: 2024-09-18T12:06:42.601 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.compaction_filter: None 2024-09-18T12:06:42.601 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.compaction_filter_factory: None 2024-09-18T12:06:42.601 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.sst_partitioner_factory: None 2024-09-18T12:06:42.602 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.memtable_factory: SkipListFactory 2024-09-18T12:06:42.602 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.table_factory: BlockBasedTable 2024-09-18T12:06:42.602 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55b01f759a38) 2024-09-18T12:06:42.602 INFO:journalctl@ceph.mon.c.smithi169.stdout: cache_index_and_filter_blocks: 1 2024-09-18T12:06:42.602 INFO:journalctl@ceph.mon.c.smithi169.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-18T12:06:42.602 INFO:journalctl@ceph.mon.c.smithi169.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-18T12:06:42.602 INFO:journalctl@ceph.mon.c.smithi169.stdout: pin_top_level_index_and_filter: 1 2024-09-18T12:06:42.602 INFO:journalctl@ceph.mon.c.smithi169.stdout: index_type: 0 2024-09-18T12:06:42.602 INFO:journalctl@ceph.mon.c.smithi169.stdout: data_block_index_type: 0 2024-09-18T12:06:42.602 INFO:journalctl@ceph.mon.c.smithi169.stdout: index_shortening: 1 2024-09-18T12:06:42.602 INFO:journalctl@ceph.mon.c.smithi169.stdout: data_block_hash_table_util_ratio: 0.750000 2024-09-18T12:06:42.602 INFO:journalctl@ceph.mon.c.smithi169.stdout: hash_index_allow_collision: 1 2024-09-18T12:06:42.602 INFO:journalctl@ceph.mon.c.smithi169.stdout: checksum: 1 2024-09-18T12:06:42.603 INFO:journalctl@ceph.mon.c.smithi169.stdout: no_block_cache: 0 2024-09-18T12:06:42.603 INFO:journalctl@ceph.mon.c.smithi169.stdout: block_cache: 0x55b01f78f1f0 2024-09-18T12:06:42.603 INFO:journalctl@ceph.mon.c.smithi169.stdout: block_cache_name: BinnedLRUCache 2024-09-18T12:06:42.603 INFO:journalctl@ceph.mon.c.smithi169.stdout: block_cache_options: 2024-09-18T12:06:42.603 INFO:journalctl@ceph.mon.c.smithi169.stdout: capacity : 536870912 2024-09-18T12:06:42.603 INFO:journalctl@ceph.mon.c.smithi169.stdout: num_shard_bits : 4 2024-09-18T12:06:42.603 INFO:journalctl@ceph.mon.c.smithi169.stdout: strict_capacity_limit : 0 2024-09-18T12:06:42.603 INFO:journalctl@ceph.mon.c.smithi169.stdout: high_pri_pool_ratio: 0.000 2024-09-18T12:06:42.603 INFO:journalctl@ceph.mon.c.smithi169.stdout: block_cache_compressed: (nil) 2024-09-18T12:06:42.603 INFO:journalctl@ceph.mon.c.smithi169.stdout: persistent_cache: (nil) 2024-09-18T12:06:42.603 INFO:journalctl@ceph.mon.c.smithi169.stdout: block_size: 4096 2024-09-18T12:06:42.604 INFO:journalctl@ceph.mon.c.smithi169.stdout: block_size_deviation: 10 2024-09-18T12:06:42.604 INFO:journalctl@ceph.mon.c.smithi169.stdout: block_restart_interval: 16 2024-09-18T12:06:42.604 INFO:journalctl@ceph.mon.c.smithi169.stdout: index_block_restart_interval: 1 2024-09-18T12:06:42.604 INFO:journalctl@ceph.mon.c.smithi169.stdout: metadata_block_size: 4096 2024-09-18T12:06:42.604 INFO:journalctl@ceph.mon.c.smithi169.stdout: partition_filters: 0 2024-09-18T12:06:42.604 INFO:journalctl@ceph.mon.c.smithi169.stdout: use_delta_encoding: 1 2024-09-18T12:06:42.604 INFO:journalctl@ceph.mon.c.smithi169.stdout: filter_policy: rocksdb.BuiltinBloomFilter 2024-09-18T12:06:42.604 INFO:journalctl@ceph.mon.c.smithi169.stdout: whole_key_filtering: 1 2024-09-18T12:06:42.604 INFO:journalctl@ceph.mon.c.smithi169.stdout: verify_compression: 0 2024-09-18T12:06:42.604 INFO:journalctl@ceph.mon.c.smithi169.stdout: read_amp_bytes_per_bit: 0 2024-09-18T12:06:42.604 INFO:journalctl@ceph.mon.c.smithi169.stdout: format_version: 4 2024-09-18T12:06:42.604 INFO:journalctl@ceph.mon.c.smithi169.stdout: enable_index_compression: 1 2024-09-18T12:06:42.604 INFO:journalctl@ceph.mon.c.smithi169.stdout: block_align: 0 2024-09-18T12:06:42.605 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.write_buffer_size: 33554432 2024-09-18T12:06:42.605 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.max_write_buffer_number: 2 2024-09-18T12:06:42.605 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.compression: NoCompression 2024-09-18T12:06:42.605 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.bottommost_compression: Disabled 2024-09-18T12:06:42.605 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.prefix_extractor: nullptr 2024-09-18T12:06:42.605 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-18T12:06:42.605 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.num_levels: 7 2024-09-18T12:06:42.605 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-18T12:06:42.605 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-18T12:06:42.605 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-18T12:06:42.606 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-18T12:06:42.606 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-18T12:06:42.606 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-18T12:06:42.606 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-18T12:06:42.606 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-18T12:06:42.606 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-18T12:06:42.606 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-18T12:06:42.606 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.compression_opts.window_bits: -14 2024-09-18T12:06:42.606 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.compression_opts.level: 32767 2024-09-18T12:06:42.606 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.compression_opts.strategy: 0 2024-09-18T12:06:42.606 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-18T12:06:42.607 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-18T12:06:42.607 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-18T12:06:42.607 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.compression_opts.enabled: false 2024-09-18T12:06:42.607 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-18T12:06:42.607 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-18T12:06:42.607 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-18T12:06:42.607 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.target_file_size_base: 67108864 2024-09-18T12:06:42.607 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.target_file_size_multiplier: 1 2024-09-18T12:06:42.607 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-18T12:06:42.607 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-18T12:06:42.607 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-18T12:06:42.607 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-18T12:06:42.607 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-18T12:06:42.608 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-18T12:06:42.608 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-18T12:06:42.608 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-18T12:06:42.608 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-18T12:06:42.608 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-18T12:06:42.608 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-18T12:06:42.608 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-18T12:06:42.608 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.arena_block_size: 4194304 2024-09-18T12:06:42.608 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-18T12:06:42.608 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-18T12:06:42.608 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-09-18T12:06:42.608 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.disable_auto_compactions: 0 2024-09-18T12:06:42.608 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-18T12:06:42.608 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-18T12:06:42.609 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-18T12:06:42.609 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-18T12:06:42.609 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-18T12:06:42.609 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-18T12:06:42.609 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-18T12:06:42.609 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-18T12:06:42.609 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-18T12:06:42.609 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-18T12:06:42.609 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-18T12:06:42.609 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.inplace_update_support: 0 2024-09-18T12:06:42.609 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.inplace_update_num_locks: 10000 2024-09-18T12:06:42.609 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-18T12:06:42.609 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-18T12:06:42.609 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.memtable_huge_page_size: 0 2024-09-18T12:06:42.610 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.bloom_locality: 0 2024-09-18T12:06:42.610 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.max_successive_merges: 0 2024-09-18T12:06:42.610 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.optimize_filters_for_hits: 0 2024-09-18T12:06:42.610 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.paranoid_file_checks: 0 2024-09-18T12:06:42.610 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.force_consistency_checks: 1 2024-09-18T12:06:42.610 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.report_bg_io_stats: 0 2024-09-18T12:06:42.610 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.ttl: 2592000 2024-09-18T12:06:42.610 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.periodic_compaction_seconds: 0 2024-09-18T12:06:42.610 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.enable_blob_files: false 2024-09-18T12:06:42.610 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.min_blob_size: 0 2024-09-18T12:06:42.610 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.blob_file_size: 268435456 2024-09-18T12:06:42.610 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.blob_compression_type: NoCompression 2024-09-18T12:06:42.610 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.enable_blob_garbage_collection: false 2024-09-18T12:06:42.610 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-18T12:06:42.611 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: [db/version_set.cc:4764] Recovered from manifest file:/var/lib/ceph/mon/ceph-c/store.db/MANIFEST-000003 succeeded,manifest_file_number is 3, next_file_number is 5, 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-18T12:06:42.611 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: [db/version_set.cc:4779] Column family [default] (ID 0), log number is 0 2024-09-18T12:06:42.611 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: [db/version_set.cc:4082] Creating manifest 7 2024-09-18T12:06:42.611 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726661202540987, "job": 1, "event": "recovery_started", "wal_files": [4]} 2024-09-18T12:06:42.611 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: [db/db_impl/db_impl_open.cc:845] Recovering log #4 mode 2 2024-09-18T12:06:42.611 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: [table/block_based/filter_policy.cc:991] Using legacy Bloom filter with high (20) bits/key. Dramatic filter space and/or accuracy improvement is available with format_version>=5. 2024-09-18T12:06:42.611 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726661202541293, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 8, "file_size": 1571, "file_checksum": "", "file_checksum_func_name": "Unknown", "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_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "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; ", "creation_time": 1726661202, "oldest_key_time": 0, "file_creation_time": 0, "db_id": "1c7bf813-77fe-447c-9943-55a8f6f2c2c6", "db_session_id": "CP4W48OGDWHCJLR6WFUN"}} 2024-09-18T12:06:42.611 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: [db/version_set.cc:4082] Creating manifest 9 2024-09-18T12:06:42.611 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726661202541655, "job": 1, "event": "recovery_finished"} 2024-09-18T12:06:42.611 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: [file/delete_scheduler.cc:69] 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-18T12:06:42.611 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: [db/db_impl/db_impl_open.cc:1700] SstFileManager instance 0x55b01f7c2700 2024-09-18T12:06:42.611 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: DB pointer 0x55b01f792000 2024-09-18T12:06:42.612 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: [db/db_impl/db_impl.cc:901] ------- DUMPING STATS ------- 2024-09-18T12:06:42.612 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: rocksdb: [db/db_impl/db_impl.cc:903] 2024-09-18T12:06:42.612 INFO:journalctl@ceph.mon.c.smithi169.stdout: ** DB Stats ** 2024-09-18T12:06:42.612 INFO:journalctl@ceph.mon.c.smithi169.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-18T12:06:42.612 INFO:journalctl@ceph.mon.c.smithi169.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-18T12:06:42.612 INFO:journalctl@ceph.mon.c.smithi169.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-18T12:06:42.612 INFO:journalctl@ceph.mon.c.smithi169.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-18T12:06:42.612 INFO:journalctl@ceph.mon.c.smithi169.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-18T12:06:42.612 INFO:journalctl@ceph.mon.c.smithi169.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2024-09-18T12:06:42.612 INFO:journalctl@ceph.mon.c.smithi169.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-18T12:06:42.613 INFO:journalctl@ceph.mon.c.smithi169.stdout: 2024-09-18T12:06:42.613 INFO:journalctl@ceph.mon.c.smithi169.stdout: ** Compaction Stats [default] ** 2024-09-18T12:06:42.613 INFO:journalctl@ceph.mon.c.smithi169.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 2024-09-18T12:06:42.613 INFO:journalctl@ceph.mon.c.smithi169.stdout: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-18T12:06:42.613 INFO:journalctl@ceph.mon.c.smithi169.stdout: L0 1/0 1.53 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 5.1 0.00 0.00 1 0.000 0 0 2024-09-18T12:06:42.613 INFO:journalctl@ceph.mon.c.smithi169.stdout: Sum 1/0 1.53 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 5.1 0.00 0.00 1 0.000 0 0 2024-09-18T12:06:42.613 INFO:journalctl@ceph.mon.c.smithi169.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 5.1 0.00 0.00 1 0.000 0 0 2024-09-18T12:06:42.613 INFO:journalctl@ceph.mon.c.smithi169.stdout: 2024-09-18T12:06:42.613 INFO:journalctl@ceph.mon.c.smithi169.stdout: ** Compaction Stats [default] ** 2024-09-18T12:06:42.613 INFO:journalctl@ceph.mon.c.smithi169.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 2024-09-18T12:06:42.613 INFO:journalctl@ceph.mon.c.smithi169.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-18T12:06:42.614 INFO:journalctl@ceph.mon.c.smithi169.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 5.1 0.00 0.00 1 0.000 0 0 2024-09-18T12:06:42.614 INFO:journalctl@ceph.mon.c.smithi169.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-18T12:06:42.614 INFO:journalctl@ceph.mon.c.smithi169.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-09-18T12:06:42.614 INFO:journalctl@ceph.mon.c.smithi169.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-18T12:06:42.614 INFO:journalctl@ceph.mon.c.smithi169.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-09-18T12:06:42.614 INFO:journalctl@ceph.mon.c.smithi169.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-09-18T12:06:42.614 INFO:journalctl@ceph.mon.c.smithi169.stdout: AddFile(Keys): cumulative 0, interval 0 2024-09-18T12:06:42.614 INFO:journalctl@ceph.mon.c.smithi169.stdout: Cumulative compaction: 0.00 GB write, 0.55 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-18T12:06:42.614 INFO:journalctl@ceph.mon.c.smithi169.stdout: Interval compaction: 0.00 GB write, 0.55 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-18T12:06:42.614 INFO:journalctl@ceph.mon.c.smithi169.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-18T12:06:42.614 INFO:journalctl@ceph.mon.c.smithi169.stdout: 2024-09-18T12:06:42.614 INFO:journalctl@ceph.mon.c.smithi169.stdout: ** File Read Latency Histogram By Level [default] ** 2024-09-18T12:06:42.614 INFO:journalctl@ceph.mon.c.smithi169.stdout: 2024-09-18T12:06:42.615 INFO:journalctl@ceph.mon.c.smithi169.stdout: ** Compaction Stats [default] ** 2024-09-18T12:06:42.615 INFO:journalctl@ceph.mon.c.smithi169.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 2024-09-18T12:06:42.615 INFO:journalctl@ceph.mon.c.smithi169.stdout: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-18T12:06:42.615 INFO:journalctl@ceph.mon.c.smithi169.stdout: L0 1/0 1.53 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 5.1 0.00 0.00 1 0.000 0 0 2024-09-18T12:06:42.615 INFO:journalctl@ceph.mon.c.smithi169.stdout: Sum 1/0 1.53 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 5.1 0.00 0.00 1 0.000 0 0 2024-09-18T12:06:42.615 INFO:journalctl@ceph.mon.c.smithi169.stdout: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2024-09-18T12:06:42.615 INFO:journalctl@ceph.mon.c.smithi169.stdout: 2024-09-18T12:06:42.615 INFO:journalctl@ceph.mon.c.smithi169.stdout: ** Compaction Stats [default] ** 2024-09-18T12:06:42.615 INFO:journalctl@ceph.mon.c.smithi169.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 2024-09-18T12:06:42.615 INFO:journalctl@ceph.mon.c.smithi169.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-18T12:06:42.615 INFO:journalctl@ceph.mon.c.smithi169.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 5.1 0.00 0.00 1 0.000 0 0 2024-09-18T12:06:42.615 INFO:journalctl@ceph.mon.c.smithi169.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-18T12:06:42.616 INFO:journalctl@ceph.mon.c.smithi169.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-09-18T12:06:42.616 INFO:journalctl@ceph.mon.c.smithi169.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-18T12:06:42.616 INFO:journalctl@ceph.mon.c.smithi169.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-09-18T12:06:42.616 INFO:journalctl@ceph.mon.c.smithi169.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-09-18T12:06:42.616 INFO:journalctl@ceph.mon.c.smithi169.stdout: AddFile(Keys): cumulative 0, interval 0 2024-09-18T12:06:42.616 INFO:journalctl@ceph.mon.c.smithi169.stdout: Cumulative compaction: 0.00 GB write, 0.55 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-18T12:06:42.616 INFO:journalctl@ceph.mon.c.smithi169.stdout: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-18T12:06:42.616 INFO:journalctl@ceph.mon.c.smithi169.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-18T12:06:42.616 INFO:journalctl@ceph.mon.c.smithi169.stdout: 2024-09-18T12:06:42.616 INFO:journalctl@ceph.mon.c.smithi169.stdout: ** File Read Latency Histogram By Level [default] ** 2024-09-18T12:06:42.616 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: mon.c does not exist in monmap, will attempt to join an existing cluster 2024-09-18T12:06:42.616 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: using public_addr v2:172.21.15.169:0/0 -> [v2:172.21.15.169:3300/0,v1:172.21.15.169:6789/0] 2024-09-18T12:06:42.616 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: starting mon.c rank -1 at public addrs [v2:172.21.15.169:3300/0,v1:172.21.15.169:6789/0] at bind addrs [v2:172.21.15.169:3300/0,v1:172.21.15.169:6789/0] mon_data /var/lib/ceph/mon/ceph-c fsid 1afb0892-75b6-11ef-bceb-c7b262605968 2024-09-18T12:06:42.617 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: mon.c@-1(???) e0 preinit fsid 1afb0892-75b6-11ef-bceb-c7b262605968 2024-09-18T12:06:42.617 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: mon.c@-1(synchronizing).mds e1 new map 2024-09-18T12:06:42.617 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: mon.c@-1(synchronizing).mds e1 print_map 2024-09-18T12:06:42.617 INFO:journalctl@ceph.mon.c.smithi169.stdout: e1 2024-09-18T12:06:42.617 INFO:journalctl@ceph.mon.c.smithi169.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-09-18T12:06:42.617 INFO:journalctl@ceph.mon.c.smithi169.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-18T12:06:42.617 INFO:journalctl@ceph.mon.c.smithi169.stdout: legacy client fscid: -1 2024-09-18T12:06:42.617 INFO:journalctl@ceph.mon.c.smithi169.stdout: 2024-09-18T12:06:42.617 INFO:journalctl@ceph.mon.c.smithi169.stdout: No filesystems configured 2024-09-18T12:06:42.617 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: mon.c@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-09-18T12:06:42.617 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: 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-18T12:06:42.617 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: mon.c@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-09-18T12:06:42.617 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: mon.c@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-09-18T12:06:42.618 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: mon.c@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-09-18T12:06:42.618 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: mon.c@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-09-18T12:06:42.618 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: mon.c@-1(synchronizing).osd e4 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-18T12:06:42.618 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-18T12:06:42.618 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-18T12:06:42.618 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-18T12:06:42.618 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: Deploying cephadm binary to smithi169 2024-09-18T12:06:42.618 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:42.618 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:42.618 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: Added host smithi169 2024-09-18T12:06:42.618 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:06:42.618 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:42.618 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:42.619 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:42.619 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:42.619 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:42.619 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T12:06:42.619 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:42.619 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:42.619 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:42.619 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:42.619 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi169", "name": "osd_memory_target"}]: dispatch 2024-09-18T12:06:42.619 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:06:42.619 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:06:42.619 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: Updating smithi169:/etc/ceph/ceph.conf 2024-09-18T12:06:42.619 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: Updating smithi169:/var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T12:06:42.619 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:42.620 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: Updating smithi169:/etc/ceph/ceph.client.admin.keyring 2024-09-18T12:06:42.620 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: Updating smithi169:/var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-18T12:06:42.620 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:42.620 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:42.620 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:42.620 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: from='client.? 172.21.15.76:0/4170285349' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-09-18T12:06:42.620 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: from='client.? 172.21.15.76:0/4170285349' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-18T12:06:42.620 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: osdmap e4: 0 total, 0 up, 0 in 2024-09-18T12:06:42.620 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:42.620 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:42.620 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi076:172.21.15.76=a;smithi160:172.21.15.160=b;smithi169:172.21.15.169=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:06:42.620 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: Saving service mon spec with placement smithi076:172.21.15.76=a;smithi160:172.21.15.160=b;smithi169:172.21.15.169=c;count:3 2024-09-18T12:06:42.621 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:42.621 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:06:42.621 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:06:42.621 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:06:42.621 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:42.621 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-18T12:06:42.621 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:06:42.621 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: Deploying daemon mon.c on smithi169 2024-09-18T12:06:42.621 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:42.621 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: from='client.? 172.21.15.169:0/3981566735' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-18T12:06:42.621 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:42.621 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 ceph-mon[32172]: mon.c@-1(synchronizing).paxosservice(auth 1..3) refresh upgraded, format 0 -> 3 2024-09-18T12:06:42.621 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 bash[32131]: cbaa05a3bc80474314e6b0e2537af4f91abd5edbd0a4dc00254044144f85492d 2024-09-18T12:06:42.621 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:42 smithi169 systemd[1]: Started Ceph mon.c for 1afb0892-75b6-11ef-bceb-c7b262605968. 2024-09-18T12:06:47.583 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:06:47.584 INFO:teuthology.orchestra.run.smithi169.stdout:{"epoch":2,"fsid":"1afb0892-75b6-11ef-bceb-c7b262605968","modified":"2024-09-18T12:06:42.567623Z","created":"2024-09-18T12:05:10.502035Z","min_mon_release":17,"min_mon_release_name":"quincy","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"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.76:3300","nonce":0},{"type":"v1","addr":"172.21.15.76:6789","nonce":0}]},"addr":"172.21.15.76:6789/0","public_addr":"172.21.15.76:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:3300","nonce":0},{"type":"v1","addr":"172.21.15.169:6789","nonce":0}]},"addr":"172.21.15.169:6789/0","public_addr":"172.21.15.169:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-09-18T12:06:47.584 INFO:teuthology.orchestra.run.smithi169.stderr:dumped monmap epoch 2 2024-09-18T12:06:47.868 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:47 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-18T12:06:47.868 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:47 smithi169 ceph-mon[32172]: mon.a calling monitor election 2024-09-18T12:06:47.868 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:47 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-18T12:06:47.868 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:47 smithi169 ceph-mon[32172]: from='client.? 172.21.15.169:0/1539394589' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-18T12:06:47.868 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:47 smithi169 ceph-mon[32172]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:47.868 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:47 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-18T12:06:47.868 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:47 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-18T12:06:47.869 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:47 smithi169 ceph-mon[32172]: mon.c calling monitor election 2024-09-18T12:06:47.869 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:47 smithi169 ceph-mon[32172]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:47.869 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:47 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-18T12:06:47.869 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:47 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-18T12:06:47.869 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:47 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-18T12:06:47.869 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:47 smithi169 ceph-mon[32172]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-18T12:06:47.869 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:47 smithi169 ceph-mon[32172]: monmap e2: 2 mons at {a=[v2:172.21.15.76:3300/0,v1:172.21.15.76:6789/0],c=[v2:172.21.15.169:3300/0,v1:172.21.15.169:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-18T12:06:47.869 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:47 smithi169 ceph-mon[32172]: fsmap 2024-09-18T12:06:47.869 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:47 smithi169 ceph-mon[32172]: osdmap e4: 0 total, 0 up, 0 in 2024-09-18T12:06:47.869 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:47 smithi169 ceph-mon[32172]: mgrmap e13: a(active, since 48s) 2024-09-18T12:06:47.869 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:47 smithi169 ceph-mon[32172]: overall HEALTH_OK 2024-09-18T12:06:47.869 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:47 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:47.869 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:47 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:47.870 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:47 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:47.870 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:47 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-18T12:06:47.870 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:47 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:06:48.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:47 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-18T12:06:48.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:47 smithi076 ceph-mon[27582]: mon.a calling monitor election 2024-09-18T12:06:48.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:47 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-18T12:06:48.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:47 smithi076 ceph-mon[27582]: from='client.? 172.21.15.169:0/1539394589' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-18T12:06:48.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:47 smithi076 ceph-mon[27582]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:48.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:47 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-18T12:06:48.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:47 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-18T12:06:48.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:47 smithi076 ceph-mon[27582]: mon.c calling monitor election 2024-09-18T12:06:48.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:47 smithi076 ceph-mon[27582]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:48.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:47 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-18T12:06:48.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:47 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-18T12:06:48.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:47 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-18T12:06:48.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:47 smithi076 ceph-mon[27582]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-18T12:06:48.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:47 smithi076 ceph-mon[27582]: monmap e2: 2 mons at {a=[v2:172.21.15.76:3300/0,v1:172.21.15.76:6789/0],c=[v2:172.21.15.169:3300/0,v1:172.21.15.169:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-18T12:06:48.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:47 smithi076 ceph-mon[27582]: fsmap 2024-09-18T12:06:48.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:47 smithi076 ceph-mon[27582]: osdmap e4: 0 total, 0 up, 0 in 2024-09-18T12:06:48.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:47 smithi076 ceph-mon[27582]: mgrmap e13: a(active, since 48s) 2024-09-18T12:06:48.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:47 smithi076 ceph-mon[27582]: overall HEALTH_OK 2024-09-18T12:06:48.075 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:47 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:48.075 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:47 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:48.075 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:47 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:48.075 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:47 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-18T12:06:48.075 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:47 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:06:48.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:48 smithi169 ceph-mon[32172]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:48.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:48 smithi169 ceph-mon[32172]: Deploying daemon mon.b on smithi160 2024-09-18T12:06:48.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:48 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-18T12:06:49.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:48 smithi076 ceph-mon[27582]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:49.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:48 smithi076 ceph-mon[27582]: Deploying daemon mon.b on smithi160 2024-09-18T12:06:49.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:48 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-18T12:06:49.168 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-18T12:06:49.168 DEBUG:teuthology.orchestra.run.smithi169:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-18T12:06:49.440 INFO:teuthology.orchestra.run.smithi169.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.c/config 2024-09-18T12:06:50.678 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:50 smithi169 ceph-mon[32172]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:51.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:50 smithi076 ceph-mon[27582]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:51.093 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:06:51.093 INFO:teuthology.orchestra.run.smithi169.stdout:{"epoch":2,"fsid":"1afb0892-75b6-11ef-bceb-c7b262605968","modified":"2024-09-18T12:06:42.567623Z","created":"2024-09-18T12:05:10.502035Z","min_mon_release":17,"min_mon_release_name":"quincy","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"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.76:3300","nonce":0},{"type":"v1","addr":"172.21.15.76:6789","nonce":0}]},"addr":"172.21.15.76:6789/0","public_addr":"172.21.15.76:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:3300","nonce":0},{"type":"v1","addr":"172.21.15.169:6789","nonce":0}]},"addr":"172.21.15.169:6789/0","public_addr":"172.21.15.169:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-09-18T12:06:51.093 INFO:teuthology.orchestra.run.smithi169.stderr:dumped monmap epoch 2 2024-09-18T12:06:51.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:51 smithi160 systemd[1]: Started Ceph mon.b for 1afb0892-75b6-11ef-bceb-c7b262605968. 2024-09-18T12:06:52.691 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-18T12:06:52.692 DEBUG:teuthology.orchestra.run.smithi169:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-18T12:06:52.941 INFO:teuthology.orchestra.run.smithi169.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.c/config 2024-09-18T12:06:56.691 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:56 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-18T12:06:56.691 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:56 smithi169 ceph-mon[32172]: mon.c calling monitor election 2024-09-18T12:06:56.691 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:56 smithi169 ceph-mon[32172]: mon.a calling monitor election 2024-09-18T12:06:56.691 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:56 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:06:56.691 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:56 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-18T12:06:56.692 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:56 smithi169 ceph-mon[32172]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:56.692 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:56 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:06:56.692 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:56 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:06:56.692 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:56 smithi169 ceph-mon[32172]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:56.692 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:56 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:06:56.692 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:56 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:06:56.692 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:56 smithi169 ceph-mon[32172]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:56.692 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:56 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:06:56.692 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:56 smithi169 ceph-mon[32172]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-18T12:06:56.692 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:56 smithi169 ceph-mon[32172]: monmap e3: 3 mons at {a=[v2:172.21.15.76:3300/0,v1:172.21.15.76:6789/0],b=[v2:172.21.15.160:3300/0,v1:172.21.15.160:6789/0],c=[v2:172.21.15.169:3300/0,v1:172.21.15.169:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-18T12:06:56.692 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:56 smithi169 ceph-mon[32172]: fsmap 2024-09-18T12:06:56.692 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:56 smithi169 ceph-mon[32172]: osdmap e4: 0 total, 0 up, 0 in 2024-09-18T12:06:56.692 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:56 smithi169 ceph-mon[32172]: mgrmap e13: a(active, since 56s) 2024-09-18T12:06:56.692 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:56 smithi169 ceph-mon[32172]: Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-09-18T12:06:56.693 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:56 smithi169 ceph-mon[32172]: Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-09-18T12:06:56.693 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:56 smithi169 ceph-mon[32172]: [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-09-18T12:06:56.693 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:56 smithi169 ceph-mon[32172]: mon.b (rank 2) addr [v2:172.21.15.160:3300/0,v1:172.21.15.160:6789/0] is down (out of quorum) 2024-09-18T12:06:56.693 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:56 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:56.693 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:56 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:56.693 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:56 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:56.693 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:56 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:56.751 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:56 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-18T12:06:56.751 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:56 smithi076 ceph-mon[27582]: mon.c calling monitor election 2024-09-18T12:06:56.751 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:56 smithi076 ceph-mon[27582]: mon.a calling monitor election 2024-09-18T12:06:56.751 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:56 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:06:56.751 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:56 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-18T12:06:56.751 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:56 smithi076 ceph-mon[27582]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:56.751 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:56 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:06:56.751 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:56 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:06:56.751 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:56 smithi076 ceph-mon[27582]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:56.752 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:56 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:06:56.752 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:56 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:06:56.752 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:56 smithi076 ceph-mon[27582]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:56.752 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:56 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:06:56.752 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:56 smithi076 ceph-mon[27582]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-18T12:06:56.752 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:56 smithi076 ceph-mon[27582]: monmap e3: 3 mons at {a=[v2:172.21.15.76:3300/0,v1:172.21.15.76:6789/0],b=[v2:172.21.15.160:3300/0,v1:172.21.15.160:6789/0],c=[v2:172.21.15.169:3300/0,v1:172.21.15.169:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-18T12:06:56.752 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:56 smithi076 ceph-mon[27582]: fsmap 2024-09-18T12:06:56.752 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:56 smithi076 ceph-mon[27582]: osdmap e4: 0 total, 0 up, 0 in 2024-09-18T12:06:56.752 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:56 smithi076 ceph-mon[27582]: mgrmap e13: a(active, since 56s) 2024-09-18T12:06:56.752 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:56 smithi076 ceph-mon[27582]: Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-09-18T12:06:56.752 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:56 smithi076 ceph-mon[27582]: Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-09-18T12:06:56.753 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:56 smithi076 ceph-mon[27582]: [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-09-18T12:06:56.753 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:56 smithi076 ceph-mon[27582]: mon.b (rank 2) addr [v2:172.21.15.160:3300/0,v1:172.21.15.160:6789/0] is down (out of quorum) 2024-09-18T12:06:56.753 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:56 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:56.753 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:56 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:56.753 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:56 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:56.753 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:56 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:57.646 INFO:teuthology.orchestra.run.smithi169.stdout: 2024-09-18T12:06:57.646 INFO:teuthology.orchestra.run.smithi169.stdout:{"epoch":3,"fsid":"1afb0892-75b6-11ef-bceb-c7b262605968","modified":"2024-09-18T12:06:51.276288Z","created":"2024-09-18T12:05:10.502035Z","min_mon_release":17,"min_mon_release_name":"quincy","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"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.76:3300","nonce":0},{"type":"v1","addr":"172.21.15.76:6789","nonce":0}]},"addr":"172.21.15.76:6789/0","public_addr":"172.21.15.76:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:3300","nonce":0},{"type":"v1","addr":"172.21.15.169:6789","nonce":0}]},"addr":"172.21.15.169:6789/0","public_addr":"172.21.15.169:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":2,"name":"b","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:3300","nonce":0},{"type":"v1","addr":"172.21.15.160:6789","nonce":0}]},"addr":"172.21.15.160:6789/0","public_addr":"172.21.15.160:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-09-18T12:06:57.647 INFO:teuthology.orchestra.run.smithi169.stderr:dumped monmap epoch 3 2024-09-18T12:06:57.647 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:57 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:06:57.647 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:57 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:06:57.741 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:57 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:06:57.742 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:57 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:06:58.272 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-09-18T12:06:58.273 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph config generate-minimal-conf 2024-09-18T12:06:58.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-18T12:06:58.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: mon.c calling monitor election 2024-09-18T12:06:58.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: mon.a calling monitor election 2024-09-18T12:06:58.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:06:58.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-18T12:06:58.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:58.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:06:58.760 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:06:58.760 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:58.760 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:06:58.760 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:06:58.760 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:06:58.760 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:06:58.760 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-18T12:06:58.760 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: monmap e3: 3 mons at {a=[v2:172.21.15.76:3300/0,v1:172.21.15.76:6789/0],b=[v2:172.21.15.160:3300/0,v1:172.21.15.160:6789/0],c=[v2:172.21.15.169:3300/0,v1:172.21.15.169:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-18T12:06:58.760 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: fsmap 2024-09-18T12:06:58.760 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: osdmap e4: 0 total, 0 up, 0 in 2024-09-18T12:06:58.760 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: mgrmap e13: a(active, since 56s) 2024-09-18T12:06:58.760 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-09-18T12:06:58.761 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-09-18T12:06:58.761 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-09-18T12:06:58.761 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: mon.b (rank 2) addr [v2:172.21.15.160:3300/0,v1:172.21.15.160:6789/0] is down (out of quorum) 2024-09-18T12:06:58.761 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:58.761 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:58.761 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:58.761 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:06:58.761 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:06:58.761 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:06:59.161 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:58 smithi076 ceph-mon[27582]: mon.b calling monitor election 2024-09-18T12:06:59.161 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:58 smithi076 ceph-mon[27582]: mon.b calling monitor election 2024-09-18T12:06:59.161 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:58 smithi076 ceph-mon[27582]: mon.c calling monitor election 2024-09-18T12:06:59.161 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:58 smithi076 ceph-mon[27582]: mon.a calling monitor election 2024-09-18T12:06:59.161 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:58 smithi076 ceph-mon[27582]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-18T12:06:59.161 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:58 smithi076 ceph-mon[27582]: monmap e3: 3 mons at {a=[v2:172.21.15.76:3300/0,v1:172.21.15.76:6789/0],b=[v2:172.21.15.160:3300/0,v1:172.21.15.160:6789/0],c=[v2:172.21.15.169:3300/0,v1:172.21.15.169:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-18T12:06:59.161 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:58 smithi076 ceph-mon[27582]: fsmap 2024-09-18T12:06:59.161 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:58 smithi076 ceph-mon[27582]: osdmap e4: 0 total, 0 up, 0 in 2024-09-18T12:06:59.161 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:58 smithi076 ceph-mon[27582]: mgrmap e13: a(active, since 58s) 2024-09-18T12:06:59.161 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:58 smithi076 ceph-mon[27582]: Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-09-18T12:06:59.162 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:58 smithi076 ceph-mon[27582]: Cluster is now healthy 2024-09-18T12:06:59.162 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:06:58 smithi076 ceph-mon[27582]: overall HEALTH_OK 2024-09-18T12:06:59.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:58 smithi169 ceph-mon[32172]: mon.b calling monitor election 2024-09-18T12:06:59.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:58 smithi169 ceph-mon[32172]: mon.b calling monitor election 2024-09-18T12:06:59.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:58 smithi169 ceph-mon[32172]: mon.c calling monitor election 2024-09-18T12:06:59.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:58 smithi169 ceph-mon[32172]: mon.a calling monitor election 2024-09-18T12:06:59.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:58 smithi169 ceph-mon[32172]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-18T12:06:59.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:58 smithi169 ceph-mon[32172]: monmap e3: 3 mons at {a=[v2:172.21.15.76:3300/0,v1:172.21.15.76:6789/0],b=[v2:172.21.15.160:3300/0,v1:172.21.15.160:6789/0],c=[v2:172.21.15.169:3300/0,v1:172.21.15.169:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-18T12:06:59.192 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:58 smithi169 ceph-mon[32172]: fsmap 2024-09-18T12:06:59.192 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:58 smithi169 ceph-mon[32172]: osdmap e4: 0 total, 0 up, 0 in 2024-09-18T12:06:59.192 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:58 smithi169 ceph-mon[32172]: mgrmap e13: a(active, since 58s) 2024-09-18T12:06:59.192 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:58 smithi169 ceph-mon[32172]: Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-09-18T12:06:59.192 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:58 smithi169 ceph-mon[32172]: Cluster is now healthy 2024-09-18T12:06:59.192 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:06:58 smithi169 ceph-mon[32172]: overall HEALTH_OK 2024-09-18T12:06:59.194 INFO:teuthology.orchestra.run.smithi076.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T12:06:59.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: mon.b calling monitor election 2024-09-18T12:06:59.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: mon.b calling monitor election 2024-09-18T12:06:59.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: mon.c calling monitor election 2024-09-18T12:06:59.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: mon.a calling monitor election 2024-09-18T12:06:59.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-18T12:06:59.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: monmap e3: 3 mons at {a=[v2:172.21.15.76:3300/0,v1:172.21.15.76:6789/0],b=[v2:172.21.15.160:3300/0,v1:172.21.15.160:6789/0],c=[v2:172.21.15.169:3300/0,v1:172.21.15.169:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-18T12:06:59.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: fsmap 2024-09-18T12:06:59.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: osdmap e4: 0 total, 0 up, 0 in 2024-09-18T12:06:59.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: mgrmap e13: a(active, since 58s) 2024-09-18T12:06:59.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-09-18T12:06:59.260 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: Cluster is now healthy 2024-09-18T12:06:59.260 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:06:58 smithi160 ceph-mon[31705]: overall HEALTH_OK 2024-09-18T12:07:00.432 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:00 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:00.432 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:00 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:00.432 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:00 smithi160 ceph-mon[31705]: Reconfiguring mon.b (monmap changed)... 2024-09-18T12:07:00.432 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:00 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-18T12:07:00.432 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:00 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-18T12:07:00.432 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:00 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:00.432 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:00 smithi160 ceph-mon[31705]: Reconfiguring daemon mon.b on smithi160 2024-09-18T12:07:00.433 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:00 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:07:00.433 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:00 smithi160 ceph-mon[31705]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:00.433 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:00 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:00.499 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:00 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:00.499 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:00 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:00.499 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:00 smithi076 ceph-mon[27582]: Reconfiguring mon.b (monmap changed)... 2024-09-18T12:07:00.499 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:00 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-18T12:07:00.499 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:00 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-18T12:07:00.499 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:00 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:00.499 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:00 smithi076 ceph-mon[27582]: Reconfiguring daemon mon.b on smithi160 2024-09-18T12:07:00.499 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:00 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:07:00.499 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:00 smithi076 ceph-mon[27582]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:00.499 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:00 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:00.691 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:00 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:00.691 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:00 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:00.691 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:00 smithi169 ceph-mon[32172]: Reconfiguring mon.b (monmap changed)... 2024-09-18T12:07:00.691 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:00 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-18T12:07:00.692 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:00 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-18T12:07:00.692 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:00 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:00.692 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:00 smithi169 ceph-mon[32172]: Reconfiguring daemon mon.b on smithi160 2024-09-18T12:07:00.692 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:00 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:07:00.692 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:00 smithi169 ceph-mon[32172]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:00.692 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:00 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:00.860 INFO:teuthology.orchestra.run.smithi076.stdout:# minimal ceph.conf for 1afb0892-75b6-11ef-bceb-c7b262605968 2024-09-18T12:07:00.860 INFO:teuthology.orchestra.run.smithi076.stdout:[global] 2024-09-18T12:07:00.860 INFO:teuthology.orchestra.run.smithi076.stdout: fsid = 1afb0892-75b6-11ef-bceb-c7b262605968 2024-09-18T12:07:00.861 INFO:teuthology.orchestra.run.smithi076.stdout: mon_host = [v2:172.21.15.76:3300/0,v1:172.21.15.76:6789/0] [v2:172.21.15.160:3300/0,v1:172.21.15.160:6789/0] [v2:172.21.15.169:3300/0,v1:172.21.15.169:6789/0] 2024-09-18T12:07:01.451 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-09-18T12:07:01.451 DEBUG:teuthology.orchestra.run.smithi076:> set -ex 2024-09-18T12:07:01.452 DEBUG:teuthology.orchestra.run.smithi076:> sudo dd of=/etc/ceph/ceph.conf 2024-09-18T12:07:01.481 DEBUG:teuthology.orchestra.run.smithi076:> set -ex 2024-09-18T12:07:01.481 DEBUG:teuthology.orchestra.run.smithi076:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-18T12:07:01.547 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-09-18T12:07:01.547 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd of=/etc/ceph/ceph.conf 2024-09-18T12:07:01.580 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-09-18T12:07:01.580 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-18T12:07:01.649 DEBUG:teuthology.orchestra.run.smithi169:> set -ex 2024-09-18T12:07:01.649 DEBUG:teuthology.orchestra.run.smithi169:> sudo dd of=/etc/ceph/ceph.conf 2024-09-18T12:07:01.680 DEBUG:teuthology.orchestra.run.smithi169:> set -ex 2024-09-18T12:07:01.680 DEBUG:teuthology.orchestra.run.smithi169:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-18T12:07:01.742 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:01 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:01.743 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:01 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:01.743 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:01 smithi169 ceph-mon[32172]: Reconfiguring mon.c (monmap changed)... 2024-09-18T12:07:01.743 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:01 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-18T12:07:01.743 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:01 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-18T12:07:01.743 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:01 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:01.743 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:01 smithi169 ceph-mon[32172]: Reconfiguring daemon mon.c on smithi169 2024-09-18T12:07:01.743 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:01 smithi169 ceph-mon[32172]: from='client.? 172.21.15.76:0/2468050674' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:01.746 INFO:tasks.cephadm:Adding mgr.a on smithi076 2024-09-18T12:07:01.746 INFO:tasks.cephadm:Adding mgr.b on smithi160 2024-09-18T12:07:01.746 DEBUG:teuthology.orchestra.run.smithi169:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph orch apply mgr '2;smithi076=a;smithi160=b' 2024-09-18T12:07:01.758 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:01 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:01.758 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:01 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:01.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:01 smithi160 ceph-mon[31705]: Reconfiguring mon.c (monmap changed)... 2024-09-18T12:07:01.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:01 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-18T12:07:01.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:01 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-18T12:07:01.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:01 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:01.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:01 smithi160 ceph-mon[31705]: Reconfiguring daemon mon.c on smithi169 2024-09-18T12:07:01.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:01 smithi160 ceph-mon[31705]: from='client.? 172.21.15.76:0/2468050674' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:01.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:01 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:01.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:01 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:01.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:01 smithi076 ceph-mon[27582]: Reconfiguring mon.c (monmap changed)... 2024-09-18T12:07:01.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:01 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-18T12:07:01.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:01 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-18T12:07:01.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:01 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:01.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:01 smithi076 ceph-mon[27582]: Reconfiguring daemon mon.c on smithi169 2024-09-18T12:07:01.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:01 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/2468050674' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:02.025 INFO:teuthology.orchestra.run.smithi169.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.c/config 2024-09-18T12:07:03.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:02 smithi169 ceph-mon[32172]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:03.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:02 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:03.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:02 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:03.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:02 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:07:03.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:02 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:03.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:02 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:07:03.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:02 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:03.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:02 smithi160 ceph-mon[31705]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:03.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:02 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:03.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:02 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:03.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:02 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:07:03.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:02 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:03.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:02 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:07:03.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:02 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:03.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:02 smithi076 ceph-mon[27582]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:03.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:02 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:03.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:02 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:03.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:02 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:07:03.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:02 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:03.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:02 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:07:03.324 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:02 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:03.684 INFO:teuthology.orchestra.run.smithi169.stdout:Scheduled mgr update... 2024-09-18T12:07:04.251 DEBUG:teuthology.orchestra.run.smithi160:mgr.b> sudo journalctl -f -n 0 -u ceph-1afb0892-75b6-11ef-bceb-c7b262605968@mgr.b.service 2024-09-18T12:07:04.253 INFO:tasks.cephadm:Deploying OSDs... 2024-09-18T12:07:04.254 DEBUG:teuthology.orchestra.run.smithi076:> set -ex 2024-09-18T12:07:04.254 DEBUG:teuthology.orchestra.run.smithi076:> dd if=/scratch_devs of=/dev/stdout 2024-09-18T12:07:04.273 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-18T12:07:04.273 DEBUG:teuthology.orchestra.run.smithi076:> stat /dev/vg_nvme/lv_1 2024-09-18T12:07:04.331 INFO:teuthology.orchestra.run.smithi076.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-18T12:07:04.331 INFO:teuthology.orchestra.run.smithi076.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-18T12:07:04.331 INFO:teuthology.orchestra.run.smithi076.stdout:Device: 5h/5d Inode: 666 Links: 1 2024-09-18T12:07:04.332 INFO:teuthology.orchestra.run.smithi076.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-18T12:07:04.332 INFO:teuthology.orchestra.run.smithi076.stdout:Context: system_u:object_r:device_t:s0 2024-09-18T12:07:04.332 INFO:teuthology.orchestra.run.smithi076.stdout:Access: 2024-09-18 12:06:08.766335121 +0000 2024-09-18T12:07:04.332 INFO:teuthology.orchestra.run.smithi076.stdout:Modify: 2024-09-18 12:01:22.377367595 +0000 2024-09-18T12:07:04.332 INFO:teuthology.orchestra.run.smithi076.stdout:Change: 2024-09-18 12:01:22.377367595 +0000 2024-09-18T12:07:04.332 INFO:teuthology.orchestra.run.smithi076.stdout: Birth: 2024-09-18 12:01:22.377367595 +0000 2024-09-18T12:07:04.332 DEBUG:teuthology.orchestra.run.smithi076:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-18T12:07:04.400 INFO:teuthology.orchestra.run.smithi076.stderr:1+0 records in 2024-09-18T12:07:04.400 INFO:teuthology.orchestra.run.smithi076.stderr:1+0 records out 2024-09-18T12:07:04.400 INFO:teuthology.orchestra.run.smithi076.stderr:512 bytes copied, 0.00031731 s, 1.6 MB/s 2024-09-18T12:07:04.401 DEBUG:teuthology.orchestra.run.smithi076:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-18T12:07:04.461 DEBUG:teuthology.orchestra.run.smithi076:> stat /dev/vg_nvme/lv_2 2024-09-18T12:07:04.519 INFO:teuthology.orchestra.run.smithi076.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-18T12:07:04.520 INFO:teuthology.orchestra.run.smithi076.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-18T12:07:04.520 INFO:teuthology.orchestra.run.smithi076.stdout:Device: 5h/5d Inode: 686 Links: 1 2024-09-18T12:07:04.520 INFO:teuthology.orchestra.run.smithi076.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-18T12:07:04.520 INFO:teuthology.orchestra.run.smithi076.stdout:Context: system_u:object_r:device_t:s0 2024-09-18T12:07:04.520 INFO:teuthology.orchestra.run.smithi076.stdout:Access: 2024-09-18 12:06:08.797334210 +0000 2024-09-18T12:07:04.520 INFO:teuthology.orchestra.run.smithi076.stdout:Modify: 2024-09-18 12:01:22.713357685 +0000 2024-09-18T12:07:04.520 INFO:teuthology.orchestra.run.smithi076.stdout:Change: 2024-09-18 12:01:22.713357685 +0000 2024-09-18T12:07:04.520 INFO:teuthology.orchestra.run.smithi076.stdout: Birth: 2024-09-18 12:01:22.713357685 +0000 2024-09-18T12:07:04.520 DEBUG:teuthology.orchestra.run.smithi076:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-18T12:07:04.588 INFO:teuthology.orchestra.run.smithi076.stderr:1+0 records in 2024-09-18T12:07:04.588 INFO:teuthology.orchestra.run.smithi076.stderr:1+0 records out 2024-09-18T12:07:04.588 INFO:teuthology.orchestra.run.smithi076.stderr:512 bytes copied, 0.000257354 s, 2.0 MB/s 2024-09-18T12:07:04.589 DEBUG:teuthology.orchestra.run.smithi076:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-18T12:07:04.649 DEBUG:teuthology.orchestra.run.smithi076:> stat /dev/vg_nvme/lv_3 2024-09-18T12:07:04.708 INFO:teuthology.orchestra.run.smithi076.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-18T12:07:04.708 INFO:teuthology.orchestra.run.smithi076.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-18T12:07:04.708 INFO:teuthology.orchestra.run.smithi076.stdout:Device: 5h/5d Inode: 705 Links: 1 2024-09-18T12:07:04.708 INFO:teuthology.orchestra.run.smithi076.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-18T12:07:04.708 INFO:teuthology.orchestra.run.smithi076.stdout:Context: system_u:object_r:device_t:s0 2024-09-18T12:07:04.708 INFO:teuthology.orchestra.run.smithi076.stdout:Access: 2024-09-18 12:06:08.828333299 +0000 2024-09-18T12:07:04.708 INFO:teuthology.orchestra.run.smithi076.stdout:Modify: 2024-09-18 12:01:23.063347362 +0000 2024-09-18T12:07:04.708 INFO:teuthology.orchestra.run.smithi076.stdout:Change: 2024-09-18 12:01:23.063347362 +0000 2024-09-18T12:07:04.709 INFO:teuthology.orchestra.run.smithi076.stdout: Birth: 2024-09-18 12:01:23.063347362 +0000 2024-09-18T12:07:04.709 DEBUG:teuthology.orchestra.run.smithi076:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-18T12:07:04.775 INFO:teuthology.orchestra.run.smithi076.stderr:1+0 records in 2024-09-18T12:07:04.775 INFO:teuthology.orchestra.run.smithi076.stderr:1+0 records out 2024-09-18T12:07:04.775 INFO:teuthology.orchestra.run.smithi076.stderr:512 bytes copied, 0.000205911 s, 2.5 MB/s 2024-09-18T12:07:04.776 DEBUG:teuthology.orchestra.run.smithi076:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-18T12:07:04.834 DEBUG:teuthology.orchestra.run.smithi076:> stat /dev/vg_nvme/lv_4 2024-09-18T12:07:04.892 INFO:teuthology.orchestra.run.smithi076.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-18T12:07:04.892 INFO:teuthology.orchestra.run.smithi076.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-18T12:07:04.892 INFO:teuthology.orchestra.run.smithi076.stdout:Device: 5h/5d Inode: 723 Links: 1 2024-09-18T12:07:04.892 INFO:teuthology.orchestra.run.smithi076.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-18T12:07:04.893 INFO:teuthology.orchestra.run.smithi076.stdout:Context: system_u:object_r:device_t:s0 2024-09-18T12:07:04.893 INFO:teuthology.orchestra.run.smithi076.stdout:Access: 2024-09-18 12:06:08.857332447 +0000 2024-09-18T12:07:04.893 INFO:teuthology.orchestra.run.smithi076.stdout:Modify: 2024-09-18 12:01:23.412337069 +0000 2024-09-18T12:07:04.893 INFO:teuthology.orchestra.run.smithi076.stdout:Change: 2024-09-18 12:01:23.412337069 +0000 2024-09-18T12:07:04.893 INFO:teuthology.orchestra.run.smithi076.stdout: Birth: 2024-09-18 12:01:23.412337069 +0000 2024-09-18T12:07:04.893 DEBUG:teuthology.orchestra.run.smithi076:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-18T12:07:04.904 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:04 smithi160 ceph-mon[31705]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:04.904 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:04 smithi160 ceph-mon[31705]: from='client.24109 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi076=a;smithi160=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:07:04.904 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:04 smithi160 ceph-mon[31705]: Saving service mgr spec with placement smithi076=a;smithi160=b;count:2 2024-09-18T12:07:04.904 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:04 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:04.904 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:04 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:07:04.904 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:04 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:04.904 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:04 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:07:04.904 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:04 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:04.905 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:04 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-18T12:07:04.905 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:04 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-18T12:07:04.905 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:04 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-18T12:07:04.905 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:04 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:04.905 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:04 smithi160 ceph-mon[31705]: Deploying daemon mgr.b on smithi160 2024-09-18T12:07:04.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:04 smithi169 ceph-mon[32172]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:04.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:04 smithi169 ceph-mon[32172]: from='client.24109 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi076=a;smithi160=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:07:04.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:04 smithi169 ceph-mon[32172]: Saving service mgr spec with placement smithi076=a;smithi160=b;count:2 2024-09-18T12:07:04.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:04 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:04.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:04 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:07:04.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:04 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:04.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:04 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:07:04.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:04 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:04.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:04 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-18T12:07:04.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:04 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-18T12:07:04.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:04 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-18T12:07:04.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:04 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:04.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:04 smithi169 ceph-mon[32172]: Deploying daemon mgr.b on smithi160 2024-09-18T12:07:04.955 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:04 smithi076 ceph-mon[27582]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:04.955 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:04 smithi076 ceph-mon[27582]: from='client.24109 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi076=a;smithi160=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:07:04.956 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:04 smithi076 ceph-mon[27582]: Saving service mgr spec with placement smithi076=a;smithi160=b;count:2 2024-09-18T12:07:04.956 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:04 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:04.956 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:04 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:07:04.956 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:04 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:04.956 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:04 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:07:04.956 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:04 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:04.956 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:04 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-18T12:07:04.956 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:04 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-18T12:07:04.956 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:04 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-18T12:07:04.956 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:04 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:04.956 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:04 smithi076 ceph-mon[27582]: Deploying daemon mgr.b on smithi160 2024-09-18T12:07:04.958 INFO:teuthology.orchestra.run.smithi076.stderr:1+0 records in 2024-09-18T12:07:04.958 INFO:teuthology.orchestra.run.smithi076.stderr:1+0 records out 2024-09-18T12:07:04.958 INFO:teuthology.orchestra.run.smithi076.stderr:512 bytes copied, 0.000220096 s, 2.3 MB/s 2024-09-18T12:07:04.959 DEBUG:teuthology.orchestra.run.smithi076:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-18T12:07:05.017 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-09-18T12:07:05.017 DEBUG:teuthology.orchestra.run.smithi160:> dd if=/scratch_devs of=/dev/stdout 2024-09-18T12:07:05.033 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-18T12:07:05.034 DEBUG:teuthology.orchestra.run.smithi160:> stat /dev/vg_nvme/lv_1 2024-09-18T12:07:05.089 INFO:teuthology.orchestra.run.smithi160.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-18T12:07:05.089 INFO:teuthology.orchestra.run.smithi160.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-18T12:07:05.089 INFO:teuthology.orchestra.run.smithi160.stdout:Device: 5h/5d Inode: 665 Links: 1 2024-09-18T12:07:05.090 INFO:teuthology.orchestra.run.smithi160.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-18T12:07:05.090 INFO:teuthology.orchestra.run.smithi160.stdout:Context: system_u:object_r:device_t:s0 2024-09-18T12:07:05.090 INFO:teuthology.orchestra.run.smithi160.stdout:Access: 2024-09-18 12:07:05.020066264 +0000 2024-09-18T12:07:05.090 INFO:teuthology.orchestra.run.smithi160.stdout:Modify: 2024-09-18 12:01:22.731295210 +0000 2024-09-18T12:07:05.090 INFO:teuthology.orchestra.run.smithi160.stdout:Change: 2024-09-18 12:01:22.731295210 +0000 2024-09-18T12:07:05.090 INFO:teuthology.orchestra.run.smithi160.stdout: Birth: 2024-09-18 12:01:22.731295210 +0000 2024-09-18T12:07:05.090 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-18T12:07:05.246 INFO:teuthology.orchestra.run.smithi160.stderr:1+0 records in 2024-09-18T12:07:05.246 INFO:teuthology.orchestra.run.smithi160.stderr:1+0 records out 2024-09-18T12:07:05.247 INFO:teuthology.orchestra.run.smithi160.stderr:512 bytes copied, 0.000215107 s, 2.4 MB/s 2024-09-18T12:07:05.248 DEBUG:teuthology.orchestra.run.smithi160:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-18T12:07:05.264 DEBUG:teuthology.orchestra.run.smithi160:> stat /dev/vg_nvme/lv_2 2024-09-18T12:07:05.322 INFO:teuthology.orchestra.run.smithi160.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-18T12:07:05.322 INFO:teuthology.orchestra.run.smithi160.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-18T12:07:05.322 INFO:teuthology.orchestra.run.smithi160.stdout:Device: 5h/5d Inode: 686 Links: 1 2024-09-18T12:07:05.323 INFO:teuthology.orchestra.run.smithi160.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-18T12:07:05.323 INFO:teuthology.orchestra.run.smithi160.stdout:Context: system_u:object_r:device_t:s0 2024-09-18T12:07:05.323 INFO:teuthology.orchestra.run.smithi160.stdout:Access: 2024-09-18 12:07:05.203063583 +0000 2024-09-18T12:07:05.323 INFO:teuthology.orchestra.run.smithi160.stdout:Modify: 2024-09-18 12:01:23.050290521 +0000 2024-09-18T12:07:05.323 INFO:teuthology.orchestra.run.smithi160.stdout:Change: 2024-09-18 12:01:23.050290521 +0000 2024-09-18T12:07:05.323 INFO:teuthology.orchestra.run.smithi160.stdout: Birth: 2024-09-18 12:01:23.050290521 +0000 2024-09-18T12:07:05.323 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-18T12:07:05.390 INFO:teuthology.orchestra.run.smithi160.stderr:1+0 records in 2024-09-18T12:07:05.390 INFO:teuthology.orchestra.run.smithi160.stderr:1+0 records out 2024-09-18T12:07:05.390 INFO:teuthology.orchestra.run.smithi160.stderr:512 bytes copied, 0.000218262 s, 2.3 MB/s 2024-09-18T12:07:05.391 DEBUG:teuthology.orchestra.run.smithi160:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-18T12:07:05.448 DEBUG:teuthology.orchestra.run.smithi160:> stat /dev/vg_nvme/lv_3 2024-09-18T12:07:05.504 INFO:teuthology.orchestra.run.smithi160.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-18T12:07:05.504 INFO:teuthology.orchestra.run.smithi160.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-18T12:07:05.504 INFO:teuthology.orchestra.run.smithi160.stdout:Device: 5h/5d Inode: 705 Links: 1 2024-09-18T12:07:05.504 INFO:teuthology.orchestra.run.smithi160.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-18T12:07:05.504 INFO:teuthology.orchestra.run.smithi160.stdout:Context: system_u:object_r:device_t:s0 2024-09-18T12:07:05.504 INFO:teuthology.orchestra.run.smithi160.stdout:Access: 2024-09-18 12:07:05.203063583 +0000 2024-09-18T12:07:05.504 INFO:teuthology.orchestra.run.smithi160.stdout:Modify: 2024-09-18 12:01:23.392285493 +0000 2024-09-18T12:07:05.505 INFO:teuthology.orchestra.run.smithi160.stdout:Change: 2024-09-18 12:01:23.392285493 +0000 2024-09-18T12:07:05.505 INFO:teuthology.orchestra.run.smithi160.stdout: Birth: 2024-09-18 12:01:23.392285493 +0000 2024-09-18T12:07:05.505 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-18T12:07:05.569 INFO:teuthology.orchestra.run.smithi160.stderr:1+0 records in 2024-09-18T12:07:05.569 INFO:teuthology.orchestra.run.smithi160.stderr:1+0 records out 2024-09-18T12:07:05.569 INFO:teuthology.orchestra.run.smithi160.stderr:512 bytes copied, 0.000204082 s, 2.5 MB/s 2024-09-18T12:07:05.570 DEBUG:teuthology.orchestra.run.smithi160:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-18T12:07:05.626 DEBUG:teuthology.orchestra.run.smithi160:> stat /dev/vg_nvme/lv_4 2024-09-18T12:07:05.690 INFO:teuthology.orchestra.run.smithi160.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-18T12:07:05.690 INFO:teuthology.orchestra.run.smithi160.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-18T12:07:05.690 INFO:teuthology.orchestra.run.smithi160.stdout:Device: 5h/5d Inode: 723 Links: 1 2024-09-18T12:07:05.690 INFO:teuthology.orchestra.run.smithi160.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-18T12:07:05.690 INFO:teuthology.orchestra.run.smithi160.stdout:Context: system_u:object_r:device_t:s0 2024-09-18T12:07:05.690 INFO:teuthology.orchestra.run.smithi160.stdout:Access: 2024-09-18 12:07:05.204063568 +0000 2024-09-18T12:07:05.690 INFO:teuthology.orchestra.run.smithi160.stdout:Modify: 2024-09-18 12:01:23.731280510 +0000 2024-09-18T12:07:05.691 INFO:teuthology.orchestra.run.smithi160.stdout:Change: 2024-09-18 12:01:23.731280510 +0000 2024-09-18T12:07:05.691 INFO:teuthology.orchestra.run.smithi160.stdout: Birth: 2024-09-18 12:01:23.731280510 +0000 2024-09-18T12:07:05.691 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-18T12:07:05.754 INFO:teuthology.orchestra.run.smithi160.stderr:1+0 records in 2024-09-18T12:07:05.754 INFO:teuthology.orchestra.run.smithi160.stderr:1+0 records out 2024-09-18T12:07:05.754 INFO:teuthology.orchestra.run.smithi160.stderr:512 bytes copied, 0.000214227 s, 2.4 MB/s 2024-09-18T12:07:05.756 DEBUG:teuthology.orchestra.run.smithi160:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-18T12:07:05.813 DEBUG:teuthology.orchestra.run.smithi169:> set -ex 2024-09-18T12:07:05.813 DEBUG:teuthology.orchestra.run.smithi169:> dd if=/scratch_devs of=/dev/stdout 2024-09-18T12:07:05.833 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-18T12:07:05.833 DEBUG:teuthology.orchestra.run.smithi169:> stat /dev/vg_nvme/lv_1 2024-09-18T12:07:05.891 INFO:teuthology.orchestra.run.smithi169.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-18T12:07:05.891 INFO:teuthology.orchestra.run.smithi169.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-18T12:07:05.892 INFO:teuthology.orchestra.run.smithi169.stdout:Device: 5h/5d Inode: 665 Links: 1 2024-09-18T12:07:05.892 INFO:teuthology.orchestra.run.smithi169.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-18T12:07:05.892 INFO:teuthology.orchestra.run.smithi169.stdout:Context: system_u:object_r:device_t:s0 2024-09-18T12:07:05.892 INFO:teuthology.orchestra.run.smithi169.stdout:Access: 2024-09-18 12:06:41.317724513 +0000 2024-09-18T12:07:05.892 INFO:teuthology.orchestra.run.smithi169.stdout:Modify: 2024-09-18 12:01:19.120606252 +0000 2024-09-18T12:07:05.892 INFO:teuthology.orchestra.run.smithi169.stdout:Change: 2024-09-18 12:01:19.120606252 +0000 2024-09-18T12:07:05.892 INFO:teuthology.orchestra.run.smithi169.stdout: Birth: 2024-09-18 12:01:19.120606252 +0000 2024-09-18T12:07:05.892 DEBUG:teuthology.orchestra.run.smithi169:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-18T12:07:05.961 INFO:teuthology.orchestra.run.smithi169.stderr:1+0 records in 2024-09-18T12:07:05.961 INFO:teuthology.orchestra.run.smithi169.stderr:1+0 records out 2024-09-18T12:07:05.961 INFO:teuthology.orchestra.run.smithi169.stderr:512 bytes copied, 0.000228606 s, 2.2 MB/s 2024-09-18T12:07:05.962 DEBUG:teuthology.orchestra.run.smithi169:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-18T12:07:05.995 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 18 12:07:05 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-b[33036]: 2024-09-18T12:07:05.926+0000 7f87d817bec0 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-18T12:07:05.996 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 18 12:07:05 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-b[33036]: 2024-09-18T12:07:05.994+0000 7f87d817bec0 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-18T12:07:06.020 DEBUG:teuthology.orchestra.run.smithi169:> stat /dev/vg_nvme/lv_2 2024-09-18T12:07:06.077 INFO:teuthology.orchestra.run.smithi169.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-18T12:07:06.078 INFO:teuthology.orchestra.run.smithi169.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-18T12:07:06.078 INFO:teuthology.orchestra.run.smithi169.stdout:Device: 5h/5d Inode: 685 Links: 1 2024-09-18T12:07:06.078 INFO:teuthology.orchestra.run.smithi169.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-18T12:07:06.078 INFO:teuthology.orchestra.run.smithi169.stdout:Context: system_u:object_r:device_t:s0 2024-09-18T12:07:06.078 INFO:teuthology.orchestra.run.smithi169.stdout:Access: 2024-09-18 12:06:41.317724513 +0000 2024-09-18T12:07:06.078 INFO:teuthology.orchestra.run.smithi169.stdout:Modify: 2024-09-18 12:01:19.454599260 +0000 2024-09-18T12:07:06.078 INFO:teuthology.orchestra.run.smithi169.stdout:Change: 2024-09-18 12:01:19.454599260 +0000 2024-09-18T12:07:06.078 INFO:teuthology.orchestra.run.smithi169.stdout: Birth: 2024-09-18 12:01:19.454599260 +0000 2024-09-18T12:07:06.078 DEBUG:teuthology.orchestra.run.smithi169:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-18T12:07:06.143 INFO:teuthology.orchestra.run.smithi169.stderr:1+0 records in 2024-09-18T12:07:06.143 INFO:teuthology.orchestra.run.smithi169.stderr:1+0 records out 2024-09-18T12:07:06.143 INFO:teuthology.orchestra.run.smithi169.stderr:512 bytes copied, 0.000277878 s, 1.8 MB/s 2024-09-18T12:07:06.145 DEBUG:teuthology.orchestra.run.smithi169:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-18T12:07:06.202 DEBUG:teuthology.orchestra.run.smithi169:> stat /dev/vg_nvme/lv_3 2024-09-18T12:07:06.258 INFO:teuthology.orchestra.run.smithi169.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-18T12:07:06.258 INFO:teuthology.orchestra.run.smithi169.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-18T12:07:06.258 INFO:teuthology.orchestra.run.smithi169.stdout:Device: 5h/5d Inode: 704 Links: 1 2024-09-18T12:07:06.258 INFO:teuthology.orchestra.run.smithi169.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-18T12:07:06.258 INFO:teuthology.orchestra.run.smithi169.stdout:Context: system_u:object_r:device_t:s0 2024-09-18T12:07:06.258 INFO:teuthology.orchestra.run.smithi169.stdout:Access: 2024-09-18 12:06:41.318724492 +0000 2024-09-18T12:07:06.258 INFO:teuthology.orchestra.run.smithi169.stdout:Modify: 2024-09-18 12:01:19.802591975 +0000 2024-09-18T12:07:06.258 INFO:teuthology.orchestra.run.smithi169.stdout:Change: 2024-09-18 12:01:19.802591975 +0000 2024-09-18T12:07:06.258 INFO:teuthology.orchestra.run.smithi169.stdout: Birth: 2024-09-18 12:01:19.802591975 +0000 2024-09-18T12:07:06.259 DEBUG:teuthology.orchestra.run.smithi169:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-18T12:07:06.259 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 18 12:07:06 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-b[33036]: 2024-09-18T12:07:06.126+0000 7f87d817bec0 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-18T12:07:06.322 INFO:teuthology.orchestra.run.smithi169.stderr:1+0 records in 2024-09-18T12:07:06.322 INFO:teuthology.orchestra.run.smithi169.stderr:1+0 records out 2024-09-18T12:07:06.322 INFO:teuthology.orchestra.run.smithi169.stderr:512 bytes copied, 0.000186247 s, 2.7 MB/s 2024-09-18T12:07:06.323 DEBUG:teuthology.orchestra.run.smithi169:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-18T12:07:06.379 DEBUG:teuthology.orchestra.run.smithi169:> stat /dev/vg_nvme/lv_4 2024-09-18T12:07:06.436 INFO:teuthology.orchestra.run.smithi169.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-18T12:07:06.436 INFO:teuthology.orchestra.run.smithi169.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-18T12:07:06.437 INFO:teuthology.orchestra.run.smithi169.stdout:Device: 5h/5d Inode: 722 Links: 1 2024-09-18T12:07:06.437 INFO:teuthology.orchestra.run.smithi169.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-18T12:07:06.437 INFO:teuthology.orchestra.run.smithi169.stdout:Context: system_u:object_r:device_t:s0 2024-09-18T12:07:06.437 INFO:teuthology.orchestra.run.smithi169.stdout:Access: 2024-09-18 12:06:41.318724492 +0000 2024-09-18T12:07:06.437 INFO:teuthology.orchestra.run.smithi169.stdout:Modify: 2024-09-18 12:01:20.133585046 +0000 2024-09-18T12:07:06.437 INFO:teuthology.orchestra.run.smithi169.stdout:Change: 2024-09-18 12:01:20.133585046 +0000 2024-09-18T12:07:06.437 INFO:teuthology.orchestra.run.smithi169.stdout: Birth: 2024-09-18 12:01:20.133585046 +0000 2024-09-18T12:07:06.437 DEBUG:teuthology.orchestra.run.smithi169:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-18T12:07:06.500 INFO:teuthology.orchestra.run.smithi169.stderr:1+0 records in 2024-09-18T12:07:06.500 INFO:teuthology.orchestra.run.smithi169.stderr:1+0 records out 2024-09-18T12:07:06.500 INFO:teuthology.orchestra.run.smithi169.stderr:512 bytes copied, 0.000235344 s, 2.2 MB/s 2024-09-18T12:07:06.502 DEBUG:teuthology.orchestra.run.smithi169:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-18T12:07:06.558 INFO:tasks.cephadm:Deploying osd.0 on smithi076 with /dev/vg_nvme/lv_4... 2024-09-18T12:07:06.558 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-09-18T12:07:06.562 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 18 12:07:06 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-b[33036]: 2024-09-18T12:07:06.274+0000 7f87d817bec0 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-18T12:07:06.562 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 18 12:07:06 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-b[33036]: 2024-09-18T12:07:06.561+0000 7f87d817bec0 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-18T12:07:06.805 INFO:teuthology.orchestra.run.smithi076.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T12:07:06.827 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 18 12:07:06 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-b[33036]: 2024-09-18T12:07:06.627+0000 7f87d817bec0 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-18T12:07:06.827 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 18 12:07:06 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-b[33036]: 2024-09-18T12:07:06.802+0000 7f87d817bec0 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-18T12:07:07.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:06 smithi169 ceph-mon[32172]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:07.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:06 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:07.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:06 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:07.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:06 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:07.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:06 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:07.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:06 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:07:07.246 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:06 smithi076 ceph-mon[27582]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:07.246 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:06 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:07.246 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:06 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:07.246 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:06 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:07.247 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:06 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:07.247 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:06 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:07:07.258 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:06 smithi160 ceph-mon[31705]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:07.258 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:06 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:07.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:06 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:07.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:06 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:07.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:06 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:07.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:06 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:07:08.008 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 18 12:07:07 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-b[33036]: 2024-09-18T12:07:07.674+0000 7f87d817bec0 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-18T12:07:08.009 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 18 12:07:07 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-b[33036]: 2024-09-18T12:07:07.740+0000 7f87d817bec0 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-18T12:07:08.296 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:08 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:08.296 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:08 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:08.296 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:08 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:08.296 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:08 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:07:08.296 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:08 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:08.297 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:08 smithi076 ceph-mon[27582]: Reconfiguring mgr.a (unknown last config time)... 2024-09-18T12:07:08.297 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:08 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-18T12:07:08.297 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:08 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-18T12:07:08.297 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:08 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:08.297 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:08 smithi076 ceph-mon[27582]: Reconfiguring daemon mgr.a on smithi076 2024-09-18T12:07:08.297 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:08 smithi076 ceph-mon[27582]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:08.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:08 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:08.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:08 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:08.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:08 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:08.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:08 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:07:08.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:08 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:08.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:08 smithi169 ceph-mon[32172]: Reconfiguring mgr.a (unknown last config time)... 2024-09-18T12:07:08.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:08 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-18T12:07:08.442 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:08 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-18T12:07:08.442 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:08 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:08.442 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:08 smithi169 ceph-mon[32172]: Reconfiguring daemon mgr.a on smithi076 2024-09-18T12:07:08.442 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:08 smithi169 ceph-mon[32172]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:08.465 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:08 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:08.465 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:08 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:08.465 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:08 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:08.465 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:08 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:07:08.466 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:08 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:08.466 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:08 smithi160 ceph-mon[31705]: Reconfiguring mgr.a (unknown last config time)... 2024-09-18T12:07:08.466 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:08 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-18T12:07:08.466 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:08 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-18T12:07:08.466 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:08 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:08.466 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:08 smithi160 ceph-mon[31705]: Reconfiguring daemon mgr.a on smithi076 2024-09-18T12:07:08.466 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:08 smithi160 ceph-mon[31705]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:08.758 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 18 12:07:08 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-b[33036]: 2024-09-18T12:07:08.463+0000 7f87d817bec0 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-18T12:07:08.759 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 18 12:07:08 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-b[33036]: 2024-09-18T12:07:08.576+0000 7f87d817bec0 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-18T12:07:08.759 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 18 12:07:08 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-b[33036]: 2024-09-18T12:07:08.698+0000 7f87d817bec0 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-18T12:07:09.013 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 18 12:07:08 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-b[33036]: 2024-09-18T12:07:08.759+0000 7f87d817bec0 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-18T12:07:09.014 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 18 12:07:08 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-b[33036]: 2024-09-18T12:07:08.885+0000 7f87d817bec0 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-18T12:07:09.014 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 18 12:07:08 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-b[33036]: 2024-09-18T12:07:08.953+0000 7f87d817bec0 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-18T12:07:09.014 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 18 12:07:09 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-b[33036]: 2024-09-18T12:07:09.012+0000 7f87d817bec0 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-18T12:07:09.283 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 18 12:07:09 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-b[33036]: 2024-09-18T12:07:09.152+0000 7f87d817bec0 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-18T12:07:09.283 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 18 12:07:09 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-b[33036]: 2024-09-18T12:07:09.216+0000 7f87d817bec0 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-18T12:07:09.283 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 18 12:07:09 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-b[33036]: 2024-09-18T12:07:09.281+0000 7f87d817bec0 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-18T12:07:09.665 INFO:teuthology.orchestra.run.smithi076.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-09-18T12:07:09.752 INFO:teuthology.orchestra.run.smithi076.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-09-18T12:07:09.758 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 18 12:07:09 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-b[33036]: 2024-09-18T12:07:09.362+0000 7f87d817bec0 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-18T12:07:09.758 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 18 12:07:09 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-b[33036]: 2024-09-18T12:07:09.419+0000 7f87d817bec0 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-18T12:07:09.758 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 18 12:07:09 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-b[33036]: 2024-09-18T12:07:09.476+0000 7f87d817bec0 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-18T12:07:09.765 INFO:teuthology.orchestra.run.smithi076.stderr: stderr: 10+0 records in 2024-09-18T12:07:09.765 INFO:teuthology.orchestra.run.smithi076.stderr:10+0 records out 2024-09-18T12:07:09.765 INFO:teuthology.orchestra.run.smithi076.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0111972 s, 936 MB/s 2024-09-18T12:07:09.765 INFO:teuthology.orchestra.run.smithi076.stderr:--> Zapping successful for: 2024-09-18T12:07:10.315 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:10 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:10.315 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:10 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:10.315 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:10 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:07:10.315 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:10 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:10.315 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:10 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:07:10.315 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:10 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:10.315 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:10 smithi169 ceph-mon[32172]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:10.315 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:10 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:10.322 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:10 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:10.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:10 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:10.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:10 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:07:10.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:10 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:10.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:10 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:07:10.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:10 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:10.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:10 smithi076 ceph-mon[27582]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:10.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:10 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:10.382 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi076:vg_nvme/lv_4 2024-09-18T12:07:10.508 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 18 12:07:10 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-b[33036]: 2024-09-18T12:07:10.222+0000 7f87d817bec0 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-18T12:07:10.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:10 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:10.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:10 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:10.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:10 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:07:10.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:10 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:10.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:10 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:07:10.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:10 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:10.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:10 smithi160 ceph-mon[31705]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:10.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:10 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:10.621 INFO:teuthology.orchestra.run.smithi076.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T12:07:11.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:11 smithi076 ceph-mon[27582]: Standby manager daemon b started 2024-09-18T12:07:11.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:11 smithi076 ceph-mon[27582]: from='mgr.? 172.21.15.160:0/649191109' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-09-18T12:07:11.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:11 smithi076 ceph-mon[27582]: from='mgr.? 172.21.15.160:0/649191109' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-18T12:07:11.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:11 smithi076 ceph-mon[27582]: from='mgr.? 172.21.15.160:0/649191109' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-09-18T12:07:11.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:11 smithi076 ceph-mon[27582]: from='mgr.? 172.21.15.160:0/649191109' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-18T12:07:11.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:11 smithi169 ceph-mon[32172]: Standby manager daemon b started 2024-09-18T12:07:11.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:11 smithi169 ceph-mon[32172]: from='mgr.? 172.21.15.160:0/649191109' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-09-18T12:07:11.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:11 smithi169 ceph-mon[32172]: from='mgr.? 172.21.15.160:0/649191109' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-18T12:07:11.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:11 smithi169 ceph-mon[32172]: from='mgr.? 172.21.15.160:0/649191109' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-09-18T12:07:11.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:11 smithi169 ceph-mon[32172]: from='mgr.? 172.21.15.160:0/649191109' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-18T12:07:11.508 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:11 smithi160 ceph-mon[31705]: Standby manager daemon b started 2024-09-18T12:07:11.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:11 smithi160 ceph-mon[31705]: from='mgr.? 172.21.15.160:0/649191109' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-09-18T12:07:11.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:11 smithi160 ceph-mon[31705]: from='mgr.? 172.21.15.160:0/649191109' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-18T12:07:11.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:11 smithi160 ceph-mon[31705]: from='mgr.? 172.21.15.160:0/649191109' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-09-18T12:07:11.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:11 smithi160 ceph-mon[31705]: from='mgr.? 172.21.15.160:0/649191109' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-18T12:07:12.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:12 smithi076 ceph-mon[27582]: mgrmap e14: a(active, since 71s), standbys: b 2024-09-18T12:07:12.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:12 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-09-18T12:07:12.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:12 smithi076 ceph-mon[27582]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:12.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:12 smithi169 ceph-mon[32172]: mgrmap e14: a(active, since 71s), standbys: b 2024-09-18T12:07:12.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:12 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-09-18T12:07:12.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:12 smithi169 ceph-mon[32172]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:12.508 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:12 smithi160 ceph-mon[31705]: mgrmap e14: a(active, since 71s), standbys: b 2024-09-18T12:07:12.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:12 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-09-18T12:07:12.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:12 smithi160 ceph-mon[31705]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:13.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:13 smithi169 ceph-mon[32172]: from='client.14217 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi076:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:07:13.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:13 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-18T12:07:13.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:13 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-18T12:07:13.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:13 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:13.458 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:13 smithi076 ceph-mon[27582]: from='client.14217 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi076:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:07:13.458 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:13 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-18T12:07:13.458 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:13 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-18T12:07:13.459 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:13 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:13.508 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:13 smithi160 ceph-mon[31705]: from='client.14217 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi076:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:07:13.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:13 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-18T12:07:13.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:13 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-18T12:07:13.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:13 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:14.322 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:14 smithi076 ceph-mon[27582]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:14.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:14 smithi169 ceph-mon[32172]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:14.508 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:14 smithi160 ceph-mon[31705]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:15.208 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:15 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/4173346001' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "aa363960-56f8-403f-968d-66816b41d99e"}]: dispatch 2024-09-18T12:07:15.208 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:15 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/4173346001' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "aa363960-56f8-403f-968d-66816b41d99e"}]': finished 2024-09-18T12:07:15.208 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:15 smithi076 ceph-mon[27582]: osdmap e5: 1 total, 0 up, 1 in 2024-09-18T12:07:15.208 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:15 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-18T12:07:15.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:15 smithi169 ceph-mon[32172]: from='client.? 172.21.15.76:0/4173346001' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "aa363960-56f8-403f-968d-66816b41d99e"}]: dispatch 2024-09-18T12:07:15.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:15 smithi169 ceph-mon[32172]: from='client.? 172.21.15.76:0/4173346001' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "aa363960-56f8-403f-968d-66816b41d99e"}]': finished 2024-09-18T12:07:15.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:15 smithi169 ceph-mon[32172]: osdmap e5: 1 total, 0 up, 1 in 2024-09-18T12:07:15.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:15 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-18T12:07:15.508 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:15 smithi160 ceph-mon[31705]: from='client.? 172.21.15.76:0/4173346001' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "aa363960-56f8-403f-968d-66816b41d99e"}]: dispatch 2024-09-18T12:07:15.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:15 smithi160 ceph-mon[31705]: from='client.? 172.21.15.76:0/4173346001' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "aa363960-56f8-403f-968d-66816b41d99e"}]': finished 2024-09-18T12:07:15.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:15 smithi160 ceph-mon[31705]: osdmap e5: 1 total, 0 up, 1 in 2024-09-18T12:07:15.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:15 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-18T12:07:16.444 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:16 smithi169 ceph-mon[32172]: from='client.? 172.21.15.76:0/814904837' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-18T12:07:16.444 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:16 smithi169 ceph-mon[32172]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:16.508 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:16 smithi160 ceph-mon[31705]: from='client.? 172.21.15.76:0/814904837' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-18T12:07:16.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:16 smithi160 ceph-mon[31705]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:16.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:16 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/814904837' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-18T12:07:16.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:16 smithi076 ceph-mon[27582]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:18.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:18 smithi160 ceph-mon[31705]: pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:18.763 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:18 smithi076 ceph-mon[27582]: pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:18.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:18 smithi169 ceph-mon[32172]: pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:20.691 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:20 smithi169 ceph-mon[32172]: pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:20.750 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:20 smithi076 ceph-mon[27582]: pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:20.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:20 smithi160 ceph-mon[31705]: pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:21.758 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:21 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-18T12:07:21.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:21 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:21.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:21 smithi160 ceph-mon[31705]: Deploying daemon osd.0 on smithi076 2024-09-18T12:07:21.815 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:21 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-18T12:07:21.816 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:21 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:21.816 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:21 smithi076 ceph-mon[27582]: Deploying daemon osd.0 on smithi076 2024-09-18T12:07:21.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:21 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-18T12:07:21.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:21 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:21.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:21 smithi169 ceph-mon[32172]: Deploying daemon osd.0 on smithi076 2024-09-18T12:07:22.707 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:22 smithi076 ceph-mon[27582]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:22.758 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:22 smithi160 ceph-mon[31705]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:22.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:22 smithi169 ceph-mon[32172]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:24.758 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:24 smithi160 ceph-mon[31705]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:24.807 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:24 smithi076 ceph-mon[27582]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:24.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:24 smithi169 ceph-mon[32172]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:26.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:26 smithi076 ceph-mon[27582]: pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:26.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:26 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:07:26.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:26 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:26.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:26 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:26.758 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:26 smithi160 ceph-mon[31705]: pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:26.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:26 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:07:26.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:26 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:26.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:26 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:26.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:26 smithi169 ceph-mon[32172]: pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:26.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:26 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:07:26.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:26 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:26.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:26 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:29.020 INFO:teuthology.orchestra.run.smithi076.stdout:Created osd(s) 0 on host 'smithi076' 2024-09-18T12:07:29.258 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:28 smithi160 ceph-mon[31705]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:29.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:28 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:29.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:28 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:29.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:28 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:29.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:28 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:07:29.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:28 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:29.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:28 smithi160 ceph-mon[31705]: from='osd.0 [v2:172.21.15.76:6802/3299881952,v1:172.21.15.76:6803/3299881952]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-18T12:07:29.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:28 smithi076 ceph-mon[27582]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:29.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:28 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:29.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:28 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:29.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:28 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:29.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:28 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:07:29.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:28 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:29.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:28 smithi076 ceph-mon[27582]: from='osd.0 [v2:172.21.15.76:6802/3299881952,v1:172.21.15.76:6803/3299881952]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-18T12:07:29.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:28 smithi169 ceph-mon[32172]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:29.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:28 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:29.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:28 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:29.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:28 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:29.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:28 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:07:29.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:28 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:29.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:28 smithi169 ceph-mon[32172]: from='osd.0 [v2:172.21.15.76:6802/3299881952,v1:172.21.15.76:6803/3299881952]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-18T12:07:29.719 DEBUG:teuthology.orchestra.run.smithi076:osd.0> sudo journalctl -f -n 0 -u ceph-1afb0892-75b6-11ef-bceb-c7b262605968@osd.0.service 2024-09-18T12:07:29.722 INFO:tasks.cephadm:Deploying osd.1 on smithi076 with /dev/vg_nvme/lv_3... 2024-09-18T12:07:29.722 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-09-18T12:07:30.258 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:29 smithi160 ceph-mon[31705]: from='osd.0 [v2:172.21.15.76:6802/3299881952,v1:172.21.15.76:6803/3299881952]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-18T12:07:30.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:29 smithi160 ceph-mon[31705]: osdmap e6: 1 total, 0 up, 1 in 2024-09-18T12:07:30.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:29 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-18T12:07:30.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:29 smithi160 ceph-mon[31705]: from='osd.0 [v2:172.21.15.76:6802/3299881952,v1:172.21.15.76:6803/3299881952]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi076", "root=default"]}]: dispatch 2024-09-18T12:07:30.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:29 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:07:30.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:29 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:30.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:29 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:30.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:29 smithi076 ceph-mon[27582]: from='osd.0 [v2:172.21.15.76:6802/3299881952,v1:172.21.15.76:6803/3299881952]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-18T12:07:30.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:29 smithi076 ceph-mon[27582]: osdmap e6: 1 total, 0 up, 1 in 2024-09-18T12:07:30.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:29 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-18T12:07:30.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:29 smithi076 ceph-mon[27582]: from='osd.0 [v2:172.21.15.76:6802/3299881952,v1:172.21.15.76:6803/3299881952]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi076", "root=default"]}]: dispatch 2024-09-18T12:07:30.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:29 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:07:30.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:29 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:30.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:29 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:30.323 INFO:journalctl@ceph.osd.0.smithi076.stdout:Sep 18 12:07:29 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-0[39209]: 2024-09-18T12:07:29.974+0000 7fa482b8a640 -1 osd.0 0 waiting for initial osdmap 2024-09-18T12:07:30.324 INFO:journalctl@ceph.osd.0.smithi076.stdout:Sep 18 12:07:29 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-0[39209]: 2024-09-18T12:07:29.977+0000 7fa47f9c5640 -1 osd.0 7 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-18T12:07:30.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:29 smithi169 ceph-mon[32172]: from='osd.0 [v2:172.21.15.76:6802/3299881952,v1:172.21.15.76:6803/3299881952]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-18T12:07:30.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:29 smithi169 ceph-mon[32172]: osdmap e6: 1 total, 0 up, 1 in 2024-09-18T12:07:30.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:29 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-18T12:07:30.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:29 smithi169 ceph-mon[32172]: from='osd.0 [v2:172.21.15.76:6802/3299881952,v1:172.21.15.76:6803/3299881952]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi076", "root=default"]}]: dispatch 2024-09-18T12:07:30.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:29 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:07:30.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:29 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:30.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:29 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:30.454 INFO:teuthology.orchestra.run.smithi076.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T12:07:31.044 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:30 smithi076 ceph-mon[27582]: pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:31.045 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:30 smithi076 ceph-mon[27582]: from='osd.0 [v2:172.21.15.76:6802/3299881952,v1:172.21.15.76:6803/3299881952]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi076", "root=default"]}]': finished 2024-09-18T12:07:31.045 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:30 smithi076 ceph-mon[27582]: osdmap e7: 1 total, 0 up, 1 in 2024-09-18T12:07:31.045 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:30 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-18T12:07:31.045 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:30 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-18T12:07:31.045 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:30 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-18T12:07:31.258 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:30 smithi160 ceph-mon[31705]: pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:31.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:30 smithi160 ceph-mon[31705]: from='osd.0 [v2:172.21.15.76:6802/3299881952,v1:172.21.15.76:6803/3299881952]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi076", "root=default"]}]': finished 2024-09-18T12:07:31.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:30 smithi160 ceph-mon[31705]: osdmap e7: 1 total, 0 up, 1 in 2024-09-18T12:07:31.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:30 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-18T12:07:31.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:30 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-18T12:07:31.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:30 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-18T12:07:31.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:30 smithi169 ceph-mon[32172]: pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:31.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:30 smithi169 ceph-mon[32172]: from='osd.0 [v2:172.21.15.76:6802/3299881952,v1:172.21.15.76:6803/3299881952]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi076", "root=default"]}]': finished 2024-09-18T12:07:31.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:30 smithi169 ceph-mon[32172]: osdmap e7: 1 total, 0 up, 1 in 2024-09-18T12:07:31.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:30 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-18T12:07:31.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:30 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-18T12:07:31.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:30 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-18T12:07:32.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:31 smithi076 ceph-mon[27582]: purged_snaps scrub starts 2024-09-18T12:07:32.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:31 smithi076 ceph-mon[27582]: purged_snaps scrub ok 2024-09-18T12:07:32.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:31 smithi076 ceph-mon[27582]: osd.0 [v2:172.21.15.76:6802/3299881952,v1:172.21.15.76:6803/3299881952] boot 2024-09-18T12:07:32.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:31 smithi076 ceph-mon[27582]: osdmap e8: 1 total, 1 up, 1 in 2024-09-18T12:07:32.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:31 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-18T12:07:32.258 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:31 smithi160 ceph-mon[31705]: purged_snaps scrub starts 2024-09-18T12:07:32.258 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:31 smithi160 ceph-mon[31705]: purged_snaps scrub ok 2024-09-18T12:07:32.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:31 smithi160 ceph-mon[31705]: osd.0 [v2:172.21.15.76:6802/3299881952,v1:172.21.15.76:6803/3299881952] boot 2024-09-18T12:07:32.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:31 smithi160 ceph-mon[31705]: osdmap e8: 1 total, 1 up, 1 in 2024-09-18T12:07:32.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:31 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-18T12:07:32.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:31 smithi169 ceph-mon[32172]: purged_snaps scrub starts 2024-09-18T12:07:32.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:31 smithi169 ceph-mon[32172]: purged_snaps scrub ok 2024-09-18T12:07:32.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:31 smithi169 ceph-mon[32172]: osd.0 [v2:172.21.15.76:6802/3299881952,v1:172.21.15.76:6803/3299881952] boot 2024-09-18T12:07:32.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:31 smithi169 ceph-mon[32172]: osdmap e8: 1 total, 1 up, 1 in 2024-09-18T12:07:32.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:31 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-18T12:07:33.258 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:32 smithi160 ceph-mon[31705]: pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:33.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:32 smithi160 ceph-mon[31705]: osdmap e9: 1 total, 1 up, 1 in 2024-09-18T12:07:33.322 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:32 smithi076 ceph-mon[27582]: pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:33.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:32 smithi076 ceph-mon[27582]: osdmap e9: 1 total, 1 up, 1 in 2024-09-18T12:07:33.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:32 smithi169 ceph-mon[32172]: pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T12:07:33.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:32 smithi169 ceph-mon[32172]: osdmap e9: 1 total, 1 up, 1 in 2024-09-18T12:07:33.681 INFO:teuthology.orchestra.run.smithi076.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-09-18T12:07:33.769 INFO:teuthology.orchestra.run.smithi076.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-09-18T12:07:33.782 INFO:teuthology.orchestra.run.smithi076.stderr: stderr: 10+0 records in 2024-09-18T12:07:33.782 INFO:teuthology.orchestra.run.smithi076.stderr:10+0 records out 2024-09-18T12:07:33.782 INFO:teuthology.orchestra.run.smithi076.stderr:10485760 bytes (10 MB, 10 MiB) copied, 0.0113836 s, 921 MB/s 2024-09-18T12:07:33.782 INFO:teuthology.orchestra.run.smithi076.stderr: stderr: 2024-09-18T12:07:33.783 INFO:teuthology.orchestra.run.smithi076.stderr:--> Zapping successful for: 2024-09-18T12:07:34.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:34 smithi076 ceph-mon[27582]: Detected new or changed devices on smithi076 2024-09-18T12:07:34.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:34 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:34.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:34 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:34.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:34 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-18T12:07:34.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:34 smithi076 ceph-mon[27582]: Adjusting osd_memory_target on smithi076 to 17088M 2024-09-18T12:07:34.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:34 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:34.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:34 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:34.324 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:34 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:07:34.324 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:34 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:34.324 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:34 smithi076 ceph-mon[27582]: pgmap v46: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:34.434 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi076:vg_nvme/lv_3 2024-09-18T12:07:34.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:34 smithi169 ceph-mon[32172]: Detected new or changed devices on smithi076 2024-09-18T12:07:34.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:34 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:34.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:34 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:34.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:34 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-18T12:07:34.442 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:34 smithi169 ceph-mon[32172]: Adjusting osd_memory_target on smithi076 to 17088M 2024-09-18T12:07:34.442 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:34 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:34.442 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:34 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:34.442 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:34 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:07:34.442 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:34 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:34.442 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:34 smithi169 ceph-mon[32172]: pgmap v46: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:34.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:34 smithi160 ceph-mon[31705]: Detected new or changed devices on smithi076 2024-09-18T12:07:34.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:34 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:34.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:34 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:34.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:34 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-18T12:07:34.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:34 smithi160 ceph-mon[31705]: Adjusting osd_memory_target on smithi076 to 17088M 2024-09-18T12:07:34.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:34 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:34.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:34 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:34.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:34 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:07:34.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:34 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:34.510 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:34 smithi160 ceph-mon[31705]: pgmap v46: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:34.676 INFO:teuthology.orchestra.run.smithi076.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T12:07:36.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:36 smithi160 ceph-mon[31705]: pgmap v47: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:36.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:36 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-18T12:07:36.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:36 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-18T12:07:36.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:36 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:36.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:36 smithi076 ceph-mon[27582]: pgmap v47: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:36.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:36 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-18T12:07:36.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:36 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-18T12:07:36.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:36 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:36.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:36 smithi169 ceph-mon[32172]: pgmap v47: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:36.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:36 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-18T12:07:36.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:36 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-18T12:07:36.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:36 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:37.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:37 smithi160 ceph-mon[31705]: from='client.14244 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi076:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:07:37.769 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:37 smithi076 ceph-mon[27582]: from='client.14244 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi076:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:07:37.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:37 smithi169 ceph-mon[32172]: from='client.14244 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi076:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:07:38.758 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:38 smithi160 ceph-mon[31705]: pgmap v48: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:38.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:38 smithi076 ceph-mon[27582]: pgmap v48: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:38.842 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:38 smithi169 ceph-mon[32172]: pgmap v48: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:39.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:39 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/3603317998' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "873d4a25-ebbc-4311-b0b1-af00bcc62961"}]: dispatch 2024-09-18T12:07:39.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:39 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/3603317998' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "873d4a25-ebbc-4311-b0b1-af00bcc62961"}]': finished 2024-09-18T12:07:39.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:39 smithi076 ceph-mon[27582]: osdmap e10: 2 total, 1 up, 2 in 2024-09-18T12:07:39.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:39 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-18T12:07:39.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:39 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/1579374602' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-18T12:07:39.758 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:39 smithi160 ceph-mon[31705]: from='client.? 172.21.15.76:0/3603317998' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "873d4a25-ebbc-4311-b0b1-af00bcc62961"}]: dispatch 2024-09-18T12:07:39.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:39 smithi160 ceph-mon[31705]: from='client.? 172.21.15.76:0/3603317998' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "873d4a25-ebbc-4311-b0b1-af00bcc62961"}]': finished 2024-09-18T12:07:39.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:39 smithi160 ceph-mon[31705]: osdmap e10: 2 total, 1 up, 2 in 2024-09-18T12:07:39.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:39 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-18T12:07:39.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:39 smithi160 ceph-mon[31705]: from='client.? 172.21.15.76:0/1579374602' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-18T12:07:39.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:39 smithi169 ceph-mon[32172]: from='client.? 172.21.15.76:0/3603317998' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "873d4a25-ebbc-4311-b0b1-af00bcc62961"}]: dispatch 2024-09-18T12:07:39.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:39 smithi169 ceph-mon[32172]: from='client.? 172.21.15.76:0/3603317998' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "873d4a25-ebbc-4311-b0b1-af00bcc62961"}]': finished 2024-09-18T12:07:39.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:39 smithi169 ceph-mon[32172]: osdmap e10: 2 total, 1 up, 2 in 2024-09-18T12:07:39.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:39 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-18T12:07:39.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:39 smithi169 ceph-mon[32172]: from='client.? 172.21.15.76:0/1579374602' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-18T12:07:41.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:40 smithi160 ceph-mon[31705]: pgmap v50: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:41.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:40 smithi076 ceph-mon[27582]: pgmap v50: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:41.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:40 smithi169 ceph-mon[32172]: pgmap v50: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:43.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:42 smithi160 ceph-mon[31705]: pgmap v51: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:43.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:42 smithi076 ceph-mon[27582]: pgmap v51: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:43.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:42 smithi169 ceph-mon[32172]: pgmap v51: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:44.822 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:44 smithi076 ceph-mon[27582]: pgmap v52: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:45.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:44 smithi160 ceph-mon[31705]: pgmap v52: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:45.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:44 smithi169 ceph-mon[32172]: pgmap v52: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:45.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:45 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-18T12:07:45.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:45 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:45.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:45 smithi076 ceph-mon[27582]: Deploying daemon osd.1 on smithi076 2024-09-18T12:07:46.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:45 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-18T12:07:46.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:45 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:46.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:45 smithi160 ceph-mon[31705]: Deploying daemon osd.1 on smithi076 2024-09-18T12:07:46.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:45 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-18T12:07:46.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:45 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:46.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:45 smithi169 ceph-mon[32172]: Deploying daemon osd.1 on smithi076 2024-09-18T12:07:47.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:46 smithi160 ceph-mon[31705]: pgmap v53: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:47.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:46 smithi076 ceph-mon[27582]: pgmap v53: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:47.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:46 smithi169 ceph-mon[32172]: pgmap v53: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:49.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:48 smithi160 ceph-mon[31705]: pgmap v54: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:49.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:48 smithi076 ceph-mon[27582]: pgmap v54: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:49.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:48 smithi169 ceph-mon[32172]: pgmap v54: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:49.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:49 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:07:49.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:49 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:49.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:49 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:50.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:49 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:07:50.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:49 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:50.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:49 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:50.258 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:49 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:07:50.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:49 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:50.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:49 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:51.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:50 smithi076 ceph-mon[27582]: pgmap v55: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:51.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:50 smithi169 ceph-mon[32172]: pgmap v55: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:51.258 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:50 smithi160 ceph-mon[31705]: pgmap v55: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:53.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:52 smithi076 ceph-mon[27582]: pgmap v56: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:53.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:52 smithi169 ceph-mon[32172]: pgmap v56: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:53.200 INFO:teuthology.orchestra.run.smithi076.stdout:Created osd(s) 1 on host 'smithi076' 2024-09-18T12:07:53.258 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:52 smithi160 ceph-mon[31705]: pgmap v56: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:53.813 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:53 smithi076 ceph-mon[27582]: from='osd.1 [v2:172.21.15.76:6810/4068564351,v1:172.21.15.76:6811/4068564351]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-18T12:07:53.814 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:53 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:53.814 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:53 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:53.814 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:53 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:53.814 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:53 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:53.838 DEBUG:teuthology.orchestra.run.smithi076:osd.1> sudo journalctl -f -n 0 -u ceph-1afb0892-75b6-11ef-bceb-c7b262605968@osd.1.service 2024-09-18T12:07:53.840 INFO:tasks.cephadm:Deploying osd.2 on smithi160 with /dev/vg_nvme/lv_4... 2024-09-18T12:07:53.841 DEBUG:teuthology.orchestra.run.smithi160:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-09-18T12:07:54.108 INFO:teuthology.orchestra.run.smithi160.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.b/config 2024-09-18T12:07:54.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:53 smithi169 ceph-mon[32172]: from='osd.1 [v2:172.21.15.76:6810/4068564351,v1:172.21.15.76:6811/4068564351]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-18T12:07:54.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:53 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:54.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:53 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:54.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:53 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:54.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:53 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:54.229 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:53 smithi160 ceph-mon[31705]: from='osd.1 [v2:172.21.15.76:6810/4068564351,v1:172.21.15.76:6811/4068564351]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-18T12:07:54.229 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:53 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:54.229 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:53 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:54.230 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:53 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:54.230 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:53 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:54.994 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:54 smithi076 ceph-mon[27582]: pgmap v57: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:54.994 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:54 smithi076 ceph-mon[27582]: from='osd.1 [v2:172.21.15.76:6810/4068564351,v1:172.21.15.76:6811/4068564351]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-18T12:07:54.994 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:54 smithi076 ceph-mon[27582]: osdmap e11: 2 total, 1 up, 2 in 2024-09-18T12:07:54.994 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:54 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-18T12:07:54.994 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:54 smithi076 ceph-mon[27582]: from='osd.1 [v2:172.21.15.76:6810/4068564351,v1:172.21.15.76:6811/4068564351]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi076", "root=default"]}]: dispatch 2024-09-18T12:07:54.995 INFO:journalctl@ceph.osd.1.smithi076.stdout:Sep 18 12:07:54 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-1[44769]: 2024-09-18T12:07:54.772+0000 7fd959f1b640 -1 osd.1 0 waiting for initial osdmap 2024-09-18T12:07:54.995 INFO:journalctl@ceph.osd.1.smithi076.stdout:Sep 18 12:07:54 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-1[44769]: 2024-09-18T12:07:54.775+0000 7fd952d4e640 -1 osd.1 12 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-18T12:07:55.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:54 smithi160 ceph-mon[31705]: pgmap v57: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:55.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:54 smithi160 ceph-mon[31705]: from='osd.1 [v2:172.21.15.76:6810/4068564351,v1:172.21.15.76:6811/4068564351]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-18T12:07:55.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:54 smithi160 ceph-mon[31705]: osdmap e11: 2 total, 1 up, 2 in 2024-09-18T12:07:55.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:54 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-18T12:07:55.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:54 smithi160 ceph-mon[31705]: from='osd.1 [v2:172.21.15.76:6810/4068564351,v1:172.21.15.76:6811/4068564351]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi076", "root=default"]}]: dispatch 2024-09-18T12:07:55.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:54 smithi169 ceph-mon[32172]: pgmap v57: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:55.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:54 smithi169 ceph-mon[32172]: from='osd.1 [v2:172.21.15.76:6810/4068564351,v1:172.21.15.76:6811/4068564351]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-18T12:07:55.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:54 smithi169 ceph-mon[32172]: osdmap e11: 2 total, 1 up, 2 in 2024-09-18T12:07:55.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:54 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-18T12:07:55.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:54 smithi169 ceph-mon[32172]: from='osd.1 [v2:172.21.15.76:6810/4068564351,v1:172.21.15.76:6811/4068564351]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi076", "root=default"]}]: dispatch 2024-09-18T12:07:55.646 INFO:teuthology.orchestra.run.smithi160.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-09-18T12:07:55.728 INFO:teuthology.orchestra.run.smithi160.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-09-18T12:07:55.741 INFO:teuthology.orchestra.run.smithi160.stderr: stderr: 10+0 records in 2024-09-18T12:07:55.741 INFO:teuthology.orchestra.run.smithi160.stderr:10+0 records out 2024-09-18T12:07:55.741 INFO:teuthology.orchestra.run.smithi160.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0113881 s, 921 MB/s 2024-09-18T12:07:55.741 INFO:teuthology.orchestra.run.smithi160.stderr:--> Zapping successful for: 2024-09-18T12:07:56.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:55 smithi160 ceph-mon[31705]: purged_snaps scrub starts 2024-09-18T12:07:56.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:55 smithi160 ceph-mon[31705]: purged_snaps scrub ok 2024-09-18T12:07:56.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:55 smithi160 ceph-mon[31705]: from='osd.1 [v2:172.21.15.76:6810/4068564351,v1:172.21.15.76:6811/4068564351]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi076", "root=default"]}]': finished 2024-09-18T12:07:56.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:55 smithi160 ceph-mon[31705]: osdmap e12: 2 total, 1 up, 2 in 2024-09-18T12:07:56.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:55 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-18T12:07:56.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:55 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-18T12:07:56.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:55 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-18T12:07:56.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:55 smithi076 ceph-mon[27582]: purged_snaps scrub starts 2024-09-18T12:07:56.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:55 smithi076 ceph-mon[27582]: purged_snaps scrub ok 2024-09-18T12:07:56.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:55 smithi076 ceph-mon[27582]: from='osd.1 [v2:172.21.15.76:6810/4068564351,v1:172.21.15.76:6811/4068564351]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi076", "root=default"]}]': finished 2024-09-18T12:07:56.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:55 smithi076 ceph-mon[27582]: osdmap e12: 2 total, 1 up, 2 in 2024-09-18T12:07:56.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:55 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-18T12:07:56.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:55 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-18T12:07:56.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:55 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-18T12:07:56.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:55 smithi169 ceph-mon[32172]: purged_snaps scrub starts 2024-09-18T12:07:56.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:55 smithi169 ceph-mon[32172]: purged_snaps scrub ok 2024-09-18T12:07:56.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:55 smithi169 ceph-mon[32172]: from='osd.1 [v2:172.21.15.76:6810/4068564351,v1:172.21.15.76:6811/4068564351]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi076", "root=default"]}]': finished 2024-09-18T12:07:56.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:55 smithi169 ceph-mon[32172]: osdmap e12: 2 total, 1 up, 2 in 2024-09-18T12:07:56.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:55 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-18T12:07:56.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:55 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-18T12:07:56.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:55 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-18T12:07:56.261 DEBUG:teuthology.orchestra.run.smithi160:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi160:vg_nvme/lv_4 2024-09-18T12:07:56.509 INFO:teuthology.orchestra.run.smithi160.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.b/config 2024-09-18T12:07:56.872 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:56 smithi160 ceph-mon[31705]: pgmap v60: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:56.872 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:56 smithi160 ceph-mon[31705]: osd.1 [v2:172.21.15.76:6810/4068564351,v1:172.21.15.76:6811/4068564351] boot 2024-09-18T12:07:56.872 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:56 smithi160 ceph-mon[31705]: osdmap e13: 2 total, 2 up, 2 in 2024-09-18T12:07:56.872 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:56 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-18T12:07:56.872 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:56 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:56.872 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:56 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:56.872 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:56 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-18T12:07:56.872 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:56 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-18T12:07:56.872 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:56 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:56.872 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:56 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:56.872 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:56 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:07:56.873 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:56 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:56.873 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:56 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:07:56.873 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:56 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:56.873 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:56 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:07:56.873 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:56 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:57.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:56 smithi076 ceph-mon[27582]: pgmap v60: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:57.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:56 smithi076 ceph-mon[27582]: osd.1 [v2:172.21.15.76:6810/4068564351,v1:172.21.15.76:6811/4068564351] boot 2024-09-18T12:07:57.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:56 smithi076 ceph-mon[27582]: osdmap e13: 2 total, 2 up, 2 in 2024-09-18T12:07:57.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:56 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-18T12:07:57.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:56 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:57.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:56 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:57.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:56 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-18T12:07:57.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:56 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-18T12:07:57.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:56 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:57.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:56 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:57.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:56 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:07:57.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:56 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:57.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:56 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:07:57.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:56 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:57.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:56 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:07:57.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:56 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:57.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:56 smithi169 ceph-mon[32172]: pgmap v60: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-18T12:07:57.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:56 smithi169 ceph-mon[32172]: osd.1 [v2:172.21.15.76:6810/4068564351,v1:172.21.15.76:6811/4068564351] boot 2024-09-18T12:07:57.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:56 smithi169 ceph-mon[32172]: osdmap e13: 2 total, 2 up, 2 in 2024-09-18T12:07:57.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:56 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-18T12:07:57.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:56 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:57.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:56 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:57.192 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:56 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-18T12:07:57.192 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:56 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-18T12:07:57.192 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:56 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:57.192 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:56 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:57.192 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:56 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:07:57.192 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:56 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:57.192 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:56 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:07:57.192 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:56 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:57.192 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:56 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:07:57.192 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:56 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:07:58.067 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:57 smithi076 ceph-mon[27582]: Detected new or changed devices on smithi076 2024-09-18T12:07:58.068 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:57 smithi076 ceph-mon[27582]: Adjusting osd_memory_target on smithi076 to 8544M 2024-09-18T12:07:58.068 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:57 smithi076 ceph-mon[27582]: osdmap e14: 2 total, 2 up, 2 in 2024-09-18T12:07:58.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:57 smithi169 ceph-mon[32172]: Detected new or changed devices on smithi076 2024-09-18T12:07:58.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:57 smithi169 ceph-mon[32172]: Adjusting osd_memory_target on smithi076 to 8544M 2024-09-18T12:07:58.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:57 smithi169 ceph-mon[32172]: osdmap e14: 2 total, 2 up, 2 in 2024-09-18T12:07:58.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:57 smithi160 ceph-mon[31705]: Detected new or changed devices on smithi076 2024-09-18T12:07:58.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:57 smithi160 ceph-mon[31705]: Adjusting osd_memory_target on smithi076 to 8544M 2024-09-18T12:07:58.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:57 smithi160 ceph-mon[31705]: osdmap e14: 2 total, 2 up, 2 in 2024-09-18T12:07:58.813 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:58 smithi160 ceph-mon[31705]: pgmap v62: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-18T12:07:58.813 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:58 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-18T12:07:58.813 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:58 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-18T12:07:58.813 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:58 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:59.047 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:58 smithi076 ceph-mon[27582]: pgmap v62: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-18T12:07:59.047 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:58 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-18T12:07:59.047 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:58 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-18T12:07:59.047 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:58 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:07:59.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:58 smithi169 ceph-mon[32172]: pgmap v62: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-18T12:07:59.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:58 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-18T12:07:59.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:58 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-18T12:07:59.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:58 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:08:00.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:07:59 smithi160 ceph-mon[31705]: from='client.24143 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi160:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:08:00.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:07:59 smithi076 ceph-mon[27582]: from='client.24143 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi160:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:08:00.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:07:59 smithi169 ceph-mon[32172]: from='client.24143 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi160:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:08:00.878 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:00 smithi160 ceph-mon[31705]: pgmap v64: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-18T12:08:00.879 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:00 smithi160 ceph-mon[31705]: from='client.? 172.21.15.160:0/1293870475' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "525541e5-0b7a-4297-92ce-cf2ff7aafbdf"}]: dispatch 2024-09-18T12:08:00.879 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:00 smithi160 ceph-mon[31705]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "525541e5-0b7a-4297-92ce-cf2ff7aafbdf"}]: dispatch 2024-09-18T12:08:00.879 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:00 smithi160 ceph-mon[31705]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "525541e5-0b7a-4297-92ce-cf2ff7aafbdf"}]': finished 2024-09-18T12:08:00.879 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:00 smithi160 ceph-mon[31705]: osdmap e15: 3 total, 2 up, 3 in 2024-09-18T12:08:00.879 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:00 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-18T12:08:01.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:00 smithi076 ceph-mon[27582]: pgmap v64: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-18T12:08:01.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:00 smithi076 ceph-mon[27582]: from='client.? 172.21.15.160:0/1293870475' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "525541e5-0b7a-4297-92ce-cf2ff7aafbdf"}]: dispatch 2024-09-18T12:08:01.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:00 smithi076 ceph-mon[27582]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "525541e5-0b7a-4297-92ce-cf2ff7aafbdf"}]: dispatch 2024-09-18T12:08:01.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:00 smithi076 ceph-mon[27582]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "525541e5-0b7a-4297-92ce-cf2ff7aafbdf"}]': finished 2024-09-18T12:08:01.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:00 smithi076 ceph-mon[27582]: osdmap e15: 3 total, 2 up, 3 in 2024-09-18T12:08:01.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:00 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-18T12:08:01.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:00 smithi169 ceph-mon[32172]: pgmap v64: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-18T12:08:01.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:00 smithi169 ceph-mon[32172]: from='client.? 172.21.15.160:0/1293870475' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "525541e5-0b7a-4297-92ce-cf2ff7aafbdf"}]: dispatch 2024-09-18T12:08:01.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:00 smithi169 ceph-mon[32172]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "525541e5-0b7a-4297-92ce-cf2ff7aafbdf"}]: dispatch 2024-09-18T12:08:01.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:00 smithi169 ceph-mon[32172]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "525541e5-0b7a-4297-92ce-cf2ff7aafbdf"}]': finished 2024-09-18T12:08:01.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:00 smithi169 ceph-mon[32172]: osdmap e15: 3 total, 2 up, 3 in 2024-09-18T12:08:01.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:00 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-18T12:08:02.072 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:01 smithi076 ceph-mon[27582]: from='client.? 172.21.15.160:0/1643378348' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-18T12:08:02.192 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:01 smithi169 ceph-mon[32172]: from='client.? 172.21.15.160:0/1643378348' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-18T12:08:02.258 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:01 smithi160 ceph-mon[31705]: from='client.? 172.21.15.160:0/1643378348' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-18T12:08:03.056 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:02 smithi160 ceph-mon[31705]: pgmap v66: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-18T12:08:03.072 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:02 smithi076 ceph-mon[27582]: pgmap v66: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-18T12:08:03.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:02 smithi169 ceph-mon[32172]: pgmap v66: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-18T12:08:04.903 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:04 smithi160 ceph-mon[31705]: pgmap v67: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-18T12:08:05.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:04 smithi076 ceph-mon[27582]: pgmap v67: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-18T12:08:05.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:04 smithi169 ceph-mon[32172]: pgmap v67: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-18T12:08:07.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:06 smithi076 ceph-mon[27582]: pgmap v68: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-18T12:08:07.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:06 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-18T12:08:07.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:06 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:08:07.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:06 smithi169 ceph-mon[32172]: pgmap v68: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-18T12:08:07.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:06 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-18T12:08:07.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:06 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:08:07.257 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:06 smithi160 ceph-mon[31705]: pgmap v68: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-18T12:08:07.257 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:06 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-18T12:08:07.257 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:06 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:08:08.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:07 smithi160 ceph-mon[31705]: Deploying daemon osd.2 on smithi160 2024-09-18T12:08:08.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:07 smithi076 ceph-mon[27582]: Deploying daemon osd.2 on smithi160 2024-09-18T12:08:08.092 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:07 smithi169 ceph-mon[32172]: Deploying daemon osd.2 on smithi160 2024-09-18T12:08:09.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:08 smithi160 ceph-mon[31705]: pgmap v69: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-18T12:08:09.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:08 smithi076 ceph-mon[27582]: pgmap v69: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-18T12:08:09.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:08 smithi169 ceph-mon[32172]: pgmap v69: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-18T12:08:11.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:10 smithi076 ceph-mon[27582]: pgmap v70: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-18T12:08:11.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:10 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:08:11.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:10 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:11.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:10 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:11.120 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:10 smithi160 ceph-mon[31705]: pgmap v70: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-18T12:08:11.121 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:10 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:08:11.121 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:10 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:11.121 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:10 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:11.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:10 smithi169 ceph-mon[32172]: pgmap v70: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-18T12:08:11.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:10 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:08:11.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:10 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:11.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:10 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:13.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:12 smithi076 ceph-mon[27582]: pgmap v71: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-18T12:08:13.103 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:12 smithi160 ceph-mon[31705]: pgmap v71: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-18T12:08:13.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:12 smithi169 ceph-mon[32172]: pgmap v71: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-18T12:08:13.414 INFO:teuthology.orchestra.run.smithi160.stdout:Created osd(s) 2 on host 'smithi160' 2024-09-18T12:08:13.990 DEBUG:teuthology.orchestra.run.smithi160:osd.2> sudo journalctl -f -n 0 -u ceph-1afb0892-75b6-11ef-bceb-c7b262605968@osd.2.service 2024-09-18T12:08:13.992 INFO:tasks.cephadm:Deploying osd.3 on smithi160 with /dev/vg_nvme/lv_3... 2024-09-18T12:08:13.992 DEBUG:teuthology.orchestra.run.smithi160:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-09-18T12:08:14.283 INFO:teuthology.orchestra.run.smithi160.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.b/config 2024-09-18T12:08:14.691 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:14 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:14.691 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:14 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:14.691 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:14 smithi169 ceph-mon[32172]: pgmap v72: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-18T12:08:14.691 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:14 smithi169 ceph-mon[32172]: from='osd.2 [v2:172.21.15.160:6800/3028159819,v1:172.21.15.160:6801/3028159819]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-18T12:08:14.692 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:14 smithi169 ceph-mon[32172]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-18T12:08:14.692 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:14 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:14.692 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:14 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:14.701 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:14 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:14.701 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:14 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:14.701 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:14 smithi160 ceph-mon[31705]: pgmap v72: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-18T12:08:14.702 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:14 smithi160 ceph-mon[31705]: from='osd.2 [v2:172.21.15.160:6800/3028159819,v1:172.21.15.160:6801/3028159819]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-18T12:08:14.702 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:14 smithi160 ceph-mon[31705]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-18T12:08:14.702 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:14 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:14.702 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:14 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:14.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:14 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:14.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:14 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:14.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:14 smithi076 ceph-mon[27582]: pgmap v72: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-18T12:08:14.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:14 smithi076 ceph-mon[27582]: from='osd.2 [v2:172.21.15.160:6800/3028159819,v1:172.21.15.160:6801/3028159819]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-18T12:08:14.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:14 smithi076 ceph-mon[27582]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-18T12:08:14.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:14 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:14.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:14 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:15.691 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:15 smithi169 ceph-mon[32172]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-18T12:08:15.691 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:15 smithi169 ceph-mon[32172]: osdmap e16: 3 total, 2 up, 3 in 2024-09-18T12:08:15.691 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:15 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-18T12:08:15.691 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:15 smithi169 ceph-mon[32172]: from='osd.2 [v2:172.21.15.160:6800/3028159819,v1:172.21.15.160:6801/3028159819]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-09-18T12:08:15.691 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:15 smithi169 ceph-mon[32172]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-09-18T12:08:15.701 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:15 smithi160 ceph-mon[31705]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-18T12:08:15.701 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:15 smithi160 ceph-mon[31705]: osdmap e16: 3 total, 2 up, 3 in 2024-09-18T12:08:15.701 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:15 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-18T12:08:15.701 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:15 smithi160 ceph-mon[31705]: from='osd.2 [v2:172.21.15.160:6800/3028159819,v1:172.21.15.160:6801/3028159819]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-09-18T12:08:15.701 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:15 smithi160 ceph-mon[31705]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-09-18T12:08:15.702 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 18 12:08:15 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-2[35894]: 2024-09-18T12:08:15.427+0000 7f2820fe4640 -1 osd.2 0 waiting for initial osdmap 2024-09-18T12:08:15.702 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 18 12:08:15 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-2[35894]: 2024-09-18T12:08:15.430+0000 7f281be1b640 -1 osd.2 17 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-18T12:08:15.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:15 smithi076 ceph-mon[27582]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-18T12:08:15.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:15 smithi076 ceph-mon[27582]: osdmap e16: 3 total, 2 up, 3 in 2024-09-18T12:08:15.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:15 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-18T12:08:15.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:15 smithi076 ceph-mon[27582]: from='osd.2 [v2:172.21.15.160:6800/3028159819,v1:172.21.15.160:6801/3028159819]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-09-18T12:08:15.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:15 smithi076 ceph-mon[27582]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-09-18T12:08:16.508 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:16 smithi160 ceph-mon[31705]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]': finished 2024-09-18T12:08:16.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:16 smithi160 ceph-mon[31705]: osdmap e17: 3 total, 2 up, 3 in 2024-09-18T12:08:16.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:16 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-18T12:08:16.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:16 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-18T12:08:16.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:16 smithi160 ceph-mon[31705]: pgmap v75: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-18T12:08:16.691 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:16 smithi169 ceph-mon[32172]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]': finished 2024-09-18T12:08:16.691 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:16 smithi169 ceph-mon[32172]: osdmap e17: 3 total, 2 up, 3 in 2024-09-18T12:08:16.691 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:16 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-18T12:08:16.691 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:16 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-18T12:08:16.691 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:16 smithi169 ceph-mon[32172]: pgmap v75: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-18T12:08:16.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:16 smithi076 ceph-mon[27582]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]': finished 2024-09-18T12:08:16.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:16 smithi076 ceph-mon[27582]: osdmap e17: 3 total, 2 up, 3 in 2024-09-18T12:08:16.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:16 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-18T12:08:16.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:16 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-18T12:08:16.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:16 smithi076 ceph-mon[27582]: pgmap v75: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-18T12:08:17.691 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:17 smithi169 ceph-mon[32172]: purged_snaps scrub starts 2024-09-18T12:08:17.691 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:17 smithi169 ceph-mon[32172]: purged_snaps scrub ok 2024-09-18T12:08:17.692 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:17 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-18T12:08:17.692 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:17 smithi169 ceph-mon[32172]: osd.2 [v2:172.21.15.160:6800/3028159819,v1:172.21.15.160:6801/3028159819] boot 2024-09-18T12:08:17.692 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:17 smithi169 ceph-mon[32172]: osdmap e18: 3 total, 3 up, 3 in 2024-09-18T12:08:17.692 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:17 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-18T12:08:17.714 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:17 smithi160 ceph-mon[31705]: purged_snaps scrub starts 2024-09-18T12:08:17.714 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:17 smithi160 ceph-mon[31705]: purged_snaps scrub ok 2024-09-18T12:08:17.714 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:17 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-18T12:08:17.715 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:17 smithi160 ceph-mon[31705]: osd.2 [v2:172.21.15.160:6800/3028159819,v1:172.21.15.160:6801/3028159819] boot 2024-09-18T12:08:17.715 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:17 smithi160 ceph-mon[31705]: osdmap e18: 3 total, 3 up, 3 in 2024-09-18T12:08:17.715 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:17 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-18T12:08:17.731 INFO:teuthology.orchestra.run.smithi160.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-09-18T12:08:17.820 INFO:teuthology.orchestra.run.smithi160.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-09-18T12:08:17.822 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:17 smithi076 ceph-mon[27582]: purged_snaps scrub starts 2024-09-18T12:08:17.822 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:17 smithi076 ceph-mon[27582]: purged_snaps scrub ok 2024-09-18T12:08:17.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:17 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-18T12:08:17.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:17 smithi076 ceph-mon[27582]: osd.2 [v2:172.21.15.160:6800/3028159819,v1:172.21.15.160:6801/3028159819] boot 2024-09-18T12:08:17.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:17 smithi076 ceph-mon[27582]: osdmap e18: 3 total, 3 up, 3 in 2024-09-18T12:08:17.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:17 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-18T12:08:17.833 INFO:teuthology.orchestra.run.smithi160.stderr: stderr: 10+0 records in 2024-09-18T12:08:17.833 INFO:teuthology.orchestra.run.smithi160.stderr:10+0 records out 2024-09-18T12:08:17.833 INFO:teuthology.orchestra.run.smithi160.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0124193 s, 844 MB/s 2024-09-18T12:08:17.833 INFO:teuthology.orchestra.run.smithi160.stderr:--> Zapping successful for: 2024-09-18T12:08:18.569 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:18 smithi160 ceph-mon[31705]: pgmap v77: 0 pgs: ; 0 B data, 872 MiB used, 267 GiB / 268 GiB avail 2024-09-18T12:08:18.569 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:18 smithi160 ceph-mon[31705]: osdmap e19: 3 total, 3 up, 3 in 2024-09-18T12:08:18.569 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:18 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]: dispatch 2024-09-18T12:08:18.569 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:18 smithi160 ceph-mon[31705]: Detected new or changed devices on smithi160 2024-09-18T12:08:18.569 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:18 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:18.569 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:18 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:18.569 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:18 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-18T12:08:18.569 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:18 smithi160 ceph-mon[31705]: Adjusting osd_memory_target on smithi160 to 17088M 2024-09-18T12:08:18.569 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:18 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:18.569 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:18 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:08:18.570 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:18 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:08:18.570 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:18 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:18.570 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:18 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:08:18.570 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:18 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:08:18.570 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:18 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:08:18.570 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:18 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:18.592 DEBUG:teuthology.orchestra.run.smithi160:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi160:vg_nvme/lv_3 2024-09-18T12:08:18.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:18 smithi076 ceph-mon[27582]: pgmap v77: 0 pgs: ; 0 B data, 872 MiB used, 267 GiB / 268 GiB avail 2024-09-18T12:08:18.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:18 smithi076 ceph-mon[27582]: osdmap e19: 3 total, 3 up, 3 in 2024-09-18T12:08:18.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:18 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]: dispatch 2024-09-18T12:08:18.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:18 smithi076 ceph-mon[27582]: Detected new or changed devices on smithi160 2024-09-18T12:08:18.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:18 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:18.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:18 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:18.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:18 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-18T12:08:18.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:18 smithi076 ceph-mon[27582]: Adjusting osd_memory_target on smithi160 to 17088M 2024-09-18T12:08:18.824 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:18 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:18.824 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:18 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:08:18.824 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:18 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:08:18.824 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:18 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:18.824 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:18 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:08:18.824 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:18 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:08:18.824 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:18 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:08:18.824 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:18 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:18.836 INFO:teuthology.orchestra.run.smithi160.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.b/config 2024-09-18T12:08:18.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:18 smithi169 ceph-mon[32172]: pgmap v77: 0 pgs: ; 0 B data, 872 MiB used, 267 GiB / 268 GiB avail 2024-09-18T12:08:18.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:18 smithi169 ceph-mon[32172]: osdmap e19: 3 total, 3 up, 3 in 2024-09-18T12:08:18.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:18 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]: dispatch 2024-09-18T12:08:18.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:18 smithi169 ceph-mon[32172]: Detected new or changed devices on smithi160 2024-09-18T12:08:18.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:18 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:18.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:18 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:18.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:18 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-18T12:08:18.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:18 smithi169 ceph-mon[32172]: Adjusting osd_memory_target on smithi160 to 17088M 2024-09-18T12:08:18.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:18 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:18.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:18 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:08:18.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:18 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:08:18.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:18 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:18.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:18 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:08:18.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:18 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:08:18.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:18 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:08:18.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:18 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:19.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:19 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]': finished 2024-09-18T12:08:19.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:19 smithi160 ceph-mon[31705]: osdmap e20: 3 total, 3 up, 3 in 2024-09-18T12:08:19.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:19 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-18T12:08:19.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:19 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]': finished 2024-09-18T12:08:19.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:19 smithi076 ceph-mon[27582]: osdmap e20: 3 total, 3 up, 3 in 2024-09-18T12:08:19.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:19 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-18T12:08:19.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:19 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]': finished 2024-09-18T12:08:19.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:19 smithi169 ceph-mon[32172]: osdmap e20: 3 total, 3 up, 3 in 2024-09-18T12:08:19.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:19 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-18T12:08:20.544 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:20 smithi076 ceph-mon[27582]: pgmap v80: 1 pgs: 1 unknown; 0 B data, 872 MiB used, 267 GiB / 268 GiB avail 2024-09-18T12:08:20.544 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:20 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-18T12:08:20.544 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:20 smithi076 ceph-mon[27582]: osdmap e21: 3 total, 3 up, 3 in 2024-09-18T12:08:20.544 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:20 smithi076 ceph-mon[27582]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-18T12:08:20.545 INFO:journalctl@ceph.osd.0.smithi076.stdout:Sep 18 12:08:20 smithi076 sudo[48359]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-18T12:08:20.545 INFO:journalctl@ceph.osd.0.smithi076.stdout:Sep 18 12:08:20 smithi076 sudo[48359]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-18T12:08:20.545 INFO:journalctl@ceph.osd.0.smithi076.stdout:Sep 18 12:08:20 smithi076 sudo[48359]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-18T12:08:20.545 INFO:journalctl@ceph.osd.0.smithi076.stdout:Sep 18 12:08:20 smithi076 sudo[48359]: pam_unix(sudo:session): session closed for user root 2024-09-18T12:08:20.758 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:20 smithi160 ceph-mon[31705]: pgmap v80: 1 pgs: 1 unknown; 0 B data, 872 MiB used, 267 GiB / 268 GiB avail 2024-09-18T12:08:20.758 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:20 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-18T12:08:20.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:20 smithi160 ceph-mon[31705]: osdmap e21: 3 total, 3 up, 3 in 2024-09-18T12:08:20.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:20 smithi160 ceph-mon[31705]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-18T12:08:20.805 INFO:journalctl@ceph.osd.0.smithi076.stdout:Sep 18 12:08:20 smithi076 sudo[48362]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-18T12:08:20.805 INFO:journalctl@ceph.osd.0.smithi076.stdout:Sep 18 12:08:20 smithi076 sudo[48362]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-18T12:08:20.805 INFO:journalctl@ceph.osd.0.smithi076.stdout:Sep 18 12:08:20 smithi076 sudo[48362]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-18T12:08:20.805 INFO:journalctl@ceph.osd.0.smithi076.stdout:Sep 18 12:08:20 smithi076 sudo[48362]: pam_unix(sudo:session): session closed for user root 2024-09-18T12:08:20.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:20 smithi169 ceph-mon[32172]: pgmap v80: 1 pgs: 1 unknown; 0 B data, 872 MiB used, 267 GiB / 268 GiB avail 2024-09-18T12:08:20.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:20 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-18T12:08:20.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:20 smithi169 ceph-mon[32172]: osdmap e21: 3 total, 3 up, 3 in 2024-09-18T12:08:20.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:20 smithi169 ceph-mon[32172]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-18T12:08:21.058 INFO:journalctl@ceph.osd.1.smithi076.stdout:Sep 18 12:08:20 smithi076 sudo[48365]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-18T12:08:21.059 INFO:journalctl@ceph.osd.1.smithi076.stdout:Sep 18 12:08:20 smithi076 sudo[48365]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-18T12:08:21.059 INFO:journalctl@ceph.osd.1.smithi076.stdout:Sep 18 12:08:20 smithi076 sudo[48365]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-18T12:08:21.059 INFO:journalctl@ceph.osd.1.smithi076.stdout:Sep 18 12:08:20 smithi076 sudo[48365]: pam_unix(sudo:session): session closed for user root 2024-09-18T12:08:21.323 INFO:journalctl@ceph.osd.1.smithi076.stdout:Sep 18 12:08:21 smithi076 sudo[48368]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-18T12:08:21.323 INFO:journalctl@ceph.osd.1.smithi076.stdout:Sep 18 12:08:21 smithi076 sudo[48368]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-18T12:08:21.323 INFO:journalctl@ceph.osd.1.smithi076.stdout:Sep 18 12:08:21 smithi076 sudo[48368]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-18T12:08:21.323 INFO:journalctl@ceph.osd.1.smithi076.stdout:Sep 18 12:08:21 smithi076 sudo[48368]: pam_unix(sudo:session): session closed for user root 2024-09-18T12:08:21.456 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 18 12:08:21 smithi160 sudo[40063]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-18T12:08:21.456 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 18 12:08:21 smithi160 sudo[40063]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-18T12:08:21.456 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 18 12:08:21 smithi160 sudo[40063]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-18T12:08:21.456 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 18 12:08:21 smithi160 sudo[40063]: pam_unix(sudo:session): session closed for user root 2024-09-18T12:08:21.758 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 18 12:08:21 smithi160 sudo[40069]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-18T12:08:21.759 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 18 12:08:21 smithi160 sudo[40069]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-18T12:08:21.759 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 18 12:08:21 smithi160 sudo[40069]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-18T12:08:21.759 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 18 12:08:21 smithi160 sudo[40069]: pam_unix(sudo:session): session closed for user root 2024-09-18T12:08:21.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:21 smithi160 ceph-mon[31705]: from='client.24176 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi160:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:08:21.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:21 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-18T12:08:21.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:21 smithi160 ceph-mon[31705]: osdmap e22: 3 total, 3 up, 3 in 2024-09-18T12:08:21.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:21 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-18T12:08:21.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:21 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:08:21.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:21 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:21.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:21 smithi076 ceph-mon[27582]: from='client.24176 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi160:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:08:21.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:21 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-18T12:08:21.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:21 smithi076 ceph-mon[27582]: osdmap e22: 3 total, 3 up, 3 in 2024-09-18T12:08:21.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:21 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-18T12:08:21.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:21 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:08:21.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:21 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:21.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:21 smithi169 ceph-mon[32172]: from='client.24176 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi160:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:08:21.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:21 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-18T12:08:21.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:21 smithi169 ceph-mon[32172]: osdmap e22: 3 total, 3 up, 3 in 2024-09-18T12:08:21.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:21 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-18T12:08:21.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:21 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:08:21.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:21 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:22.085 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:21 smithi076 sudo[48372]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-18T12:08:22.085 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:21 smithi076 sudo[48372]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-18T12:08:22.085 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:21 smithi076 sudo[48372]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-18T12:08:22.085 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:21 smithi076 sudo[48372]: pam_unix(sudo:session): session closed for user root 2024-09-18T12:08:22.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:22 smithi076 sudo[48375]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-18T12:08:22.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:22 smithi076 sudo[48375]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-18T12:08:22.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:22 smithi076 sudo[48375]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-18T12:08:22.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:22 smithi076 sudo[48375]: pam_unix(sudo:session): session closed for user root 2024-09-18T12:08:22.584 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:22 smithi169 sudo[34153]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-18T12:08:22.585 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:22 smithi169 sudo[34153]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-18T12:08:22.585 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:22 smithi169 sudo[34153]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-18T12:08:22.585 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:22 smithi169 sudo[34153]: pam_unix(sudo:session): session closed for user root 2024-09-18T12:08:22.758 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:22 smithi160 ceph-mon[31705]: pgmap v83: 1 pgs: 1 unknown; 0 B data, 872 MiB used, 267 GiB / 268 GiB avail 2024-09-18T12:08:22.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:22 smithi160 ceph-mon[31705]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-18T12:08:22.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:22 smithi160 ceph-mon[31705]: Cluster is now healthy 2024-09-18T12:08:22.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:22 smithi160 ceph-mon[31705]: mgrmap e15: a(active, since 2m), standbys: b 2024-09-18T12:08:22.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:22 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:22.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:22 smithi160 ceph-mon[31705]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-18T12:08:22.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:22 smithi160 ceph-mon[31705]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-18T12:08:22.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:22 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-18T12:08:22.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:22 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:08:22.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:22 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-18T12:08:22.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:22 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-18T12:08:22.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:22 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:08:22.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:22 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-18T12:08:22.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:22 smithi169 sudo[34156]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-18T12:08:22.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:22 smithi169 sudo[34156]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-18T12:08:22.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:22 smithi169 sudo[34156]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-18T12:08:22.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:22 smithi169 sudo[34156]: pam_unix(sudo:session): session closed for user root 2024-09-18T12:08:22.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:22 smithi169 ceph-mon[32172]: pgmap v83: 1 pgs: 1 unknown; 0 B data, 872 MiB used, 267 GiB / 268 GiB avail 2024-09-18T12:08:22.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:22 smithi169 ceph-mon[32172]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-18T12:08:22.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:22 smithi169 ceph-mon[32172]: Cluster is now healthy 2024-09-18T12:08:22.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:22 smithi169 ceph-mon[32172]: mgrmap e15: a(active, since 2m), standbys: b 2024-09-18T12:08:22.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:22 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:22.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:22 smithi169 ceph-mon[32172]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-18T12:08:22.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:22 smithi169 ceph-mon[32172]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-18T12:08:22.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:22 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-18T12:08:22.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:22 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:08:22.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:22 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-18T12:08:22.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:22 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-18T12:08:22.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:22 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:08:22.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:22 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-18T12:08:23.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:22 smithi076 ceph-mon[27582]: pgmap v83: 1 pgs: 1 unknown; 0 B data, 872 MiB used, 267 GiB / 268 GiB avail 2024-09-18T12:08:23.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:22 smithi076 ceph-mon[27582]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-18T12:08:23.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:22 smithi076 ceph-mon[27582]: Cluster is now healthy 2024-09-18T12:08:23.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:22 smithi076 ceph-mon[27582]: mgrmap e15: a(active, since 2m), standbys: b 2024-09-18T12:08:23.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:22 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:23.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:22 smithi076 ceph-mon[27582]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-18T12:08:23.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:22 smithi076 ceph-mon[27582]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-18T12:08:23.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:22 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-18T12:08:23.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:22 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:08:23.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:22 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-18T12:08:23.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:22 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-18T12:08:23.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:22 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:08:23.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:22 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-18T12:08:23.107 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:22 smithi160 sudo[40140]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-18T12:08:23.107 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:22 smithi160 sudo[40140]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-18T12:08:23.107 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:22 smithi160 sudo[40140]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-18T12:08:23.107 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:22 smithi160 sudo[40140]: pam_unix(sudo:session): session closed for user root 2024-09-18T12:08:23.374 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:23 smithi160 sudo[40143]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-18T12:08:23.374 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:23 smithi160 sudo[40143]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-18T12:08:23.374 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:23 smithi160 sudo[40143]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-18T12:08:23.374 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:23 smithi160 sudo[40143]: pam_unix(sudo:session): session closed for user root 2024-09-18T12:08:23.690 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:23 smithi160 ceph-mon[31705]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-18T12:08:23.690 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:23 smithi160 ceph-mon[31705]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-18T12:08:23.690 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:23 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:23.690 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:23 smithi160 ceph-mon[31705]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-18T12:08:23.690 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:23 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-18T12:08:23.690 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:23 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:08:23.690 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:23 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-18T12:08:23.690 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:23 smithi160 ceph-mon[31705]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-18T12:08:23.691 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:23 smithi160 ceph-mon[31705]: from='client.? 172.21.15.160:0/2349698902' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "2e61d260-3d77-46c6-b94a-ac4038f04eae"}]: dispatch 2024-09-18T12:08:23.691 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:23 smithi160 ceph-mon[31705]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "2e61d260-3d77-46c6-b94a-ac4038f04eae"}]: dispatch 2024-09-18T12:08:23.691 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:23 smithi160 ceph-mon[31705]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2e61d260-3d77-46c6-b94a-ac4038f04eae"}]': finished 2024-09-18T12:08:23.691 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:23 smithi160 ceph-mon[31705]: osdmap e23: 4 total, 3 up, 4 in 2024-09-18T12:08:23.691 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:23 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-18T12:08:23.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:23 smithi169 ceph-mon[32172]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-18T12:08:23.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:23 smithi169 ceph-mon[32172]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-18T12:08:23.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:23 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:23.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:23 smithi169 ceph-mon[32172]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-18T12:08:23.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:23 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-18T12:08:23.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:23 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:08:23.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:23 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-18T12:08:23.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:23 smithi169 ceph-mon[32172]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-18T12:08:23.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:23 smithi169 ceph-mon[32172]: from='client.? 172.21.15.160:0/2349698902' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "2e61d260-3d77-46c6-b94a-ac4038f04eae"}]: dispatch 2024-09-18T12:08:23.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:23 smithi169 ceph-mon[32172]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "2e61d260-3d77-46c6-b94a-ac4038f04eae"}]: dispatch 2024-09-18T12:08:23.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:23 smithi169 ceph-mon[32172]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2e61d260-3d77-46c6-b94a-ac4038f04eae"}]': finished 2024-09-18T12:08:23.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:23 smithi169 ceph-mon[32172]: osdmap e23: 4 total, 3 up, 4 in 2024-09-18T12:08:23.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:23 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-18T12:08:24.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:23 smithi076 ceph-mon[27582]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-18T12:08:24.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:23 smithi076 ceph-mon[27582]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-18T12:08:24.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:23 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:24.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:23 smithi076 ceph-mon[27582]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-18T12:08:24.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:23 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-18T12:08:24.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:23 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:08:24.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:23 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-18T12:08:24.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:23 smithi076 ceph-mon[27582]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-18T12:08:24.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:23 smithi076 ceph-mon[27582]: from='client.? 172.21.15.160:0/2349698902' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "2e61d260-3d77-46c6-b94a-ac4038f04eae"}]: dispatch 2024-09-18T12:08:24.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:23 smithi076 ceph-mon[27582]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "2e61d260-3d77-46c6-b94a-ac4038f04eae"}]: dispatch 2024-09-18T12:08:24.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:23 smithi076 ceph-mon[27582]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2e61d260-3d77-46c6-b94a-ac4038f04eae"}]': finished 2024-09-18T12:08:24.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:23 smithi076 ceph-mon[27582]: osdmap e23: 4 total, 3 up, 4 in 2024-09-18T12:08:24.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:23 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-18T12:08:24.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:24 smithi169 ceph-mon[32172]: pgmap v85: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail 2024-09-18T12:08:24.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:24 smithi169 ceph-mon[32172]: from='client.? 172.21.15.160:0/253565773' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-18T12:08:25.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:24 smithi160 ceph-mon[31705]: pgmap v85: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail 2024-09-18T12:08:25.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:24 smithi160 ceph-mon[31705]: from='client.? 172.21.15.160:0/253565773' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-18T12:08:25.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:24 smithi076 ceph-mon[27582]: pgmap v85: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail 2024-09-18T12:08:25.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:24 smithi076 ceph-mon[27582]: from='client.? 172.21.15.160:0/253565773' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-18T12:08:26.758 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:26 smithi160 ceph-mon[31705]: pgmap v86: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail 2024-09-18T12:08:26.875 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:26 smithi076 ceph-mon[27582]: pgmap v86: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail 2024-09-18T12:08:26.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:26 smithi169 ceph-mon[32172]: pgmap v86: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail 2024-09-18T12:08:28.887 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:28 smithi160 ceph-mon[31705]: pgmap v87: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 4.2 KiB/s rd, 181 KiB/s wr, 12 op/s 2024-09-18T12:08:28.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:28 smithi169 ceph-mon[32172]: pgmap v87: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 4.2 KiB/s rd, 181 KiB/s wr, 12 op/s 2024-09-18T12:08:29.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:28 smithi076 ceph-mon[27582]: pgmap v87: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 4.2 KiB/s rd, 181 KiB/s wr, 12 op/s 2024-09-18T12:08:29.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:29 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-18T12:08:29.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:29 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:08:29.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:29 smithi169 ceph-mon[32172]: Deploying daemon osd.3 on smithi160 2024-09-18T12:08:29.951 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:29 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-18T12:08:29.951 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:29 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:08:29.952 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:29 smithi160 ceph-mon[31705]: Deploying daemon osd.3 on smithi160 2024-09-18T12:08:30.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:29 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-18T12:08:30.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:29 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:08:30.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:29 smithi076 ceph-mon[27582]: Deploying daemon osd.3 on smithi160 2024-09-18T12:08:30.811 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:30 smithi160 ceph-mon[31705]: pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 2.8 KiB/s rd, 124 KiB/s wr, 8 op/s 2024-09-18T12:08:30.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:30 smithi169 ceph-mon[32172]: pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 2.8 KiB/s rd, 124 KiB/s wr, 8 op/s 2024-09-18T12:08:31.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:30 smithi076 ceph-mon[27582]: pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 2.8 KiB/s rd, 124 KiB/s wr, 8 op/s 2024-09-18T12:08:32.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:32 smithi169 ceph-mon[32172]: pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 2.2 KiB/s rd, 94 KiB/s wr, 6 op/s 2024-09-18T12:08:33.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:32 smithi160 ceph-mon[31705]: pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 2.2 KiB/s rd, 94 KiB/s wr, 6 op/s 2024-09-18T12:08:33.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:32 smithi076 ceph-mon[27582]: pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 2.2 KiB/s rd, 94 KiB/s wr, 6 op/s 2024-09-18T12:08:34.892 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:34 smithi160 ceph-mon[31705]: pgmap v90: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 1.7 KiB/s rd, 76 KiB/s wr, 5 op/s 2024-09-18T12:08:34.893 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:34 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:08:34.893 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:34 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:34.893 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:34 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:34.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:34 smithi169 ceph-mon[32172]: pgmap v90: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 1.7 KiB/s rd, 76 KiB/s wr, 5 op/s 2024-09-18T12:08:34.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:34 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:08:34.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:34 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:34.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:34 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:35.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:34 smithi076 ceph-mon[27582]: pgmap v90: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 1.7 KiB/s rd, 76 KiB/s wr, 5 op/s 2024-09-18T12:08:35.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:34 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:08:35.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:34 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:35.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:34 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:36.867 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:36 smithi160 ceph-mon[31705]: pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-18T12:08:36.867 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:36 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:36.867 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:36 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:36.867 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:36 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:08:36.867 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:36 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:08:36.867 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:36 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:36.904 INFO:teuthology.orchestra.run.smithi160.stdout:Created osd(s) 3 on host 'smithi160' 2024-09-18T12:08:36.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:36 smithi169 ceph-mon[32172]: pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-18T12:08:36.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:36 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:36.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:36 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:36.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:36 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:08:36.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:36 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:08:36.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:36 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:37.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:36 smithi076 ceph-mon[27582]: pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-18T12:08:37.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:36 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:37.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:36 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:37.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:36 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:08:37.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:36 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:08:37.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:36 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:37.503 DEBUG:teuthology.orchestra.run.smithi160:osd.3> sudo journalctl -f -n 0 -u ceph-1afb0892-75b6-11ef-bceb-c7b262605968@osd.3.service 2024-09-18T12:08:37.506 INFO:tasks.cephadm:Deploying osd.4 on smithi169 with /dev/vg_nvme/lv_4... 2024-09-18T12:08:37.506 DEBUG:teuthology.orchestra.run.smithi169:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-09-18T12:08:37.754 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:37 smithi160 ceph-mon[31705]: from='osd.3 [v2:172.21.15.160:6808/1354815449,v1:172.21.15.160:6809/1354815449]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-18T12:08:37.754 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:37 smithi160 ceph-mon[31705]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-18T12:08:37.754 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:37 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:08:37.754 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:37 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:37.754 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:37 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:37.757 INFO:teuthology.orchestra.run.smithi169.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.c/config 2024-09-18T12:08:37.877 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:37 smithi169 ceph-mon[32172]: from='osd.3 [v2:172.21.15.160:6808/1354815449,v1:172.21.15.160:6809/1354815449]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-18T12:08:37.878 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:37 smithi169 ceph-mon[32172]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-18T12:08:37.878 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:37 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:08:37.878 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:37 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:37.878 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:37 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:38.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:37 smithi076 ceph-mon[27582]: from='osd.3 [v2:172.21.15.160:6808/1354815449,v1:172.21.15.160:6809/1354815449]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-18T12:08:38.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:37 smithi076 ceph-mon[27582]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-18T12:08:38.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:37 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:08:38.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:37 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:38.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:37 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:38.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:38 smithi169 ceph-mon[32172]: pgmap v92: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-18T12:08:38.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:38 smithi169 ceph-mon[32172]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-18T12:08:38.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:38 smithi169 ceph-mon[32172]: osdmap e24: 4 total, 3 up, 4 in 2024-09-18T12:08:38.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:38 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-18T12:08:38.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:38 smithi169 ceph-mon[32172]: from='osd.3 [v2:172.21.15.160:6808/1354815449,v1:172.21.15.160:6809/1354815449]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-09-18T12:08:38.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:38 smithi169 ceph-mon[32172]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-09-18T12:08:38.980 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:38 smithi160 ceph-mon[31705]: pgmap v92: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-18T12:08:38.980 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:38 smithi160 ceph-mon[31705]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-18T12:08:38.980 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:38 smithi160 ceph-mon[31705]: osdmap e24: 4 total, 3 up, 4 in 2024-09-18T12:08:38.980 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:38 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-18T12:08:38.980 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:38 smithi160 ceph-mon[31705]: from='osd.3 [v2:172.21.15.160:6808/1354815449,v1:172.21.15.160:6809/1354815449]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-09-18T12:08:38.980 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:38 smithi160 ceph-mon[31705]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-09-18T12:08:38.980 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 18 12:08:38 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-3[41799]: 2024-09-18T12:08:38.658+0000 7f5cafad7640 -1 osd.3 0 waiting for initial osdmap 2024-09-18T12:08:38.980 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 18 12:08:38 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-3[41799]: 2024-09-18T12:08:38.664+0000 7f5caa90e640 -1 osd.3 25 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-18T12:08:39.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:38 smithi076 ceph-mon[27582]: pgmap v92: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-18T12:08:39.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:38 smithi076 ceph-mon[27582]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-18T12:08:39.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:38 smithi076 ceph-mon[27582]: osdmap e24: 4 total, 3 up, 4 in 2024-09-18T12:08:39.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:38 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-18T12:08:39.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:38 smithi076 ceph-mon[27582]: from='osd.3 [v2:172.21.15.160:6808/1354815449,v1:172.21.15.160:6809/1354815449]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-09-18T12:08:39.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:38 smithi076 ceph-mon[27582]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-09-18T12:08:39.438 INFO:teuthology.orchestra.run.smithi169.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-09-18T12:08:39.526 INFO:teuthology.orchestra.run.smithi169.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-09-18T12:08:39.540 INFO:teuthology.orchestra.run.smithi169.stderr: stderr: 10+0 records in 2024-09-18T12:08:39.540 INFO:teuthology.orchestra.run.smithi169.stderr:10+0 records out 2024-09-18T12:08:39.541 INFO:teuthology.orchestra.run.smithi169.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0115926 s, 905 MB/s 2024-09-18T12:08:39.541 INFO:teuthology.orchestra.run.smithi169.stderr:--> Zapping successful for: 2024-09-18T12:08:39.758 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:39 smithi160 ceph-mon[31705]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]': finished 2024-09-18T12:08:39.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:39 smithi160 ceph-mon[31705]: osdmap e25: 4 total, 3 up, 4 in 2024-09-18T12:08:39.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:39 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-18T12:08:39.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:39 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-18T12:08:39.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:39 smithi160 ceph-mon[31705]: osd.3 [v2:172.21.15.160:6808/1354815449,v1:172.21.15.160:6809/1354815449] boot 2024-09-18T12:08:39.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:39 smithi160 ceph-mon[31705]: osdmap e26: 4 total, 4 up, 4 in 2024-09-18T12:08:39.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:39 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-18T12:08:39.881 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:39 smithi169 ceph-mon[32172]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]': finished 2024-09-18T12:08:39.881 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:39 smithi169 ceph-mon[32172]: osdmap e25: 4 total, 3 up, 4 in 2024-09-18T12:08:39.881 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:39 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-18T12:08:39.881 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:39 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-18T12:08:39.881 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:39 smithi169 ceph-mon[32172]: osd.3 [v2:172.21.15.160:6808/1354815449,v1:172.21.15.160:6809/1354815449] boot 2024-09-18T12:08:39.881 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:39 smithi169 ceph-mon[32172]: osdmap e26: 4 total, 4 up, 4 in 2024-09-18T12:08:39.881 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:39 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-18T12:08:40.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:39 smithi076 ceph-mon[27582]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]': finished 2024-09-18T12:08:40.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:39 smithi076 ceph-mon[27582]: osdmap e25: 4 total, 3 up, 4 in 2024-09-18T12:08:40.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:39 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-18T12:08:40.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:39 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-18T12:08:40.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:39 smithi076 ceph-mon[27582]: osd.3 [v2:172.21.15.160:6808/1354815449,v1:172.21.15.160:6809/1354815449] boot 2024-09-18T12:08:40.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:39 smithi076 ceph-mon[27582]: osdmap e26: 4 total, 4 up, 4 in 2024-09-18T12:08:40.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:39 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-18T12:08:40.082 DEBUG:teuthology.orchestra.run.smithi169:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi169:vg_nvme/lv_4 2024-09-18T12:08:40.334 INFO:teuthology.orchestra.run.smithi169.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.c/config 2024-09-18T12:08:40.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:40 smithi169 ceph-mon[32172]: purged_snaps scrub starts 2024-09-18T12:08:40.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:40 smithi169 ceph-mon[32172]: purged_snaps scrub ok 2024-09-18T12:08:40.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:40 smithi169 ceph-mon[32172]: pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail 2024-09-18T12:08:40.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:40 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:40.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:40 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:40.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:40 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-18T12:08:40.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:40 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-18T12:08:40.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:40 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:40.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:40 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:08:40.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:40 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:08:40.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:40 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:40.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:40 smithi169 ceph-mon[32172]: osdmap e27: 4 total, 4 up, 4 in 2024-09-18T12:08:41.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:40 smithi160 ceph-mon[31705]: purged_snaps scrub starts 2024-09-18T12:08:41.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:40 smithi160 ceph-mon[31705]: purged_snaps scrub ok 2024-09-18T12:08:41.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:40 smithi160 ceph-mon[31705]: pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail 2024-09-18T12:08:41.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:40 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:41.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:40 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:41.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:40 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-18T12:08:41.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:40 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-18T12:08:41.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:40 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:41.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:40 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:08:41.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:40 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:08:41.010 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:40 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:41.010 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:40 smithi160 ceph-mon[31705]: osdmap e27: 4 total, 4 up, 4 in 2024-09-18T12:08:41.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:40 smithi076 ceph-mon[27582]: purged_snaps scrub starts 2024-09-18T12:08:41.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:40 smithi076 ceph-mon[27582]: purged_snaps scrub ok 2024-09-18T12:08:41.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:40 smithi076 ceph-mon[27582]: pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail 2024-09-18T12:08:41.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:40 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:41.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:40 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:41.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:40 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-18T12:08:41.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:40 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-18T12:08:41.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:40 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:41.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:40 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:08:41.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:40 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:08:41.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:40 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:41.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:40 smithi076 ceph-mon[27582]: osdmap e27: 4 total, 4 up, 4 in 2024-09-18T12:08:41.836 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:41 smithi169 ceph-mon[32172]: Detected new or changed devices on smithi160 2024-09-18T12:08:41.836 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:41 smithi169 ceph-mon[32172]: Adjusting osd_memory_target on smithi160 to 8544M 2024-09-18T12:08:41.836 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:41 smithi169 ceph-mon[32172]: osdmap e28: 4 total, 4 up, 4 in 2024-09-18T12:08:42.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:41 smithi160 ceph-mon[31705]: Detected new or changed devices on smithi160 2024-09-18T12:08:42.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:41 smithi160 ceph-mon[31705]: Adjusting osd_memory_target on smithi160 to 8544M 2024-09-18T12:08:42.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:41 smithi160 ceph-mon[31705]: osdmap e28: 4 total, 4 up, 4 in 2024-09-18T12:08:42.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:41 smithi076 ceph-mon[27582]: Detected new or changed devices on smithi160 2024-09-18T12:08:42.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:41 smithi076 ceph-mon[27582]: Adjusting osd_memory_target on smithi160 to 8544M 2024-09-18T12:08:42.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:41 smithi076 ceph-mon[27582]: osdmap e28: 4 total, 4 up, 4 in 2024-09-18T12:08:42.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:42 smithi169 ceph-mon[32172]: pgmap v98: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:08:42.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:42 smithi169 ceph-mon[32172]: from='client.24163 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi169:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:08:42.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:42 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-18T12:08:42.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:42 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-18T12:08:42.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:42 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:08:43.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:42 smithi160 ceph-mon[31705]: pgmap v98: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:08:43.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:42 smithi160 ceph-mon[31705]: from='client.24163 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi169:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:08:43.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:42 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-18T12:08:43.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:42 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-18T12:08:43.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:42 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:08:43.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:42 smithi076 ceph-mon[27582]: pgmap v98: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:08:43.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:42 smithi076 ceph-mon[27582]: from='client.24163 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi169:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:08:43.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:42 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-18T12:08:43.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:42 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-18T12:08:43.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:42 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:08:44.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:44 smithi169 ceph-mon[32172]: pgmap v100: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:08:44.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:44 smithi169 ceph-mon[32172]: from='client.? 172.21.15.169:0/3679774791' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "4115daf2-2d0b-471e-b55e-c3243b82d2eb"}]: dispatch 2024-09-18T12:08:44.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:44 smithi169 ceph-mon[32172]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "4115daf2-2d0b-471e-b55e-c3243b82d2eb"}]: dispatch 2024-09-18T12:08:44.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:44 smithi169 ceph-mon[32172]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "4115daf2-2d0b-471e-b55e-c3243b82d2eb"}]': finished 2024-09-18T12:08:44.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:44 smithi169 ceph-mon[32172]: osdmap e29: 5 total, 4 up, 5 in 2024-09-18T12:08:44.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:44 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-18T12:08:44.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:44 smithi169 ceph-mon[32172]: from='client.? 172.21.15.169:0/1771058689' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-18T12:08:45.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:44 smithi160 ceph-mon[31705]: pgmap v100: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:08:45.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:44 smithi160 ceph-mon[31705]: from='client.? 172.21.15.169:0/3679774791' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "4115daf2-2d0b-471e-b55e-c3243b82d2eb"}]: dispatch 2024-09-18T12:08:45.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:44 smithi160 ceph-mon[31705]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "4115daf2-2d0b-471e-b55e-c3243b82d2eb"}]: dispatch 2024-09-18T12:08:45.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:44 smithi160 ceph-mon[31705]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "4115daf2-2d0b-471e-b55e-c3243b82d2eb"}]': finished 2024-09-18T12:08:45.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:44 smithi160 ceph-mon[31705]: osdmap e29: 5 total, 4 up, 5 in 2024-09-18T12:08:45.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:44 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-18T12:08:45.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:44 smithi160 ceph-mon[31705]: from='client.? 172.21.15.169:0/1771058689' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-18T12:08:45.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:44 smithi076 ceph-mon[27582]: pgmap v100: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:08:45.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:44 smithi076 ceph-mon[27582]: from='client.? 172.21.15.169:0/3679774791' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "4115daf2-2d0b-471e-b55e-c3243b82d2eb"}]: dispatch 2024-09-18T12:08:45.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:44 smithi076 ceph-mon[27582]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "4115daf2-2d0b-471e-b55e-c3243b82d2eb"}]: dispatch 2024-09-18T12:08:45.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:44 smithi076 ceph-mon[27582]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "4115daf2-2d0b-471e-b55e-c3243b82d2eb"}]': finished 2024-09-18T12:08:45.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:44 smithi076 ceph-mon[27582]: osdmap e29: 5 total, 4 up, 5 in 2024-09-18T12:08:45.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:44 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-18T12:08:45.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:44 smithi076 ceph-mon[27582]: from='client.? 172.21.15.169:0/1771058689' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-18T12:08:46.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:46 smithi169 ceph-mon[32172]: pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 100 KiB/s, 0 objects/s recovering 2024-09-18T12:08:47.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:46 smithi160 ceph-mon[31705]: pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 100 KiB/s, 0 objects/s recovering 2024-09-18T12:08:47.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:46 smithi076 ceph-mon[27582]: pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 100 KiB/s, 0 objects/s recovering 2024-09-18T12:08:48.934 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:48 smithi169 ceph-mon[32172]: pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 85 KiB/s, 0 objects/s recovering 2024-09-18T12:08:49.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:48 smithi160 ceph-mon[31705]: pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 85 KiB/s, 0 objects/s recovering 2024-09-18T12:08:49.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:48 smithi076 ceph-mon[27582]: pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 85 KiB/s, 0 objects/s recovering 2024-09-18T12:08:50.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:50 smithi169 ceph-mon[32172]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-18T12:08:50.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:50 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-18T12:08:50.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:50 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:08:50.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:50 smithi169 ceph-mon[32172]: Deploying daemon osd.4 on smithi169 2024-09-18T12:08:51.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:50 smithi160 ceph-mon[31705]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-18T12:08:51.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:50 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-18T12:08:51.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:50 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:08:51.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:50 smithi160 ceph-mon[31705]: Deploying daemon osd.4 on smithi169 2024-09-18T12:08:51.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:50 smithi076 ceph-mon[27582]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-18T12:08:51.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:50 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-18T12:08:51.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:50 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:08:51.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:50 smithi076 ceph-mon[27582]: Deploying daemon osd.4 on smithi169 2024-09-18T12:08:52.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:52 smithi169 ceph-mon[32172]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 59 KiB/s, 0 objects/s recovering 2024-09-18T12:08:53.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:52 smithi160 ceph-mon[31705]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 59 KiB/s, 0 objects/s recovering 2024-09-18T12:08:53.072 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:52 smithi076 ceph-mon[27582]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 59 KiB/s, 0 objects/s recovering 2024-09-18T12:08:54.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:54 smithi169 ceph-mon[32172]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-18T12:08:54.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:54 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:08:54.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:54 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:54.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:54 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:55.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:54 smithi160 ceph-mon[31705]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-18T12:08:55.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:54 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:08:55.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:54 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:55.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:54 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:55.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:54 smithi076 ceph-mon[27582]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-18T12:08:55.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:54 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:08:55.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:54 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:55.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:54 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:56.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:56 smithi169 ceph-mon[32172]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 51 KiB/s, 0 objects/s recovering 2024-09-18T12:08:57.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:56 smithi160 ceph-mon[31705]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 51 KiB/s, 0 objects/s recovering 2024-09-18T12:08:57.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:56 smithi076 ceph-mon[27582]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 51 KiB/s, 0 objects/s recovering 2024-09-18T12:08:57.607 INFO:teuthology.orchestra.run.smithi169.stdout:Created osd(s) 4 on host 'smithi169' 2024-09-18T12:08:58.273 DEBUG:teuthology.orchestra.run.smithi169:osd.4> sudo journalctl -f -n 0 -u ceph-1afb0892-75b6-11ef-bceb-c7b262605968@osd.4.service 2024-09-18T12:08:58.276 INFO:tasks.cephadm:Deploying osd.5 on smithi169 with /dev/vg_nvme/lv_3... 2024-09-18T12:08:58.276 DEBUG:teuthology.orchestra.run.smithi169:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-09-18T12:08:58.459 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:58 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:58.459 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:58 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:58.459 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:58 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:08:58.459 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:58 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:08:58.459 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:58 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:58.459 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:58 smithi169 ceph-mon[32172]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:08:58.459 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:58 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:08:58.459 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:58 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:58.459 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:58 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:58.459 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:58 smithi169 ceph-mon[32172]: from='osd.4 [v2:172.21.15.169:6800/4114790297,v1:172.21.15.169:6801/4114790297]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-18T12:08:58.460 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:58 smithi169 ceph-mon[32172]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-18T12:08:58.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:58 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:58.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:58 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:58.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:58 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:08:58.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:58 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:08:58.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:58 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:58.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:58 smithi160 ceph-mon[31705]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:08:58.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:58 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:08:58.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:58 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:58.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:58 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:58.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:58 smithi160 ceph-mon[31705]: from='osd.4 [v2:172.21.15.169:6800/4114790297,v1:172.21.15.169:6801/4114790297]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-18T12:08:58.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:58 smithi160 ceph-mon[31705]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-18T12:08:58.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:58 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:58.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:58 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:58.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:58 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:08:58.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:58 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:08:58.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:58 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:58.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:58 smithi076 ceph-mon[27582]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:08:58.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:58 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:08:58.574 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:58 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:58.574 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:58 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:08:58.574 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:58 smithi076 ceph-mon[27582]: from='osd.4 [v2:172.21.15.169:6800/4114790297,v1:172.21.15.169:6801/4114790297]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-18T12:08:58.574 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:58 smithi076 ceph-mon[27582]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-18T12:08:59.381 INFO:teuthology.orchestra.run.smithi169.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.c/config 2024-09-18T12:08:59.623 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:59 smithi169 ceph-mon[32172]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-18T12:08:59.624 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:59 smithi169 ceph-mon[32172]: osdmap e30: 5 total, 4 up, 5 in 2024-09-18T12:08:59.624 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:59 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-18T12:08:59.624 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:59 smithi169 ceph-mon[32172]: from='osd.4 [v2:172.21.15.169:6800/4114790297,v1:172.21.15.169:6801/4114790297]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]: dispatch 2024-09-18T12:08:59.624 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:08:59 smithi169 ceph-mon[32172]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]: dispatch 2024-09-18T12:08:59.624 INFO:journalctl@ceph.osd.4.smithi169.stdout:Sep 18 12:08:59 smithi169 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-4[36547]: 2024-09-18T12:08:59.612+0000 7f69a507d640 -1 osd.4 0 waiting for initial osdmap 2024-09-18T12:08:59.624 INFO:journalctl@ceph.osd.4.smithi169.stdout:Sep 18 12:08:59 smithi169 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-4[36547]: 2024-09-18T12:08:59.618+0000 7f69a0eb6640 -1 osd.4 31 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-18T12:09:00.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:59 smithi160 ceph-mon[31705]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-18T12:09:00.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:59 smithi160 ceph-mon[31705]: osdmap e30: 5 total, 4 up, 5 in 2024-09-18T12:09:00.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:59 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-18T12:09:00.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:59 smithi160 ceph-mon[31705]: from='osd.4 [v2:172.21.15.169:6800/4114790297,v1:172.21.15.169:6801/4114790297]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]: dispatch 2024-09-18T12:09:00.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:08:59 smithi160 ceph-mon[31705]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]: dispatch 2024-09-18T12:09:00.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:59 smithi076 ceph-mon[27582]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-18T12:09:00.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:59 smithi076 ceph-mon[27582]: osdmap e30: 5 total, 4 up, 5 in 2024-09-18T12:09:00.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:59 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-18T12:09:00.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:59 smithi076 ceph-mon[27582]: from='osd.4 [v2:172.21.15.169:6800/4114790297,v1:172.21.15.169:6801/4114790297]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]: dispatch 2024-09-18T12:09:00.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:08:59 smithi076 ceph-mon[27582]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]: dispatch 2024-09-18T12:09:00.832 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:00 smithi169 ceph-mon[32172]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:09:00.833 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:00 smithi169 ceph-mon[32172]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]': finished 2024-09-18T12:09:00.833 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:00 smithi169 ceph-mon[32172]: osdmap e31: 5 total, 4 up, 5 in 2024-09-18T12:09:00.833 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:00 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-18T12:09:00.833 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:00 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-18T12:09:01.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:00 smithi160 ceph-mon[31705]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:09:01.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:00 smithi160 ceph-mon[31705]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]': finished 2024-09-18T12:09:01.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:00 smithi160 ceph-mon[31705]: osdmap e31: 5 total, 4 up, 5 in 2024-09-18T12:09:01.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:00 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-18T12:09:01.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:00 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-18T12:09:01.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:00 smithi076 ceph-mon[27582]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:09:01.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:00 smithi076 ceph-mon[27582]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]': finished 2024-09-18T12:09:01.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:00 smithi076 ceph-mon[27582]: osdmap e31: 5 total, 4 up, 5 in 2024-09-18T12:09:01.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:00 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-18T12:09:01.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:00 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-18T12:09:01.517 INFO:teuthology.orchestra.run.smithi169.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-09-18T12:09:01.606 INFO:teuthology.orchestra.run.smithi169.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-09-18T12:09:01.621 INFO:teuthology.orchestra.run.smithi169.stderr: stderr: 10+0 records in 2024-09-18T12:09:01.621 INFO:teuthology.orchestra.run.smithi169.stderr:10+0 records out 2024-09-18T12:09:01.621 INFO:teuthology.orchestra.run.smithi169.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0126673 s, 828 MB/s 2024-09-18T12:09:01.621 INFO:teuthology.orchestra.run.smithi169.stderr:--> Zapping successful for: 2024-09-18T12:09:01.691 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:01 smithi169 ceph-mon[32172]: purged_snaps scrub starts 2024-09-18T12:09:01.691 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:01 smithi169 ceph-mon[32172]: purged_snaps scrub ok 2024-09-18T12:09:01.691 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:01 smithi169 ceph-mon[32172]: osd.4 [v2:172.21.15.169:6800/4114790297,v1:172.21.15.169:6801/4114790297] boot 2024-09-18T12:09:01.691 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:01 smithi169 ceph-mon[32172]: osdmap e32: 5 total, 5 up, 5 in 2024-09-18T12:09:01.691 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:01 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-18T12:09:02.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:01 smithi160 ceph-mon[31705]: purged_snaps scrub starts 2024-09-18T12:09:02.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:01 smithi160 ceph-mon[31705]: purged_snaps scrub ok 2024-09-18T12:09:02.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:01 smithi160 ceph-mon[31705]: osd.4 [v2:172.21.15.169:6800/4114790297,v1:172.21.15.169:6801/4114790297] boot 2024-09-18T12:09:02.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:01 smithi160 ceph-mon[31705]: osdmap e32: 5 total, 5 up, 5 in 2024-09-18T12:09:02.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:01 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-18T12:09:02.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:01 smithi076 ceph-mon[27582]: purged_snaps scrub starts 2024-09-18T12:09:02.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:01 smithi076 ceph-mon[27582]: purged_snaps scrub ok 2024-09-18T12:09:02.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:01 smithi076 ceph-mon[27582]: osd.4 [v2:172.21.15.169:6800/4114790297,v1:172.21.15.169:6801/4114790297] boot 2024-09-18T12:09:02.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:01 smithi076 ceph-mon[27582]: osdmap e32: 5 total, 5 up, 5 in 2024-09-18T12:09:02.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:01 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-18T12:09:02.584 DEBUG:teuthology.orchestra.run.smithi169:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi169:vg_nvme/lv_3 2024-09-18T12:09:02.824 INFO:teuthology.orchestra.run.smithi169.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.c/config 2024-09-18T12:09:02.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:02 smithi169 ceph-mon[32172]: pgmap v113: 1 pgs: 1 peering; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-18T12:09:02.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:02 smithi169 ceph-mon[32172]: osdmap e33: 5 total, 5 up, 5 in 2024-09-18T12:09:02.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:02 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:02.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:02 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:02.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:02 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-18T12:09:02.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:02 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:02.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:02 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:09:02.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:02 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:09:02.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:02 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:03.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:02 smithi160 ceph-mon[31705]: pgmap v113: 1 pgs: 1 peering; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-18T12:09:03.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:02 smithi160 ceph-mon[31705]: osdmap e33: 5 total, 5 up, 5 in 2024-09-18T12:09:03.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:02 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:03.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:02 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:03.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:02 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-18T12:09:03.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:02 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:03.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:02 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:09:03.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:02 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:09:03.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:02 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:03.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:02 smithi076 ceph-mon[27582]: pgmap v113: 1 pgs: 1 peering; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-18T12:09:03.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:02 smithi076 ceph-mon[27582]: osdmap e33: 5 total, 5 up, 5 in 2024-09-18T12:09:03.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:02 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:03.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:02 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:03.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:02 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-18T12:09:03.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:02 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:03.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:02 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:09:03.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:02 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:09:03.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:02 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:03.916 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:03 smithi169 ceph-mon[32172]: Detected new or changed devices on smithi169 2024-09-18T12:09:03.917 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:03 smithi169 ceph-mon[32172]: Adjusting osd_memory_target on smithi169 to 21184M 2024-09-18T12:09:03.917 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:03 smithi169 ceph-mon[32172]: osdmap e34: 5 total, 5 up, 5 in 2024-09-18T12:09:04.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:03 smithi160 ceph-mon[31705]: Detected new or changed devices on smithi169 2024-09-18T12:09:04.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:03 smithi160 ceph-mon[31705]: Adjusting osd_memory_target on smithi169 to 21184M 2024-09-18T12:09:04.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:03 smithi160 ceph-mon[31705]: osdmap e34: 5 total, 5 up, 5 in 2024-09-18T12:09:04.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:03 smithi076 ceph-mon[27582]: Detected new or changed devices on smithi169 2024-09-18T12:09:04.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:03 smithi076 ceph-mon[27582]: Adjusting osd_memory_target on smithi169 to 21184M 2024-09-18T12:09:04.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:03 smithi076 ceph-mon[27582]: osdmap e34: 5 total, 5 up, 5 in 2024-09-18T12:09:04.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:04 smithi169 ceph-mon[32172]: pgmap v116: 1 pgs: 1 peering; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-18T12:09:04.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:04 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-18T12:09:04.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:04 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-18T12:09:04.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:04 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:09:05.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:04 smithi160 ceph-mon[31705]: pgmap v116: 1 pgs: 1 peering; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-18T12:09:05.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:04 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-18T12:09:05.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:04 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-18T12:09:05.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:04 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:09:05.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:04 smithi076 ceph-mon[27582]: pgmap v116: 1 pgs: 1 peering; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-18T12:09:05.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:04 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-18T12:09:05.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:04 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-18T12:09:05.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:04 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:09:05.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:05 smithi169 ceph-mon[32172]: from='client.24190 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi169:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:09:06.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:05 smithi160 ceph-mon[31705]: from='client.24190 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi169:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:09:06.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:05 smithi076 ceph-mon[27582]: from='client.24190 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi169:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:09:06.925 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:06 smithi169 ceph-mon[32172]: pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 99 KiB/s, 0 objects/s recovering 2024-09-18T12:09:07.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:06 smithi160 ceph-mon[31705]: pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 99 KiB/s, 0 objects/s recovering 2024-09-18T12:09:07.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:06 smithi076 ceph-mon[27582]: pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 99 KiB/s, 0 objects/s recovering 2024-09-18T12:09:07.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:07 smithi169 ceph-mon[32172]: from='client.? 172.21.15.169:0/4083062194' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b8d3efaf-edff-4404-b6b7-410888415883"}]: dispatch 2024-09-18T12:09:07.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:07 smithi169 ceph-mon[32172]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b8d3efaf-edff-4404-b6b7-410888415883"}]: dispatch 2024-09-18T12:09:07.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:07 smithi169 ceph-mon[32172]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b8d3efaf-edff-4404-b6b7-410888415883"}]': finished 2024-09-18T12:09:07.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:07 smithi169 ceph-mon[32172]: osdmap e35: 6 total, 5 up, 6 in 2024-09-18T12:09:07.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:07 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-18T12:09:07.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:07 smithi169 ceph-mon[32172]: from='client.? 172.21.15.169:0/1822062147' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-18T12:09:08.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:07 smithi160 ceph-mon[31705]: from='client.? 172.21.15.169:0/4083062194' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b8d3efaf-edff-4404-b6b7-410888415883"}]: dispatch 2024-09-18T12:09:08.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:07 smithi160 ceph-mon[31705]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b8d3efaf-edff-4404-b6b7-410888415883"}]: dispatch 2024-09-18T12:09:08.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:07 smithi160 ceph-mon[31705]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b8d3efaf-edff-4404-b6b7-410888415883"}]': finished 2024-09-18T12:09:08.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:07 smithi160 ceph-mon[31705]: osdmap e35: 6 total, 5 up, 6 in 2024-09-18T12:09:08.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:07 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-18T12:09:08.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:07 smithi160 ceph-mon[31705]: from='client.? 172.21.15.169:0/1822062147' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-18T12:09:08.072 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:07 smithi076 ceph-mon[27582]: from='client.? 172.21.15.169:0/4083062194' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b8d3efaf-edff-4404-b6b7-410888415883"}]: dispatch 2024-09-18T12:09:08.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:07 smithi076 ceph-mon[27582]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b8d3efaf-edff-4404-b6b7-410888415883"}]: dispatch 2024-09-18T12:09:08.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:07 smithi076 ceph-mon[27582]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b8d3efaf-edff-4404-b6b7-410888415883"}]': finished 2024-09-18T12:09:08.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:07 smithi076 ceph-mon[27582]: osdmap e35: 6 total, 5 up, 6 in 2024-09-18T12:09:08.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:07 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-18T12:09:08.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:07 smithi076 ceph-mon[27582]: from='client.? 172.21.15.169:0/1822062147' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-18T12:09:09.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:08 smithi160 ceph-mon[31705]: pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-18T12:09:09.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:08 smithi076 ceph-mon[27582]: pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-18T12:09:09.095 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:08 smithi169 ceph-mon[32172]: pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-18T12:09:10.787 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:10 smithi169 ceph-mon[32172]: pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 74 KiB/s, 0 objects/s recovering 2024-09-18T12:09:11.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:10 smithi160 ceph-mon[31705]: pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 74 KiB/s, 0 objects/s recovering 2024-09-18T12:09:11.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:10 smithi076 ceph-mon[27582]: pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 74 KiB/s, 0 objects/s recovering 2024-09-18T12:09:12.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:12 smithi169 ceph-mon[32172]: pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 65 KiB/s, 0 objects/s recovering 2024-09-18T12:09:12.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:12 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-18T12:09:12.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:12 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:09:13.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:12 smithi160 ceph-mon[31705]: pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 65 KiB/s, 0 objects/s recovering 2024-09-18T12:09:13.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:12 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-18T12:09:13.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:12 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:09:13.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:12 smithi076 ceph-mon[27582]: pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 65 KiB/s, 0 objects/s recovering 2024-09-18T12:09:13.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:12 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-18T12:09:13.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:12 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:09:13.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:13 smithi169 ceph-mon[32172]: Deploying daemon osd.5 on smithi169 2024-09-18T12:09:14.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:13 smithi160 ceph-mon[31705]: Deploying daemon osd.5 on smithi169 2024-09-18T12:09:14.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:13 smithi076 ceph-mon[27582]: Deploying daemon osd.5 on smithi169 2024-09-18T12:09:15.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:14 smithi160 ceph-mon[31705]: pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-18T12:09:15.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:14 smithi076 ceph-mon[27582]: pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-18T12:09:15.124 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:14 smithi169 ceph-mon[32172]: pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-18T12:09:17.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:16 smithi160 ceph-mon[31705]: pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-18T12:09:17.072 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:16 smithi076 ceph-mon[27582]: pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-18T12:09:17.073 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:16 smithi169 ceph-mon[32172]: pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-18T12:09:18.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:17 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:09:18.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:17 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:18.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:17 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:18.050 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:17 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:09:18.051 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:17 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:18.051 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:17 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:18.072 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:17 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:09:18.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:17 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:18.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:17 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:18.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:18 smithi169 ceph-mon[32172]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-18T12:09:19.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:18 smithi160 ceph-mon[31705]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-18T12:09:19.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:18 smithi076 ceph-mon[27582]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-18T12:09:20.598 INFO:teuthology.orchestra.run.smithi169.stdout:Created osd(s) 5 on host 'smithi169' 2024-09-18T12:09:21.177 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:20 smithi169 ceph-mon[32172]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-18T12:09:21.177 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:20 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:21.177 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:20 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:21.177 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:20 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:09:21.177 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:20 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:09:21.177 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:20 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:21.177 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:20 smithi169 ceph-mon[32172]: from='osd.5 [v2:172.21.15.169:6808/2775307775,v1:172.21.15.169:6809/2775307775]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-18T12:09:21.177 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:20 smithi169 ceph-mon[32172]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-18T12:09:21.177 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:20 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:09:21.177 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:20 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:21.178 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:20 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:21.199 DEBUG:teuthology.orchestra.run.smithi169:osd.5> sudo journalctl -f -n 0 -u ceph-1afb0892-75b6-11ef-bceb-c7b262605968@osd.5.service 2024-09-18T12:09:21.202 INFO:tasks.cephadm:Waiting for 6 OSDs to come up... 2024-09-18T12:09:21.202 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-18T12:09:21.229 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:20 smithi076 ceph-mon[27582]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-18T12:09:21.230 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:20 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:21.230 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:20 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:21.230 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:20 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:09:21.230 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:20 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:09:21.230 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:20 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:21.230 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:20 smithi076 ceph-mon[27582]: from='osd.5 [v2:172.21.15.169:6808/2775307775,v1:172.21.15.169:6809/2775307775]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-18T12:09:21.230 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:20 smithi076 ceph-mon[27582]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-18T12:09:21.230 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:20 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:09:21.230 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:20 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:21.230 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:20 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:21.258 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:20 smithi160 ceph-mon[31705]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-18T12:09:21.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:20 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:21.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:20 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:21.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:20 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:09:21.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:20 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:09:21.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:20 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:21.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:20 smithi160 ceph-mon[31705]: from='osd.5 [v2:172.21.15.169:6808/2775307775,v1:172.21.15.169:6809/2775307775]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-18T12:09:21.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:20 smithi160 ceph-mon[31705]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-18T12:09:21.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:20 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:09:21.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:20 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:21.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:20 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:21.454 INFO:teuthology.orchestra.run.smithi076.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T12:09:21.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:21 smithi169 ceph-mon[32172]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-18T12:09:21.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:21 smithi169 ceph-mon[32172]: osdmap e36: 6 total, 5 up, 6 in 2024-09-18T12:09:21.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:21 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-18T12:09:21.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:21 smithi169 ceph-mon[32172]: from='osd.5 [v2:172.21.15.169:6808/2775307775,v1:172.21.15.169:6809/2775307775]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]: dispatch 2024-09-18T12:09:21.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:21 smithi169 ceph-mon[32172]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]: dispatch 2024-09-18T12:09:21.942 INFO:journalctl@ceph.osd.5.smithi169.stdout:Sep 18 12:09:21 smithi169 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-5[42356]: 2024-09-18T12:09:21.896+0000 7f419ae9d640 -1 osd.5 0 waiting for initial osdmap 2024-09-18T12:09:21.942 INFO:journalctl@ceph.osd.5.smithi169.stdout:Sep 18 12:09:21 smithi169 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-5[42356]: 2024-09-18T12:09:21.900+0000 7f41964d5640 -1 osd.5 37 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-18T12:09:22.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:21 smithi160 ceph-mon[31705]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-18T12:09:22.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:21 smithi160 ceph-mon[31705]: osdmap e36: 6 total, 5 up, 6 in 2024-09-18T12:09:22.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:21 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-18T12:09:22.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:21 smithi160 ceph-mon[31705]: from='osd.5 [v2:172.21.15.169:6808/2775307775,v1:172.21.15.169:6809/2775307775]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]: dispatch 2024-09-18T12:09:22.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:21 smithi160 ceph-mon[31705]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]: dispatch 2024-09-18T12:09:22.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:21 smithi076 ceph-mon[27582]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-18T12:09:22.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:21 smithi076 ceph-mon[27582]: osdmap e36: 6 total, 5 up, 6 in 2024-09-18T12:09:22.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:21 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-18T12:09:22.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:21 smithi076 ceph-mon[27582]: from='osd.5 [v2:172.21.15.169:6808/2775307775,v1:172.21.15.169:6809/2775307775]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]: dispatch 2024-09-18T12:09:22.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:21 smithi076 ceph-mon[27582]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]: dispatch 2024-09-18T12:09:23.130 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:22 smithi076 ceph-mon[27582]: pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-18T12:09:23.130 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:22 smithi076 ceph-mon[27582]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]': finished 2024-09-18T12:09:23.130 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:22 smithi076 ceph-mon[27582]: osdmap e37: 6 total, 5 up, 6 in 2024-09-18T12:09:23.131 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:22 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-18T12:09:23.131 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:22 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-18T12:09:23.131 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:22 smithi076 ceph-mon[27582]: osd.5 [v2:172.21.15.169:6808/2775307775,v1:172.21.15.169:6809/2775307775] boot 2024-09-18T12:09:23.131 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:22 smithi076 ceph-mon[27582]: osdmap e38: 6 total, 6 up, 6 in 2024-09-18T12:09:23.131 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:22 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-18T12:09:23.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:22 smithi169 ceph-mon[32172]: pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-18T12:09:23.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:22 smithi169 ceph-mon[32172]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]': finished 2024-09-18T12:09:23.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:22 smithi169 ceph-mon[32172]: osdmap e37: 6 total, 5 up, 6 in 2024-09-18T12:09:23.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:22 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-18T12:09:23.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:22 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-18T12:09:23.191 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:22 smithi169 ceph-mon[32172]: osd.5 [v2:172.21.15.169:6808/2775307775,v1:172.21.15.169:6809/2775307775] boot 2024-09-18T12:09:23.192 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:22 smithi169 ceph-mon[32172]: osdmap e38: 6 total, 6 up, 6 in 2024-09-18T12:09:23.192 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:22 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-18T12:09:23.249 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:09:23.258 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:22 smithi160 ceph-mon[31705]: pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-18T12:09:23.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:22 smithi160 ceph-mon[31705]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]': finished 2024-09-18T12:09:23.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:22 smithi160 ceph-mon[31705]: osdmap e37: 6 total, 5 up, 6 in 2024-09-18T12:09:23.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:22 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-18T12:09:23.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:22 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-18T12:09:23.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:22 smithi160 ceph-mon[31705]: osd.5 [v2:172.21.15.169:6808/2775307775,v1:172.21.15.169:6809/2775307775] boot 2024-09-18T12:09:23.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:22 smithi160 ceph-mon[31705]: osdmap e38: 6 total, 6 up, 6 in 2024-09-18T12:09:23.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:22 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-18T12:09:23.894 INFO:teuthology.orchestra.run.smithi076.stdout:{"epoch":39,"num_osds":6,"num_up_osds":6,"osd_up_since":1726661362,"num_in_osds":6,"osd_in_since":1726661346,"num_remapped_pgs":0} 2024-09-18T12:09:23.894 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-18T12:09:24.181 INFO:teuthology.orchestra.run.smithi076.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T12:09:24.302 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:24 smithi076 ceph-mon[27582]: purged_snaps scrub starts 2024-09-18T12:09:24.302 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:24 smithi076 ceph-mon[27582]: purged_snaps scrub ok 2024-09-18T12:09:24.302 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:24 smithi076 ceph-mon[27582]: osdmap e39: 6 total, 6 up, 6 in 2024-09-18T12:09:24.302 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:24 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/3873513783' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-18T12:09:24.303 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:24 smithi076 ceph-mon[27582]: pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:24.303 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:24 smithi076 ceph-mon[27582]: Detected new or changed devices on smithi169 2024-09-18T12:09:24.303 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:24 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:24.303 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:24 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:24.303 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:24 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-18T12:09:24.303 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:24 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-18T12:09:24.303 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:24 smithi076 ceph-mon[27582]: Adjusting osd_memory_target on smithi169 to 10592M 2024-09-18T12:09:24.303 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:24 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:24.303 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:24 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:09:24.304 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:24 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:09:24.304 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:24 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:24.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:24 smithi169 ceph-mon[32172]: purged_snaps scrub starts 2024-09-18T12:09:24.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:24 smithi169 ceph-mon[32172]: purged_snaps scrub ok 2024-09-18T12:09:24.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:24 smithi169 ceph-mon[32172]: osdmap e39: 6 total, 6 up, 6 in 2024-09-18T12:09:24.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:24 smithi169 ceph-mon[32172]: from='client.? 172.21.15.76:0/3873513783' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-18T12:09:24.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:24 smithi169 ceph-mon[32172]: pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:24.442 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:24 smithi169 ceph-mon[32172]: Detected new or changed devices on smithi169 2024-09-18T12:09:24.442 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:24 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:24.442 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:24 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:24.442 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:24 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-18T12:09:24.442 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:24 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-18T12:09:24.442 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:24 smithi169 ceph-mon[32172]: Adjusting osd_memory_target on smithi169 to 10592M 2024-09-18T12:09:24.442 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:24 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:24.442 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:24 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:09:24.442 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:24 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:09:24.443 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:24 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:24.508 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:24 smithi160 ceph-mon[31705]: purged_snaps scrub starts 2024-09-18T12:09:24.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:24 smithi160 ceph-mon[31705]: purged_snaps scrub ok 2024-09-18T12:09:24.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:24 smithi160 ceph-mon[31705]: osdmap e39: 6 total, 6 up, 6 in 2024-09-18T12:09:24.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:24 smithi160 ceph-mon[31705]: from='client.? 172.21.15.76:0/3873513783' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-18T12:09:24.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:24 smithi160 ceph-mon[31705]: pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:24.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:24 smithi160 ceph-mon[31705]: Detected new or changed devices on smithi169 2024-09-18T12:09:24.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:24 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:24.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:24 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:24.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:24 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-18T12:09:24.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:24 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-18T12:09:24.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:24 smithi160 ceph-mon[31705]: Adjusting osd_memory_target on smithi169 to 10592M 2024-09-18T12:09:24.510 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:24 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:24.510 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:24 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:09:24.510 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:24 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:09:24.510 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:24 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:09:25.264 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:25 smithi076 ceph-mon[27582]: osdmap e40: 6 total, 6 up, 6 in 2024-09-18T12:09:25.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:25 smithi169 ceph-mon[32172]: osdmap e40: 6 total, 6 up, 6 in 2024-09-18T12:09:25.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:25 smithi160 ceph-mon[31705]: osdmap e40: 6 total, 6 up, 6 in 2024-09-18T12:09:25.943 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:09:25.943 INFO:teuthology.orchestra.run.smithi076.stdout:{"epoch":40,"fsid":"1afb0892-75b6-11ef-bceb-c7b262605968","created":"2024-09-18T12:05:16.292433+0000","modified":"2024-09-18T12:09:24.101411+0000","last_up_change":"2024-09-18T12:09:22.098638+0000","last_in_change":"2024-09-18T12:09:06.714204+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":"quincy","pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-18T12:08:17.682767+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":"22","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":{}}}],"osds":[{"osd":0,"uuid":"aa363960-56f8-403f-968d-66816b41d99e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":26,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.76:6802","nonce":3299881952},{"type":"v1","addr":"172.21.15.76:6803","nonce":3299881952}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.76:6804","nonce":3299881952},{"type":"v1","addr":"172.21.15.76:6805","nonce":3299881952}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.76:6808","nonce":3299881952},{"type":"v1","addr":"172.21.15.76:6809","nonce":3299881952}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.76:6806","nonce":3299881952},{"type":"v1","addr":"172.21.15.76:6807","nonce":3299881952}]},"public_addr":"172.21.15.76:6803/3299881952","cluster_addr":"172.21.15.76:6805/3299881952","heartbeat_back_addr":"172.21.15.76:6809/3299881952","heartbeat_front_addr":"172.21.15.76:6807/3299881952","state":["exists","up"]},{"osd":1,"uuid":"873d4a25-ebbc-4311-b0b1-af00bcc62961","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.76:6810","nonce":4068564351},{"type":"v1","addr":"172.21.15.76:6811","nonce":4068564351}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.76:6812","nonce":4068564351},{"type":"v1","addr":"172.21.15.76:6813","nonce":4068564351}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.76:6816","nonce":4068564351},{"type":"v1","addr":"172.21.15.76:6817","nonce":4068564351}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.76:6814","nonce":4068564351},{"type":"v1","addr":"172.21.15.76:6815","nonce":4068564351}]},"public_addr":"172.21.15.76:6811/4068564351","cluster_addr":"172.21.15.76:6813/4068564351","heartbeat_back_addr":"172.21.15.76:6817/4068564351","heartbeat_front_addr":"172.21.15.76:6815/4068564351","state":["exists","up"]},{"osd":2,"uuid":"525541e5-0b7a-4297-92ce-cf2ff7aafbdf","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":20,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6800","nonce":3028159819},{"type":"v1","addr":"172.21.15.160:6801","nonce":3028159819}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6802","nonce":3028159819},{"type":"v1","addr":"172.21.15.160:6803","nonce":3028159819}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6806","nonce":3028159819},{"type":"v1","addr":"172.21.15.160:6807","nonce":3028159819}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6804","nonce":3028159819},{"type":"v1","addr":"172.21.15.160:6805","nonce":3028159819}]},"public_addr":"172.21.15.160:6801/3028159819","cluster_addr":"172.21.15.160:6803/3028159819","heartbeat_back_addr":"172.21.15.160:6807/3028159819","heartbeat_front_addr":"172.21.15.160:6805/3028159819","state":["exists","up"]},{"osd":3,"uuid":"2e61d260-3d77-46c6-b94a-ac4038f04eae","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":39,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6808","nonce":1354815449},{"type":"v1","addr":"172.21.15.160:6809","nonce":1354815449}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6810","nonce":1354815449},{"type":"v1","addr":"172.21.15.160:6811","nonce":1354815449}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6814","nonce":1354815449},{"type":"v1","addr":"172.21.15.160:6815","nonce":1354815449}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6812","nonce":1354815449},{"type":"v1","addr":"172.21.15.160:6813","nonce":1354815449}]},"public_addr":"172.21.15.160:6809/1354815449","cluster_addr":"172.21.15.160:6811/1354815449","heartbeat_back_addr":"172.21.15.160:6815/1354815449","heartbeat_front_addr":"172.21.15.160:6813/1354815449","state":["exists","up"]},{"osd":4,"uuid":"4115daf2-2d0b-471e-b55e-c3243b82d2eb","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":32,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6800","nonce":4114790297},{"type":"v1","addr":"172.21.15.169:6801","nonce":4114790297}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6802","nonce":4114790297},{"type":"v1","addr":"172.21.15.169:6803","nonce":4114790297}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6806","nonce":4114790297},{"type":"v1","addr":"172.21.15.169:6807","nonce":4114790297}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6804","nonce":4114790297},{"type":"v1","addr":"172.21.15.169:6805","nonce":4114790297}]},"public_addr":"172.21.15.169:6801/4114790297","cluster_addr":"172.21.15.169:6803/4114790297","heartbeat_back_addr":"172.21.15.169:6807/4114790297","heartbeat_front_addr":"172.21.15.169:6805/4114790297","state":["exists","up"]},{"osd":5,"uuid":"b8d3efaf-edff-4404-b6b7-410888415883","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":38,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6808","nonce":2775307775},{"type":"v1","addr":"172.21.15.169:6809","nonce":2775307775}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6810","nonce":2775307775},{"type":"v1","addr":"172.21.15.169:6811","nonce":2775307775}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6814","nonce":2775307775},{"type":"v1","addr":"172.21.15.169:6815","nonce":2775307775}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6812","nonce":2775307775},{"type":"v1","addr":"172.21.15.169:6813","nonce":2775307775}]},"public_addr":"172.21.15.169:6809/2775307775","cluster_addr":"172.21.15.169:6811/2775307775","heartbeat_back_addr":"172.21.15.169:6815/2775307775","heartbeat_front_addr":"172.21.15.169:6813/2775307775","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-18T12:07:29.810244+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-18T12:07:53.772546+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-18T12:08:14.773800+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-18T12:08:37.784378+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-18T12:08:58.748576+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-18T12:09:21.572179+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.76:0/3794370010":"2024-09-19T12:05:59.392750+0000","172.21.15.76:0/2816218728":"2024-09-19T12:05:59.392750+0000","172.21.15.76:6801/1247251897":"2024-09-19T12:05:37.640921+0000","172.21.15.76:0/2141677815":"2024-09-19T12:05:59.392750+0000","172.21.15.76:6800/1247251897":"2024-09-19T12:05:37.640921+0000","172.21.15.76:6801/3537385964":"2024-09-19T12:05:59.392750+0000","172.21.15.76:0/1796080234":"2024-09-19T12:05:37.640921+0000","172.21.15.76:6800/3537385964":"2024-09-19T12:05:59.392750+0000","172.21.15.76:0/1839125597":"2024-09-19T12:05:37.640921+0000","172.21.15.76:0/2860917062":"2024-09-19T12:05:37.640921+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-18T12:09:26.245 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:26 smithi076 ceph-mon[27582]: pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-09-18T12:09:26.245 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:26 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/3089579466' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-18T12:09:26.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:26 smithi169 ceph-mon[32172]: pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-09-18T12:09:26.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:26 smithi169 ceph-mon[32172]: from='client.? 172.21.15.76:0/3089579466' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-18T12:09:26.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:26 smithi160 ceph-mon[31705]: pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-09-18T12:09:26.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:26 smithi160 ceph-mon[31705]: from='client.? 172.21.15.76:0/3089579466' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-18T12:09:26.585 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-09-18T12:08:17.682767+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': '22', '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': {}}}] 2024-09-18T12:09:26.586 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph osd pool get .mgr pg_num 2024-09-18T12:09:26.825 INFO:teuthology.orchestra.run.smithi076.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T12:09:28.540 INFO:teuthology.orchestra.run.smithi076.stdout:pg_num: 1 2024-09-18T12:09:28.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:28 smithi160 ceph-mon[31705]: pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 104 KiB/s, 0 objects/s recovering 2024-09-18T12:09:28.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:28 smithi076 ceph-mon[27582]: pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 104 KiB/s, 0 objects/s recovering 2024-09-18T12:09:28.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:28 smithi169 ceph-mon[32172]: pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 104 KiB/s, 0 objects/s recovering 2024-09-18T12:09:29.131 INFO:tasks.cephadm:Setting up client nodes... 2024-09-18T12:09:29.132 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-09-18T12:09:29.132 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-09-18T12:09:29.132 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph mgr dump --format=json 2024-09-18T12:09:29.371 INFO:teuthology.orchestra.run.smithi076.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T12:09:29.768 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:29 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/3948581888' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-18T12:09:29.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:29 smithi169 ceph-mon[32172]: from='client.? 172.21.15.76:0/3948581888' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-18T12:09:30.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:29 smithi160 ceph-mon[31705]: from='client.? 172.21.15.76:0/3948581888' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-18T12:09:30.796 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:30 smithi076 ceph-mon[27582]: pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 78 KiB/s, 0 objects/s recovering 2024-09-18T12:09:30.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:30 smithi169 ceph-mon[32172]: pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 78 KiB/s, 0 objects/s recovering 2024-09-18T12:09:31.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:30 smithi160 ceph-mon[31705]: pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 78 KiB/s, 0 objects/s recovering 2024-09-18T12:09:31.207 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:09:31.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:31 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/3883232129' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-18T12:09:31.911 INFO:teuthology.orchestra.run.smithi076.stdout:{"epoch":15,"flags":0,"active_gid":14150,"active_name":"a","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.76:6800","nonce":2752695897},{"type":"v1","addr":"172.21.15.76:6801","nonce":2752695897}]},"active_addr":"172.21.15.76:6801/2752695897","active_change":"2024-09-18T12:05:59.392916+0000","active_mgr_features":4540138320759226367,"available":true,"standbys":[{"gid":24107,"name":"b","mgr_features":4540138320759226367,"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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":"7","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 or 7 = 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":"2400","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":"7","min":"0","max":"7","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 or 7 = 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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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_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_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.1.5","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:2.4.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_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:2.4.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":[]},"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":[]},"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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":"False","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":"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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"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":[]},"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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"drive_group_interval":{"name":"drive_group_interval","type":"float","level":"advanced","flags":0,"default_value":"300.0","min":"","max":"","enum_allowed":[],"desc":"interval in seconds between re-application of applied drive_groups","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":"7","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 or 7 = 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":"2400","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":"7","min":"0","max":"7","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 or 7 = 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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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_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_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.1.5","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:2.4.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_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:2.4.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":[]},"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":[]},"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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":"False","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":"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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"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":[]},"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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"drive_group_interval":{"name":"drive_group_interval","type":"float","level":"advanced","flags":0,"default_value":"300.0","min":"","max":"","enum_allowed":[],"desc":"interval in seconds between re-application of applied drive_groups","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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.76: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"]},"last_failure_osd_epoch":3,"active_clients":[{"name":"devicehealth","addrvec":[{"type":"v2","addr":"172.21.15.76:0","nonce":2714255390}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.76:0","nonce":4036523645}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.76:0","nonce":529182630}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.76:0","nonce":4067692729}]}]} 2024-09-18T12:09:31.918 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-09-18T12:09:31.918 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-09-18T12:09:31.918 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-18T12:09:31.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:31 smithi169 ceph-mon[32172]: from='client.? 172.21.15.76:0/3883232129' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-18T12:09:32.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:31 smithi160 ceph-mon[31705]: from='client.? 172.21.15.76:0/3883232129' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-18T12:09:32.155 INFO:teuthology.orchestra.run.smithi076.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T12:09:32.563 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:32 smithi076 ceph-mon[27582]: pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 69 KiB/s, 0 objects/s recovering 2024-09-18T12:09:32.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:32 smithi169 ceph-mon[32172]: pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 69 KiB/s, 0 objects/s recovering 2024-09-18T12:09:33.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:32 smithi160 ceph-mon[31705]: pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 69 KiB/s, 0 objects/s recovering 2024-09-18T12:09:33.869 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:09:33.869 INFO:teuthology.orchestra.run.smithi076.stdout:{"epoch":40,"fsid":"1afb0892-75b6-11ef-bceb-c7b262605968","created":"2024-09-18T12:05:16.292433+0000","modified":"2024-09-18T12:09:24.101411+0000","last_up_change":"2024-09-18T12:09:22.098638+0000","last_in_change":"2024-09-18T12:09:06.714204+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":"quincy","pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-18T12:08:17.682767+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":"22","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":{}}}],"osds":[{"osd":0,"uuid":"aa363960-56f8-403f-968d-66816b41d99e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":26,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.76:6802","nonce":3299881952},{"type":"v1","addr":"172.21.15.76:6803","nonce":3299881952}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.76:6804","nonce":3299881952},{"type":"v1","addr":"172.21.15.76:6805","nonce":3299881952}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.76:6808","nonce":3299881952},{"type":"v1","addr":"172.21.15.76:6809","nonce":3299881952}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.76:6806","nonce":3299881952},{"type":"v1","addr":"172.21.15.76:6807","nonce":3299881952}]},"public_addr":"172.21.15.76:6803/3299881952","cluster_addr":"172.21.15.76:6805/3299881952","heartbeat_back_addr":"172.21.15.76:6809/3299881952","heartbeat_front_addr":"172.21.15.76:6807/3299881952","state":["exists","up"]},{"osd":1,"uuid":"873d4a25-ebbc-4311-b0b1-af00bcc62961","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.76:6810","nonce":4068564351},{"type":"v1","addr":"172.21.15.76:6811","nonce":4068564351}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.76:6812","nonce":4068564351},{"type":"v1","addr":"172.21.15.76:6813","nonce":4068564351}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.76:6816","nonce":4068564351},{"type":"v1","addr":"172.21.15.76:6817","nonce":4068564351}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.76:6814","nonce":4068564351},{"type":"v1","addr":"172.21.15.76:6815","nonce":4068564351}]},"public_addr":"172.21.15.76:6811/4068564351","cluster_addr":"172.21.15.76:6813/4068564351","heartbeat_back_addr":"172.21.15.76:6817/4068564351","heartbeat_front_addr":"172.21.15.76:6815/4068564351","state":["exists","up"]},{"osd":2,"uuid":"525541e5-0b7a-4297-92ce-cf2ff7aafbdf","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":20,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6800","nonce":3028159819},{"type":"v1","addr":"172.21.15.160:6801","nonce":3028159819}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6802","nonce":3028159819},{"type":"v1","addr":"172.21.15.160:6803","nonce":3028159819}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6806","nonce":3028159819},{"type":"v1","addr":"172.21.15.160:6807","nonce":3028159819}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6804","nonce":3028159819},{"type":"v1","addr":"172.21.15.160:6805","nonce":3028159819}]},"public_addr":"172.21.15.160:6801/3028159819","cluster_addr":"172.21.15.160:6803/3028159819","heartbeat_back_addr":"172.21.15.160:6807/3028159819","heartbeat_front_addr":"172.21.15.160:6805/3028159819","state":["exists","up"]},{"osd":3,"uuid":"2e61d260-3d77-46c6-b94a-ac4038f04eae","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":39,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6808","nonce":1354815449},{"type":"v1","addr":"172.21.15.160:6809","nonce":1354815449}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6810","nonce":1354815449},{"type":"v1","addr":"172.21.15.160:6811","nonce":1354815449}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6814","nonce":1354815449},{"type":"v1","addr":"172.21.15.160:6815","nonce":1354815449}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6812","nonce":1354815449},{"type":"v1","addr":"172.21.15.160:6813","nonce":1354815449}]},"public_addr":"172.21.15.160:6809/1354815449","cluster_addr":"172.21.15.160:6811/1354815449","heartbeat_back_addr":"172.21.15.160:6815/1354815449","heartbeat_front_addr":"172.21.15.160:6813/1354815449","state":["exists","up"]},{"osd":4,"uuid":"4115daf2-2d0b-471e-b55e-c3243b82d2eb","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":32,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6800","nonce":4114790297},{"type":"v1","addr":"172.21.15.169:6801","nonce":4114790297}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6802","nonce":4114790297},{"type":"v1","addr":"172.21.15.169:6803","nonce":4114790297}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6806","nonce":4114790297},{"type":"v1","addr":"172.21.15.169:6807","nonce":4114790297}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6804","nonce":4114790297},{"type":"v1","addr":"172.21.15.169:6805","nonce":4114790297}]},"public_addr":"172.21.15.169:6801/4114790297","cluster_addr":"172.21.15.169:6803/4114790297","heartbeat_back_addr":"172.21.15.169:6807/4114790297","heartbeat_front_addr":"172.21.15.169:6805/4114790297","state":["exists","up"]},{"osd":5,"uuid":"b8d3efaf-edff-4404-b6b7-410888415883","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":38,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6808","nonce":2775307775},{"type":"v1","addr":"172.21.15.169:6809","nonce":2775307775}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6810","nonce":2775307775},{"type":"v1","addr":"172.21.15.169:6811","nonce":2775307775}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6814","nonce":2775307775},{"type":"v1","addr":"172.21.15.169:6815","nonce":2775307775}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6812","nonce":2775307775},{"type":"v1","addr":"172.21.15.169:6813","nonce":2775307775}]},"public_addr":"172.21.15.169:6809/2775307775","cluster_addr":"172.21.15.169:6811/2775307775","heartbeat_back_addr":"172.21.15.169:6815/2775307775","heartbeat_front_addr":"172.21.15.169:6813/2775307775","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-18T12:07:29.810244+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-18T12:07:53.772546+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-18T12:08:14.773800+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-18T12:08:37.784378+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-18T12:08:58.748576+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-18T12:09:21.572179+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.76:0/3794370010":"2024-09-19T12:05:59.392750+0000","172.21.15.76:0/2816218728":"2024-09-19T12:05:59.392750+0000","172.21.15.76:6801/1247251897":"2024-09-19T12:05:37.640921+0000","172.21.15.76:0/2141677815":"2024-09-19T12:05:59.392750+0000","172.21.15.76:6800/1247251897":"2024-09-19T12:05:37.640921+0000","172.21.15.76:6801/3537385964":"2024-09-19T12:05:59.392750+0000","172.21.15.76:0/1796080234":"2024-09-19T12:05:37.640921+0000","172.21.15.76:6800/3537385964":"2024-09-19T12:05:59.392750+0000","172.21.15.76:0/1839125597":"2024-09-19T12:05:37.640921+0000","172.21.15.76:0/2860917062":"2024-09-19T12:05:37.640921+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-18T12:09:34.521 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-09-18T12:09:34.521 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-18T12:09:34.758 INFO:teuthology.orchestra.run.smithi076.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T12:09:34.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:34 smithi076 ceph-mon[27582]: pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-18T12:09:34.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:34 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/881162140' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-18T12:09:34.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:34 smithi169 ceph-mon[32172]: pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-18T12:09:34.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:34 smithi169 ceph-mon[32172]: from='client.? 172.21.15.76:0/881162140' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-18T12:09:35.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:34 smithi160 ceph-mon[31705]: pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-18T12:09:35.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:34 smithi160 ceph-mon[31705]: from='client.? 172.21.15.76:0/881162140' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-18T12:09:36.444 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:09:36.444 INFO:teuthology.orchestra.run.smithi076.stdout:{"epoch":40,"fsid":"1afb0892-75b6-11ef-bceb-c7b262605968","created":"2024-09-18T12:05:16.292433+0000","modified":"2024-09-18T12:09:24.101411+0000","last_up_change":"2024-09-18T12:09:22.098638+0000","last_in_change":"2024-09-18T12:09:06.714204+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":"quincy","pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-18T12:08:17.682767+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":"22","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":{}}}],"osds":[{"osd":0,"uuid":"aa363960-56f8-403f-968d-66816b41d99e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":26,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.76:6802","nonce":3299881952},{"type":"v1","addr":"172.21.15.76:6803","nonce":3299881952}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.76:6804","nonce":3299881952},{"type":"v1","addr":"172.21.15.76:6805","nonce":3299881952}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.76:6808","nonce":3299881952},{"type":"v1","addr":"172.21.15.76:6809","nonce":3299881952}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.76:6806","nonce":3299881952},{"type":"v1","addr":"172.21.15.76:6807","nonce":3299881952}]},"public_addr":"172.21.15.76:6803/3299881952","cluster_addr":"172.21.15.76:6805/3299881952","heartbeat_back_addr":"172.21.15.76:6809/3299881952","heartbeat_front_addr":"172.21.15.76:6807/3299881952","state":["exists","up"]},{"osd":1,"uuid":"873d4a25-ebbc-4311-b0b1-af00bcc62961","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.76:6810","nonce":4068564351},{"type":"v1","addr":"172.21.15.76:6811","nonce":4068564351}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.76:6812","nonce":4068564351},{"type":"v1","addr":"172.21.15.76:6813","nonce":4068564351}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.76:6816","nonce":4068564351},{"type":"v1","addr":"172.21.15.76:6817","nonce":4068564351}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.76:6814","nonce":4068564351},{"type":"v1","addr":"172.21.15.76:6815","nonce":4068564351}]},"public_addr":"172.21.15.76:6811/4068564351","cluster_addr":"172.21.15.76:6813/4068564351","heartbeat_back_addr":"172.21.15.76:6817/4068564351","heartbeat_front_addr":"172.21.15.76:6815/4068564351","state":["exists","up"]},{"osd":2,"uuid":"525541e5-0b7a-4297-92ce-cf2ff7aafbdf","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":20,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6800","nonce":3028159819},{"type":"v1","addr":"172.21.15.160:6801","nonce":3028159819}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6802","nonce":3028159819},{"type":"v1","addr":"172.21.15.160:6803","nonce":3028159819}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6806","nonce":3028159819},{"type":"v1","addr":"172.21.15.160:6807","nonce":3028159819}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6804","nonce":3028159819},{"type":"v1","addr":"172.21.15.160:6805","nonce":3028159819}]},"public_addr":"172.21.15.160:6801/3028159819","cluster_addr":"172.21.15.160:6803/3028159819","heartbeat_back_addr":"172.21.15.160:6807/3028159819","heartbeat_front_addr":"172.21.15.160:6805/3028159819","state":["exists","up"]},{"osd":3,"uuid":"2e61d260-3d77-46c6-b94a-ac4038f04eae","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":39,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6808","nonce":1354815449},{"type":"v1","addr":"172.21.15.160:6809","nonce":1354815449}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6810","nonce":1354815449},{"type":"v1","addr":"172.21.15.160:6811","nonce":1354815449}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6814","nonce":1354815449},{"type":"v1","addr":"172.21.15.160:6815","nonce":1354815449}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6812","nonce":1354815449},{"type":"v1","addr":"172.21.15.160:6813","nonce":1354815449}]},"public_addr":"172.21.15.160:6809/1354815449","cluster_addr":"172.21.15.160:6811/1354815449","heartbeat_back_addr":"172.21.15.160:6815/1354815449","heartbeat_front_addr":"172.21.15.160:6813/1354815449","state":["exists","up"]},{"osd":4,"uuid":"4115daf2-2d0b-471e-b55e-c3243b82d2eb","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":32,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6800","nonce":4114790297},{"type":"v1","addr":"172.21.15.169:6801","nonce":4114790297}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6802","nonce":4114790297},{"type":"v1","addr":"172.21.15.169:6803","nonce":4114790297}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6806","nonce":4114790297},{"type":"v1","addr":"172.21.15.169:6807","nonce":4114790297}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6804","nonce":4114790297},{"type":"v1","addr":"172.21.15.169:6805","nonce":4114790297}]},"public_addr":"172.21.15.169:6801/4114790297","cluster_addr":"172.21.15.169:6803/4114790297","heartbeat_back_addr":"172.21.15.169:6807/4114790297","heartbeat_front_addr":"172.21.15.169:6805/4114790297","state":["exists","up"]},{"osd":5,"uuid":"b8d3efaf-edff-4404-b6b7-410888415883","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":38,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6808","nonce":2775307775},{"type":"v1","addr":"172.21.15.169:6809","nonce":2775307775}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6810","nonce":2775307775},{"type":"v1","addr":"172.21.15.169:6811","nonce":2775307775}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6814","nonce":2775307775},{"type":"v1","addr":"172.21.15.169:6815","nonce":2775307775}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6812","nonce":2775307775},{"type":"v1","addr":"172.21.15.169:6813","nonce":2775307775}]},"public_addr":"172.21.15.169:6809/2775307775","cluster_addr":"172.21.15.169:6811/2775307775","heartbeat_back_addr":"172.21.15.169:6815/2775307775","heartbeat_front_addr":"172.21.15.169:6813/2775307775","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-18T12:07:29.810244+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-18T12:07:53.772546+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-18T12:08:14.773800+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-18T12:08:37.784378+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-18T12:08:58.748576+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-18T12:09:21.572179+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.76:0/3794370010":"2024-09-19T12:05:59.392750+0000","172.21.15.76:0/2816218728":"2024-09-19T12:05:59.392750+0000","172.21.15.76:6801/1247251897":"2024-09-19T12:05:37.640921+0000","172.21.15.76:0/2141677815":"2024-09-19T12:05:59.392750+0000","172.21.15.76:6800/1247251897":"2024-09-19T12:05:37.640921+0000","172.21.15.76:6801/3537385964":"2024-09-19T12:05:59.392750+0000","172.21.15.76:0/1796080234":"2024-09-19T12:05:37.640921+0000","172.21.15.76:6800/3537385964":"2024-09-19T12:05:59.392750+0000","172.21.15.76:0/1839125597":"2024-09-19T12:05:37.640921+0000","172.21.15.76:0/2860917062":"2024-09-19T12:05:37.640921+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-18T12:09:36.800 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:36 smithi076 ceph-mon[27582]: pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 51 KiB/s, 0 objects/s recovering 2024-09-18T12:09:36.800 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:36 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/1961177537' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-18T12:09:36.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:36 smithi169 ceph-mon[32172]: pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 51 KiB/s, 0 objects/s recovering 2024-09-18T12:09:36.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:36 smithi169 ceph-mon[32172]: from='client.? 172.21.15.76:0/1961177537' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-18T12:09:37.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:36 smithi160 ceph-mon[31705]: pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 51 KiB/s, 0 objects/s recovering 2024-09-18T12:09:37.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:36 smithi160 ceph-mon[31705]: from='client.? 172.21.15.76:0/1961177537' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-18T12:09:37.130 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph tell osd.0 flush_pg_stats 2024-09-18T12:09:37.130 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph tell osd.1 flush_pg_stats 2024-09-18T12:09:37.131 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph tell osd.2 flush_pg_stats 2024-09-18T12:09:37.131 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph tell osd.3 flush_pg_stats 2024-09-18T12:09:37.131 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph tell osd.4 flush_pg_stats 2024-09-18T12:09:37.132 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph tell osd.5 flush_pg_stats 2024-09-18T12:09:37.409 INFO:teuthology.orchestra.run.smithi076.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T12:09:37.409 INFO:teuthology.orchestra.run.smithi076.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T12:09:38.170 INFO:teuthology.orchestra.run.smithi076.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T12:09:38.171 INFO:teuthology.orchestra.run.smithi076.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T12:09:38.172 INFO:teuthology.orchestra.run.smithi076.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T12:09:38.175 INFO:teuthology.orchestra.run.smithi076.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T12:09:38.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:38 smithi076 ceph-mon[27582]: pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:38.944 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:38 smithi169 ceph-mon[32172]: pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:39.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:38 smithi160 ceph-mon[31705]: pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:40.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:40 smithi076 ceph-mon[27582]: pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:40.878 INFO:teuthology.orchestra.run.smithi076.stdout:34359738396 2024-09-18T12:09:40.879 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.0 2024-09-18T12:09:40.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:40 smithi169 ceph-mon[32172]: pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:41.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:40 smithi160 ceph-mon[31705]: pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:42.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:42 smithi076 ceph-mon[27582]: pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:42.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:42 smithi169 ceph-mon[32172]: pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:43.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:42 smithi160 ceph-mon[31705]: pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:44.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:44 smithi076 ceph-mon[27582]: pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:44.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:44 smithi169 ceph-mon[32172]: pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:45.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:44 smithi160 ceph-mon[31705]: pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:46.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:46 smithi076 ceph-mon[27582]: pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:46.923 INFO:teuthology.orchestra.run.smithi076.stdout:111669149712 2024-09-18T12:09:46.924 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.3 2024-09-18T12:09:46.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:46 smithi169 ceph-mon[32172]: pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:47.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:46 smithi160 ceph-mon[31705]: pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:47.341 INFO:teuthology.orchestra.run.smithi076.stdout:77309411349 2024-09-18T12:09:47.341 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.2 2024-09-18T12:09:47.784 INFO:teuthology.orchestra.run.smithi076.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T12:09:48.279 INFO:teuthology.orchestra.run.smithi076.stdout:55834574873 2024-09-18T12:09:48.279 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.1 2024-09-18T12:09:48.811 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:48 smithi160 ceph-mon[31705]: pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:48.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:48 smithi076 ceph-mon[27582]: pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:48.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:48 smithi169 ceph-mon[32172]: pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:49.620 INFO:teuthology.orchestra.run.smithi076.stdout:163208757256 2024-09-18T12:09:49.620 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.5 2024-09-18T12:09:50.770 INFO:teuthology.orchestra.run.smithi076.stdout:137438953484 2024-09-18T12:09:50.770 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.4 2024-09-18T12:09:50.778 INFO:teuthology.orchestra.run.smithi076.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T12:09:50.779 INFO:teuthology.orchestra.run.smithi076.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T12:09:50.822 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:50 smithi076 ceph-mon[27582]: pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:50.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:50 smithi169 ceph-mon[32172]: pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:51.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:50 smithi160 ceph-mon[31705]: pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:51.971 INFO:teuthology.orchestra.run.smithi076.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T12:09:51.971 INFO:teuthology.orchestra.run.smithi076.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T12:09:52.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:52 smithi076 ceph-mon[27582]: pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:52.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:52 smithi169 ceph-mon[32172]: pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:53.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:52 smithi160 ceph-mon[31705]: pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:54.762 INFO:teuthology.orchestra.run.smithi076.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T12:09:54.822 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:54 smithi076 ceph-mon[27582]: pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:54.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:54 smithi169 ceph-mon[32172]: pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:55.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:54 smithi160 ceph-mon[31705]: pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:56.420 INFO:teuthology.orchestra.run.smithi076.stdout:111669149714 2024-09-18T12:09:56.678 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:56 smithi076 ceph-mon[27582]: pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:56.678 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:56 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/1072230719' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-18T12:09:56.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:56 smithi169 ceph-mon[32172]: pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:56.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:56 smithi169 ceph-mon[32172]: from='client.? 172.21.15.76:0/1072230719' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-18T12:09:57.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:56 smithi160 ceph-mon[31705]: pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:57.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:56 smithi160 ceph-mon[31705]: from='client.? 172.21.15.76:0/1072230719' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-18T12:09:57.616 INFO:teuthology.orchestra.run.smithi076.stdout:55834574876 2024-09-18T12:09:57.900 INFO:teuthology.orchestra.run.smithi076.stdout:34359738400 2024-09-18T12:09:58.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:58 smithi076 ceph-mon[27582]: pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:58.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:58 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/4083438132' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-18T12:09:58.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:09:58 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/969955964' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-18T12:09:58.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:58 smithi169 ceph-mon[32172]: pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:58.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:58 smithi169 ceph-mon[32172]: from='client.? 172.21.15.76:0/4083438132' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-18T12:09:58.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:09:58 smithi169 ceph-mon[32172]: from='client.? 172.21.15.76:0/969955964' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-18T12:09:58.960 INFO:tasks.cephadm.ceph_manager.ceph:need seq 55834574873 got 55834574876 for osd.1 2024-09-18T12:09:58.960 DEBUG:teuthology.parallel:result is None 2024-09-18T12:09:59.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:58 smithi160 ceph-mon[31705]: pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:09:59.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:58 smithi160 ceph-mon[31705]: from='client.? 172.21.15.76:0/4083438132' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-18T12:09:59.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:09:58 smithi160 ceph-mon[31705]: from='client.? 172.21.15.76:0/969955964' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-18T12:09:59.664 INFO:tasks.cephadm.ceph_manager.ceph:need seq 34359738396 got 34359738400 for osd.0 2024-09-18T12:09:59.664 DEBUG:teuthology.parallel:result is None 2024-09-18T12:10:00.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:00 smithi076 ceph-mon[27582]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:10:00.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:00 smithi076 ceph-mon[27582]: overall HEALTH_OK 2024-09-18T12:10:00.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:00 smithi169 ceph-mon[32172]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:10:00.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:00 smithi169 ceph-mon[32172]: overall HEALTH_OK 2024-09-18T12:10:01.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:00 smithi160 ceph-mon[31705]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:10:01.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:00 smithi160 ceph-mon[31705]: overall HEALTH_OK 2024-09-18T12:10:01.067 INFO:tasks.cephadm.ceph_manager.ceph:need seq 111669149712 got 111669149714 for osd.3 2024-09-18T12:10:01.068 DEBUG:teuthology.parallel:result is None 2024-09-18T12:10:01.430 INFO:teuthology.orchestra.run.smithi076.stdout:77309411352 2024-09-18T12:10:01.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:01 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/2357479522' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-18T12:10:01.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:01 smithi169 ceph-mon[32172]: from='client.? 172.21.15.76:0/2357479522' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-18T12:10:02.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:01 smithi160 ceph-mon[31705]: from='client.? 172.21.15.76:0/2357479522' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-18T12:10:02.204 INFO:teuthology.orchestra.run.smithi076.stdout:163208757258 2024-09-18T12:10:02.606 INFO:tasks.cephadm.ceph_manager.ceph:need seq 77309411349 got 77309411352 for osd.2 2024-09-18T12:10:02.606 DEBUG:teuthology.parallel:result is None 2024-09-18T12:10:02.845 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:02 smithi076 ceph-mon[27582]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:10:02.846 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:02 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/3172099983' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-18T12:10:02.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:02 smithi169 ceph-mon[32172]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:10:02.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:02 smithi169 ceph-mon[32172]: from='client.? 172.21.15.76:0/3172099983' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-18T12:10:02.957 INFO:teuthology.orchestra.run.smithi076.stdout:137438953487 2024-09-18T12:10:03.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:02 smithi160 ceph-mon[31705]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:10:03.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:02 smithi160 ceph-mon[31705]: from='client.? 172.21.15.76:0/3172099983' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-18T12:10:03.738 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:03 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/3911296935' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-18T12:10:03.763 INFO:tasks.cephadm.ceph_manager.ceph:need seq 163208757256 got 163208757258 for osd.5 2024-09-18T12:10:03.763 DEBUG:teuthology.parallel:result is None 2024-09-18T12:10:03.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:03 smithi169 ceph-mon[32172]: from='client.? 172.21.15.76:0/3911296935' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-18T12:10:04.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:03 smithi160 ceph-mon[31705]: from='client.? 172.21.15.76:0/3911296935' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-18T12:10:04.231 INFO:tasks.cephadm.ceph_manager.ceph:need seq 137438953484 got 137438953487 for osd.4 2024-09-18T12:10:04.232 DEBUG:teuthology.parallel:result is None 2024-09-18T12:10:04.232 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-09-18T12:10:04.232 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph pg dump --format=json 2024-09-18T12:10:04.473 INFO:teuthology.orchestra.run.smithi076.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T12:10:04.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:04 smithi169 ceph-mon[32172]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:10:04.943 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:04 smithi076 ceph-mon[27582]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:10:05.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:04 smithi160 ceph-mon[31705]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:10:06.202 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:10:06.202 INFO:teuthology.orchestra.run.smithi076.stderr:dumped all 2024-09-18T12:10:06.811 INFO:teuthology.orchestra.run.smithi076.stdout:{"pg_ready":true,"pg_map":{"version":153,"stamp":"2024-09-18T12:10:05.455219+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":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"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":92,"ondisk_log_size":92,"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":1787996,"kb_used_data":3836,"kb_used_omap":9,"kb_used_meta":1784054,"kb_avail":560682916,"statfs":{"total":575970213888,"available":574139305984,"internally_reserved":0,"allocated":3928064,"data_stored":2589876,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":10224,"internal_metadata":1826871312},"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.002315"},"pg_stats":[{"pgid":"1.0","version":"23'92","reported_seq":68,"reported_epoch":40,"state":"active+clean","last_fresh":"2024-09-18T12:09:24.562710+0000","last_change":"2024-09-18T12:09:24.562710+0000","last_active":"2024-09-18T12:09:24.562710+0000","last_peered":"2024-09-18T12:09:24.562710+0000","last_clean":"2024-09-18T12:09:24.562710+0000","last_became_active":"2024-09-18T12:09:24.558255+0000","last_became_peered":"2024-09-18T12:09:24.558255+0000","last_unstale":"2024-09-18T12:09:24.562710+0000","last_undegraded":"2024-09-18T12:09:24.562710+0000","last_fullsized":"2024-09-18T12:09:24.562710+0000","mapping_epoch":39,"log_start":"0'0","ondisk_log_start":"0'0","created":20,"last_epoch_clean":40,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-18T12:08:18.439854+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-18T12:08:18.439854+0000","last_clean_scrub_stamp":"2024-09-18T12:08:18.439854+0000","objects_scrubbed":0,"log_size":92,"log_dups_size":0,"ondisk_log_size":92,"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-19T12:44:54.632670+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":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"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":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":2969600,"data_stored":2951840,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":92,"ondisk_log_size":92,"up":3,"acting":3,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":38,"seq":163208757259,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":298284,"kb_used_data":928,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93446868,"statfs":{"total":95995035648,"available":95689592832,"internally_reserved":0,"allocated":950272,"data_stored":726725,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"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.46200000000000002}]},{"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.55100000000000005}]},{"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.59699999999999998}]},{"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.57099999999999995}]},{"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.38700000000000001}]}]},{"osd":4,"up_from":32,"seq":137438953487,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":297720,"kb_used_data":352,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93447432,"statfs":{"total":95995035648,"available":95690170368,"internally_reserved":0,"allocated":360448,"data_stored":136672,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"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":"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.33100000000000002}]},{"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.38700000000000001}]},{"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.40400000000000003}]},{"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.375}]},{"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.29599999999999999}]}]},{"osd":3,"up_from":26,"seq":111669149716,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":298296,"kb_used_data":928,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93446856,"statfs":{"total":95995035648,"available":95689580544,"internally_reserved":0,"allocated":950272,"data_stored":726725,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"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":"Wed Sep 18 12:09:44 2024","interfaces":[{"interface":"back","average":{"1min":0.47399999999999998,"5min":0.47399999999999998,"15min":0.47399999999999998},"min":{"1min":0.36299999999999999,"5min":0.36299999999999999,"15min":0.36299999999999999},"max":{"1min":0.63600000000000001,"5min":0.63600000000000001,"15min":0.63600000000000001},"last":0.46700000000000003},{"interface":"front","average":{"1min":0.49099999999999999,"5min":0.49099999999999999,"15min":0.49099999999999999},"min":{"1min":0.35399999999999998,"5min":0.35399999999999998,"15min":0.35399999999999998},"max":{"1min":0.747,"5min":0.747,"15min":0.747},"last":0.54600000000000004}]},{"osd":1,"last update":"Wed Sep 18 12:09:44 2024","interfaces":[{"interface":"back","average":{"1min":0.47599999999999998,"5min":0.47599999999999998,"15min":0.47599999999999998},"min":{"1min":0.34599999999999997,"5min":0.34599999999999997,"15min":0.34599999999999997},"max":{"1min":0.68700000000000006,"5min":0.68700000000000006,"15min":0.68700000000000006},"last":0.48599999999999999},{"interface":"front","average":{"1min":0.49099999999999999,"5min":0.49099999999999999,"15min":0.49099999999999999},"min":{"1min":0.36299999999999999,"5min":0.36299999999999999,"15min":0.36299999999999999},"max":{"1min":0.624,"5min":0.624,"15min":0.624},"last":0.53400000000000003}]},{"osd":2,"last update":"Wed Sep 18 12:09:44 2024","interfaces":[{"interface":"back","average":{"1min":0.35899999999999999,"5min":0.35899999999999999,"15min":0.35899999999999999},"min":{"1min":0.251,"5min":0.251,"15min":0.251},"max":{"1min":0.54100000000000004,"5min":0.54100000000000004,"15min":0.54100000000000004},"last":0.307},{"interface":"front","average":{"1min":0.373,"5min":0.373,"15min":0.373},"min":{"1min":0.27200000000000002,"5min":0.27200000000000002,"15min":0.27200000000000002},"max":{"1min":0.60999999999999999,"5min":0.60999999999999999,"15min":0.60999999999999999},"last":0.28699999999999998}]},{"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.39400000000000002}]},{"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.45500000000000002}]}]},{"osd":2,"up_from":18,"seq":77309411353,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":298284,"kb_used_data":928,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93446868,"statfs":{"total":95995035648,"available":95689592832,"internally_reserved":0,"allocated":950272,"data_stored":726725,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"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":"Wed Sep 18 12:09:17 2024","interfaces":[{"interface":"back","average":{"1min":0.48899999999999999,"5min":0.48899999999999999,"15min":0.48899999999999999},"min":{"1min":0.377,"5min":0.377,"15min":0.377},"max":{"1min":0.60399999999999998,"5min":0.60399999999999998,"15min":0.60399999999999998},"last":0.47199999999999998},{"interface":"front","average":{"1min":0.495,"5min":0.495,"15min":0.495},"min":{"1min":0.38500000000000001,"5min":0.38500000000000001,"15min":0.38500000000000001},"max":{"1min":0.69499999999999995,"5min":0.69499999999999995,"15min":0.69499999999999995},"last":0.48499999999999999}]},{"osd":1,"last update":"Wed Sep 18 12:09:17 2024","interfaces":[{"interface":"back","average":{"1min":0.48999999999999999,"5min":0.48999999999999999,"15min":0.48999999999999999},"min":{"1min":0.36499999999999999,"5min":0.36499999999999999,"15min":0.36499999999999999},"max":{"1min":0.622,"5min":0.622,"15min":0.622},"last":0.45100000000000001},{"interface":"front","average":{"1min":0.51300000000000001,"5min":0.51300000000000001,"15min":0.51300000000000001},"min":{"1min":0.35999999999999999,"5min":0.35999999999999999,"15min":0.35999999999999999},"max":{"1min":0.67300000000000004,"5min":0.67300000000000004,"15min":0.67300000000000004},"last":0.434}]},{"osd":3,"last update":"Wed Sep 18 12:09:44 2024","interfaces":[{"interface":"back","average":{"1min":0.371,"5min":0.371,"15min":0.371},"min":{"1min":0.25900000000000001,"5min":0.25900000000000001,"15min":0.25900000000000001},"max":{"1min":0.503,"5min":0.503,"15min":0.503},"last":0.502},{"interface":"front","average":{"1min":0.36399999999999999,"5min":0.36399999999999999,"15min":0.36399999999999999},"min":{"1min":0.27300000000000002,"5min":0.27300000000000002,"15min":0.27300000000000002},"max":{"1min":0.58099999999999996,"5min":0.58099999999999996,"15min":0.58099999999999996},"last":0.51400000000000001}]},{"osd":4,"last update":"Wed Sep 18 12:10:02 2024","interfaces":[{"interface":"back","average":{"1min":0.52700000000000002,"5min":0.52700000000000002,"15min":0.52700000000000002},"min":{"1min":0.41599999999999998,"5min":0.41599999999999998,"15min":0.41599999999999998},"max":{"1min":0.67900000000000005,"5min":0.67900000000000005,"15min":0.67900000000000005},"last":0.67900000000000005},{"interface":"front","average":{"1min":0.54700000000000004,"5min":0.54700000000000004,"15min":0.54700000000000004},"min":{"1min":0.42499999999999999,"5min":0.42499999999999999,"15min":0.42499999999999999},"max":{"1min":0.73199999999999998,"5min":0.73199999999999998,"15min":0.73199999999999998},"last":0.70899999999999996}]},{"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.64800000000000002}]}]},{"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":297704,"kb_used_data":348,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93447448,"statfs":{"total":95995035648,"available":95690186752,"internally_reserved":0,"allocated":356352,"data_stored":136357,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"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":"Wed Sep 18 12:09:01 2024","interfaces":[{"interface":"back","average":{"1min":0.29499999999999998,"5min":0.29499999999999998,"15min":0.29499999999999998},"min":{"1min":0.188,"5min":0.188,"15min":0.188},"max":{"1min":0.435,"5min":0.435,"15min":0.435},"last":0.245},{"interface":"front","average":{"1min":0.317,"5min":0.317,"15min":0.317},"min":{"1min":0.20300000000000001,"5min":0.20300000000000001,"15min":0.20300000000000001},"max":{"1min":0.45600000000000002,"5min":0.45600000000000002,"15min":0.45600000000000002},"last":0.28399999999999997}]},{"osd":2,"last update":"Wed Sep 18 12:09:18 2024","interfaces":[{"interface":"back","average":{"1min":0.48699999999999999,"5min":0.48699999999999999,"15min":0.48699999999999999},"min":{"1min":0.32200000000000001,"5min":0.32200000000000001,"15min":0.32200000000000001},"max":{"1min":0.65500000000000003,"5min":0.65500000000000003,"15min":0.65500000000000003},"last":0.51500000000000001},{"interface":"front","average":{"1min":0.52200000000000002,"5min":0.52200000000000002,"15min":0.52200000000000002},"min":{"1min":0.34399999999999997,"5min":0.34399999999999997,"15min":0.34399999999999997},"max":{"1min":0.70599999999999996,"5min":0.70599999999999996,"15min":0.70599999999999996},"last":0.45900000000000002}]},{"osd":3,"last update":"Wed Sep 18 12:09:43 2024","interfaces":[{"interface":"back","average":{"1min":0.56200000000000006,"5min":0.56200000000000006,"15min":0.56200000000000006},"min":{"1min":0.36499999999999999,"5min":0.36499999999999999,"15min":0.36499999999999999},"max":{"1min":0.73799999999999999,"5min":0.73799999999999999,"15min":0.73799999999999999},"last":0.49299999999999999},{"interface":"front","average":{"1min":0.52700000000000002,"5min":0.52700000000000002,"15min":0.52700000000000002},"min":{"1min":0.374,"5min":0.374,"15min":0.374},"max":{"1min":0.64000000000000001,"5min":0.64000000000000001,"15min":0.64000000000000001},"last":0.44}]},{"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.48199999999999998}]},{"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.50700000000000001}]}]},{"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":297708,"kb_used_data":352,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93447444,"statfs":{"total":95995035648,"available":95690182656,"internally_reserved":0,"allocated":360448,"data_stored":136672,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"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":"Wed Sep 18 12:09:00 2024","interfaces":[{"interface":"back","average":{"1min":0.29799999999999999,"5min":0.29799999999999999,"15min":0.29799999999999999},"min":{"1min":0.184,"5min":0.184,"15min":0.184},"max":{"1min":0.41099999999999998,"5min":0.41099999999999998,"15min":0.41099999999999998},"last":0.26200000000000001},{"interface":"front","average":{"1min":0.312,"5min":0.312,"15min":0.312},"min":{"1min":0.20000000000000001,"5min":0.20000000000000001,"15min":0.20000000000000001},"max":{"1min":0.42699999999999999,"5min":0.42699999999999999,"15min":0.42699999999999999},"last":0.30399999999999999}]},{"osd":2,"last update":"Wed Sep 18 12:09:17 2024","interfaces":[{"interface":"back","average":{"1min":0.50900000000000001,"5min":0.50900000000000001,"15min":0.50900000000000001},"min":{"1min":0.34399999999999997,"5min":0.34399999999999997,"15min":0.34399999999999997},"max":{"1min":0.68100000000000005,"5min":0.68100000000000005,"15min":0.68100000000000005},"last":0.45700000000000002},{"interface":"front","average":{"1min":0.47699999999999998,"5min":0.47699999999999998,"15min":0.47699999999999998},"min":{"1min":0.33400000000000002,"5min":0.33400000000000002,"15min":0.33400000000000002},"max":{"1min":0.67200000000000004,"5min":0.67200000000000004,"15min":0.67200000000000004},"last":0.47299999999999998}]},{"osd":3,"last update":"Wed Sep 18 12:09:42 2024","interfaces":[{"interface":"back","average":{"1min":0.52100000000000002,"5min":0.52100000000000002,"15min":0.52100000000000002},"min":{"1min":0.443,"5min":0.443,"15min":0.443},"max":{"1min":0.69799999999999995,"5min":0.69799999999999995,"15min":0.69799999999999995},"last":0.44500000000000001},{"interface":"front","average":{"1min":0.51900000000000002,"5min":0.51900000000000002,"15min":0.51900000000000002},"min":{"1min":0.40799999999999997,"5min":0.40799999999999997,"15min":0.40799999999999997},"max":{"1min":0.68799999999999994,"5min":0.68799999999999994,"15min":0.68799999999999994},"last":0.48599999999999999}]},{"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.55900000000000005}]},{"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.53000000000000003}]}]}],"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":0,"data_stored":0,"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-18T12:10:06.812 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph pg dump --format=json 2024-09-18T12:10:06.834 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:06 smithi076 ceph-mon[27582]: pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:10:06.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:06 smithi169 ceph-mon[32172]: pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:10:07.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:06 smithi160 ceph-mon[31705]: pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:10:07.048 INFO:teuthology.orchestra.run.smithi076.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T12:10:07.751 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:07 smithi076 ceph-mon[27582]: from='client.14460 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T12:10:07.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:07 smithi169 ceph-mon[32172]: from='client.14460 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T12:10:08.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:07 smithi160 ceph-mon[31705]: from='client.14460 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T12:10:08.721 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:10:08.721 INFO:teuthology.orchestra.run.smithi076.stderr:dumped all 2024-09-18T12:10:08.722 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:08 smithi076 ceph-mon[27582]: pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:10:08.842 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:08 smithi169 ceph-mon[32172]: pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:10:09.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:08 smithi160 ceph-mon[31705]: pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:10:09.324 INFO:teuthology.orchestra.run.smithi076.stdout:{"pg_ready":true,"pg_map":{"version":154,"stamp":"2024-09-18T12:10:07.455503+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":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"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":92,"ondisk_log_size":92,"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":1787996,"kb_used_data":3836,"kb_used_omap":9,"kb_used_meta":1784054,"kb_avail":560682916,"statfs":{"total":575970213888,"available":574139305984,"internally_reserved":0,"allocated":3928064,"data_stored":2589876,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":10224,"internal_metadata":1826871312},"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.002259"},"pg_stats":[{"pgid":"1.0","version":"23'92","reported_seq":68,"reported_epoch":40,"state":"active+clean","last_fresh":"2024-09-18T12:09:24.562710+0000","last_change":"2024-09-18T12:09:24.562710+0000","last_active":"2024-09-18T12:09:24.562710+0000","last_peered":"2024-09-18T12:09:24.562710+0000","last_clean":"2024-09-18T12:09:24.562710+0000","last_became_active":"2024-09-18T12:09:24.558255+0000","last_became_peered":"2024-09-18T12:09:24.558255+0000","last_unstale":"2024-09-18T12:09:24.562710+0000","last_undegraded":"2024-09-18T12:09:24.562710+0000","last_fullsized":"2024-09-18T12:09:24.562710+0000","mapping_epoch":39,"log_start":"0'0","ondisk_log_start":"0'0","created":20,"last_epoch_clean":40,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-18T12:08:18.439854+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-18T12:08:18.439854+0000","last_clean_scrub_stamp":"2024-09-18T12:08:18.439854+0000","objects_scrubbed":0,"log_size":92,"log_dups_size":0,"ondisk_log_size":92,"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-19T12:44:54.632670+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":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"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":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":2969600,"data_stored":2951840,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":92,"ondisk_log_size":92,"up":3,"acting":3,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":38,"seq":163208757259,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":298284,"kb_used_data":928,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93446868,"statfs":{"total":95995035648,"available":95689592832,"internally_reserved":0,"allocated":950272,"data_stored":726725,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"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.46200000000000002}]},{"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.55100000000000005}]},{"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.59699999999999998}]},{"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.57099999999999995}]},{"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.38700000000000001}]}]},{"osd":4,"up_from":32,"seq":137438953488,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":297720,"kb_used_data":352,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93447432,"statfs":{"total":95995035648,"available":95690170368,"internally_reserved":0,"allocated":360448,"data_stored":136672,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"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":"Wed Sep 18 12:10:02 2024","interfaces":[{"interface":"back","average":{"1min":0.46200000000000002,"5min":0.46200000000000002,"15min":0.46200000000000002},"min":{"1min":0.33000000000000002,"5min":0.33000000000000002,"15min":0.33000000000000002},"max":{"1min":0.622,"5min":0.622,"15min":0.622},"last":0.441},{"interface":"front","average":{"1min":0.44500000000000001,"5min":0.44500000000000001,"15min":0.44500000000000001},"min":{"1min":0.33600000000000002,"5min":0.33600000000000002,"15min":0.33600000000000002},"max":{"1min":0.63,"5min":0.63,"15min":0.63},"last":0.53200000000000003}]},{"osd":1,"last update":"Wed Sep 18 12:10:02 2024","interfaces":[{"interface":"back","average":{"1min":0.44800000000000001,"5min":0.44800000000000001,"15min":0.44800000000000001},"min":{"1min":0.33700000000000002,"5min":0.33700000000000002,"15min":0.33700000000000002},"max":{"1min":0.67500000000000004,"5min":0.67500000000000004,"15min":0.67500000000000004},"last":0.42799999999999999},{"interface":"front","average":{"1min":0.45800000000000002,"5min":0.45800000000000002,"15min":0.45800000000000002},"min":{"1min":0.32100000000000001,"5min":0.32100000000000001,"15min":0.32100000000000001},"max":{"1min":0.65200000000000002,"5min":0.65200000000000002,"15min":0.65200000000000002},"last":0.47299999999999998}]},{"osd":2,"last update":"Wed Sep 18 12:10:02 2024","interfaces":[{"interface":"back","average":{"1min":0.501,"5min":0.501,"15min":0.501},"min":{"1min":0.36799999999999999,"5min":0.36799999999999999,"15min":0.36799999999999999},"max":{"1min":0.61099999999999999,"5min":0.61099999999999999,"15min":0.61099999999999999},"last":0.46200000000000002},{"interface":"front","average":{"1min":0.51800000000000002,"5min":0.51800000000000002,"15min":0.51800000000000002},"min":{"1min":0.40500000000000003,"5min":0.40500000000000003,"15min":0.40500000000000003},"max":{"1min":0.59899999999999998,"5min":0.59899999999999998,"15min":0.59899999999999998},"last":0.48999999999999999}]},{"osd":3,"last update":"Wed Sep 18 12:10:02 2024","interfaces":[{"interface":"back","average":{"1min":0.496,"5min":0.496,"15min":0.496},"min":{"1min":0.375,"5min":0.375,"15min":0.375},"max":{"1min":0.60999999999999999,"5min":0.60999999999999999,"15min":0.60999999999999999},"last":0.52000000000000002},{"interface":"front","average":{"1min":0.51000000000000001,"5min":0.51000000000000001,"15min":0.51000000000000001},"min":{"1min":0.39500000000000002,"5min":0.39500000000000002,"15min":0.39500000000000002},"max":{"1min":0.64100000000000001,"5min":0.64100000000000001,"15min":0.64100000000000001},"last":0.50800000000000001}]},{"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.29399999999999998}]}]},{"osd":3,"up_from":26,"seq":111669149716,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":298296,"kb_used_data":928,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93446856,"statfs":{"total":95995035648,"available":95689580544,"internally_reserved":0,"allocated":950272,"data_stored":726725,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"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":"Wed Sep 18 12:09:44 2024","interfaces":[{"interface":"back","average":{"1min":0.47399999999999998,"5min":0.47399999999999998,"15min":0.47399999999999998},"min":{"1min":0.36299999999999999,"5min":0.36299999999999999,"15min":0.36299999999999999},"max":{"1min":0.63600000000000001,"5min":0.63600000000000001,"15min":0.63600000000000001},"last":0.46700000000000003},{"interface":"front","average":{"1min":0.49099999999999999,"5min":0.49099999999999999,"15min":0.49099999999999999},"min":{"1min":0.35399999999999998,"5min":0.35399999999999998,"15min":0.35399999999999998},"max":{"1min":0.747,"5min":0.747,"15min":0.747},"last":0.54600000000000004}]},{"osd":1,"last update":"Wed Sep 18 12:09:44 2024","interfaces":[{"interface":"back","average":{"1min":0.47599999999999998,"5min":0.47599999999999998,"15min":0.47599999999999998},"min":{"1min":0.34599999999999997,"5min":0.34599999999999997,"15min":0.34599999999999997},"max":{"1min":0.68700000000000006,"5min":0.68700000000000006,"15min":0.68700000000000006},"last":0.48599999999999999},{"interface":"front","average":{"1min":0.49099999999999999,"5min":0.49099999999999999,"15min":0.49099999999999999},"min":{"1min":0.36299999999999999,"5min":0.36299999999999999,"15min":0.36299999999999999},"max":{"1min":0.624,"5min":0.624,"15min":0.624},"last":0.53400000000000003}]},{"osd":2,"last update":"Wed Sep 18 12:09:44 2024","interfaces":[{"interface":"back","average":{"1min":0.35899999999999999,"5min":0.35899999999999999,"15min":0.35899999999999999},"min":{"1min":0.251,"5min":0.251,"15min":0.251},"max":{"1min":0.54100000000000004,"5min":0.54100000000000004,"15min":0.54100000000000004},"last":0.307},{"interface":"front","average":{"1min":0.373,"5min":0.373,"15min":0.373},"min":{"1min":0.27200000000000002,"5min":0.27200000000000002,"15min":0.27200000000000002},"max":{"1min":0.60999999999999999,"5min":0.60999999999999999,"15min":0.60999999999999999},"last":0.28699999999999998}]},{"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.39400000000000002}]},{"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.45500000000000002}]}]},{"osd":2,"up_from":18,"seq":77309411354,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":298284,"kb_used_data":928,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93446868,"statfs":{"total":95995035648,"available":95689592832,"internally_reserved":0,"allocated":950272,"data_stored":726725,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"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":"Wed Sep 18 12:09:17 2024","interfaces":[{"interface":"back","average":{"1min":0.48899999999999999,"5min":0.48899999999999999,"15min":0.48899999999999999},"min":{"1min":0.377,"5min":0.377,"15min":0.377},"max":{"1min":0.60399999999999998,"5min":0.60399999999999998,"15min":0.60399999999999998},"last":0.40000000000000002},{"interface":"front","average":{"1min":0.495,"5min":0.495,"15min":0.495},"min":{"1min":0.38500000000000001,"5min":0.38500000000000001,"15min":0.38500000000000001},"max":{"1min":0.69499999999999995,"5min":0.69499999999999995,"15min":0.69499999999999995},"last":0.46300000000000002}]},{"osd":1,"last update":"Wed Sep 18 12:09:17 2024","interfaces":[{"interface":"back","average":{"1min":0.48999999999999999,"5min":0.48999999999999999,"15min":0.48999999999999999},"min":{"1min":0.36499999999999999,"5min":0.36499999999999999,"15min":0.36499999999999999},"max":{"1min":0.622,"5min":0.622,"15min":0.622},"last":0.441},{"interface":"front","average":{"1min":0.51300000000000001,"5min":0.51300000000000001,"15min":0.51300000000000001},"min":{"1min":0.35999999999999999,"5min":0.35999999999999999,"15min":0.35999999999999999},"max":{"1min":0.67300000000000004,"5min":0.67300000000000004,"15min":0.67300000000000004},"last":0.43099999999999999}]},{"osd":3,"last update":"Wed Sep 18 12:09:44 2024","interfaces":[{"interface":"back","average":{"1min":0.371,"5min":0.371,"15min":0.371},"min":{"1min":0.25900000000000001,"5min":0.25900000000000001,"15min":0.25900000000000001},"max":{"1min":0.503,"5min":0.503,"15min":0.503},"last":0.50600000000000001},{"interface":"front","average":{"1min":0.36399999999999999,"5min":0.36399999999999999,"15min":0.36399999999999999},"min":{"1min":0.27300000000000002,"5min":0.27300000000000002,"15min":0.27300000000000002},"max":{"1min":0.58099999999999996,"5min":0.58099999999999996,"15min":0.58099999999999996},"last":0.48799999999999999}]},{"osd":4,"last update":"Wed Sep 18 12:10:02 2024","interfaces":[{"interface":"back","average":{"1min":0.52700000000000002,"5min":0.52700000000000002,"15min":0.52700000000000002},"min":{"1min":0.41599999999999998,"5min":0.41599999999999998,"15min":0.41599999999999998},"max":{"1min":0.67900000000000005,"5min":0.67900000000000005,"15min":0.67900000000000005},"last":0.71699999999999997},{"interface":"front","average":{"1min":0.54700000000000004,"5min":0.54700000000000004,"15min":0.54700000000000004},"min":{"1min":0.42499999999999999,"5min":0.42499999999999999,"15min":0.42499999999999999},"max":{"1min":0.73199999999999998,"5min":0.73199999999999998,"15min":0.73199999999999998},"last":0.79800000000000004}]},{"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.77100000000000002}]}]},{"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":297704,"kb_used_data":348,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93447448,"statfs":{"total":95995035648,"available":95690186752,"internally_reserved":0,"allocated":356352,"data_stored":136357,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"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":"Wed Sep 18 12:10:03 2024","interfaces":[{"interface":"back","average":{"1min":0.28399999999999997,"5min":0.29199999999999998,"15min":0.29399999999999998},"min":{"1min":0.154,"5min":0.154,"15min":0.154},"max":{"1min":0.40400000000000003,"5min":0.435,"15min":0.435},"last":0.23100000000000001},{"interface":"front","average":{"1min":0.30199999999999999,"5min":0.314,"15min":0.316},"min":{"1min":0.184,"5min":0.184,"15min":0.184},"max":{"1min":0.41999999999999998,"5min":0.45600000000000002,"15min":0.45600000000000002},"last":0.253}]},{"osd":2,"last update":"Wed Sep 18 12:09:18 2024","interfaces":[{"interface":"back","average":{"1min":0.48699999999999999,"5min":0.48699999999999999,"15min":0.48699999999999999},"min":{"1min":0.32200000000000001,"5min":0.32200000000000001,"15min":0.32200000000000001},"max":{"1min":0.65500000000000003,"5min":0.65500000000000003,"15min":0.65500000000000003},"last":0.38300000000000001},{"interface":"front","average":{"1min":0.52200000000000002,"5min":0.52200000000000002,"15min":0.52200000000000002},"min":{"1min":0.34399999999999997,"5min":0.34399999999999997,"15min":0.34399999999999997},"max":{"1min":0.70599999999999996,"5min":0.70599999999999996,"15min":0.70599999999999996},"last":0.40500000000000003}]},{"osd":3,"last update":"Wed Sep 18 12:09:43 2024","interfaces":[{"interface":"back","average":{"1min":0.56200000000000006,"5min":0.56200000000000006,"15min":0.56200000000000006},"min":{"1min":0.36499999999999999,"5min":0.36499999999999999,"15min":0.36499999999999999},"max":{"1min":0.73799999999999999,"5min":0.73799999999999999,"15min":0.73799999999999999},"last":0.375},{"interface":"front","average":{"1min":0.52700000000000002,"5min":0.52700000000000002,"15min":0.52700000000000002},"min":{"1min":0.374,"5min":0.374,"15min":0.374},"max":{"1min":0.64000000000000001,"5min":0.64000000000000001,"15min":0.64000000000000001},"last":0.39400000000000002}]},{"osd":4,"last update":"Wed Sep 18 12:10:03 2024","interfaces":[{"interface":"back","average":{"1min":0.54100000000000004,"5min":0.54100000000000004,"15min":0.54100000000000004},"min":{"1min":0.30099999999999999,"5min":0.30099999999999999,"15min":0.30099999999999999},"max":{"1min":0.82699999999999996,"5min":0.82699999999999996,"15min":0.82699999999999996},"last":0.57199999999999995},{"interface":"front","average":{"1min":0.53800000000000003,"5min":0.53800000000000003,"15min":0.53800000000000003},"min":{"1min":0.36799999999999999,"5min":0.36799999999999999,"15min":0.36799999999999999},"max":{"1min":0.74399999999999999,"5min":0.74399999999999999,"15min":0.74399999999999999},"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.504}]}]},{"osd":0,"up_from":8,"seq":34359738402,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":297708,"kb_used_data":352,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93447444,"statfs":{"total":95995035648,"available":95690182656,"internally_reserved":0,"allocated":360448,"data_stored":136672,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"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":"Wed Sep 18 12:10:02 2024","interfaces":[{"interface":"back","average":{"1min":0.317,"5min":0.30099999999999999,"15min":0.29899999999999999},"min":{"1min":0.218,"5min":0.184,"15min":0.184},"max":{"1min":0.52400000000000002,"5min":0.52400000000000002,"15min":0.52400000000000002},"last":0.23499999999999999},{"interface":"front","average":{"1min":0.33300000000000002,"5min":0.316,"15min":0.313},"min":{"1min":0.20699999999999999,"5min":0.20000000000000001,"15min":0.20000000000000001},"max":{"1min":0.51000000000000001,"5min":0.51000000000000001,"15min":0.51000000000000001},"last":0.219}]},{"osd":2,"last update":"Wed Sep 18 12:09:17 2024","interfaces":[{"interface":"back","average":{"1min":0.50900000000000001,"5min":0.50900000000000001,"15min":0.50900000000000001},"min":{"1min":0.34399999999999997,"5min":0.34399999999999997,"15min":0.34399999999999997},"max":{"1min":0.68100000000000005,"5min":0.68100000000000005,"15min":0.68100000000000005},"last":0.55300000000000005},{"interface":"front","average":{"1min":0.47699999999999998,"5min":0.47699999999999998,"15min":0.47699999999999998},"min":{"1min":0.33400000000000002,"5min":0.33400000000000002,"15min":0.33400000000000002},"max":{"1min":0.67200000000000004,"5min":0.67200000000000004,"15min":0.67200000000000004},"last":0.51000000000000001}]},{"osd":3,"last update":"Wed Sep 18 12:09:42 2024","interfaces":[{"interface":"back","average":{"1min":0.52100000000000002,"5min":0.52100000000000002,"15min":0.52100000000000002},"min":{"1min":0.443,"5min":0.443,"15min":0.443},"max":{"1min":0.69799999999999995,"5min":0.69799999999999995,"15min":0.69799999999999995},"last":0.54400000000000004},{"interface":"front","average":{"1min":0.51900000000000002,"5min":0.51900000000000002,"15min":0.51900000000000002},"min":{"1min":0.40799999999999997,"5min":0.40799999999999997,"15min":0.40799999999999997},"max":{"1min":0.68799999999999994,"5min":0.68799999999999994,"15min":0.68799999999999994},"last":0.46899999999999997}]},{"osd":4,"last update":"Wed Sep 18 12:10:02 2024","interfaces":[{"interface":"back","average":{"1min":0.505,"5min":0.505,"15min":0.505},"min":{"1min":0.371,"5min":0.371,"15min":0.371},"max":{"1min":0.59299999999999997,"5min":0.59299999999999997,"15min":0.59299999999999997},"last":0.51800000000000002},{"interface":"front","average":{"1min":0.505,"5min":0.505,"15min":0.505},"min":{"1min":0.34699999999999998,"5min":0.34699999999999998,"15min":0.34699999999999998},"max":{"1min":0.73799999999999999,"5min":0.73799999999999999,"15min":0.73799999999999999},"last":0.47399999999999998}]},{"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.49399999999999999}]}]}],"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":0,"data_stored":0,"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-18T12:10:09.325 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-09-18T12:10:09.325 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-09-18T12:10:09.325 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-09-18T12:10:09.325 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- ceph health --format=json 2024-09-18T12:10:09.603 INFO:teuthology.orchestra.run.smithi076.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T12:10:09.842 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:09 smithi076 ceph-mon[27582]: from='client.14466 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T12:10:09.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:09 smithi169 ceph-mon[32172]: from='client.14466 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T12:10:10.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:09 smithi160 ceph-mon[31705]: from='client.14466 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T12:10:10.739 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:10 smithi076 ceph-mon[27582]: pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:10:10.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:10 smithi169 ceph-mon[32172]: pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:10:11.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:10 smithi160 ceph-mon[31705]: pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:10:11.385 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-09-18T12:10:11.385 INFO:teuthology.orchestra.run.smithi076.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-09-18T12:10:11.822 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:11 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/19593051' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-18T12:10:11.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:11 smithi169 ceph-mon[32172]: from='client.? 172.21.15.76:0/19593051' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-18T12:10:12.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:11 smithi160 ceph-mon[31705]: from='client.? 172.21.15.76:0/19593051' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-18T12:10:12.205 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-09-18T12:10:12.205 INFO:tasks.cephadm:Setup complete, yielding 2024-09-18T12:10:12.205 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-18T12:10:12.217 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi076.front.sepia.ceph.com 2024-09-18T12:10:12.218 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 -- bash -c 'set -ex 2024-09-18T12:10:12.218 DEBUG:teuthology.orchestra.run.smithi076:> HOSTNAMES=$(ceph orch host ls --format json | jq -r '"'"'.[] | .hostname'"'"') 2024-09-18T12:10:12.218 DEBUG:teuthology.orchestra.run.smithi076:> for host in $HOSTNAMES; do 2024-09-18T12:10:12.218 DEBUG:teuthology.orchestra.run.smithi076:> # find the hostname for "host.c" which will have no mgr 2024-09-18T12:10:12.218 DEBUG:teuthology.orchestra.run.smithi076:> HAS_MGRS=$(ceph orch ps --hostname ${host} --format json | jq '"'"'any(.daemon_type == "mgr")'"'"') 2024-09-18T12:10:12.218 DEBUG:teuthology.orchestra.run.smithi076:> if [ "$HAS_MGRS" == "false" ]; then 2024-09-18T12:10:12.218 DEBUG:teuthology.orchestra.run.smithi076:> HOST_C="${host}" 2024-09-18T12:10:12.218 DEBUG:teuthology.orchestra.run.smithi076:> fi 2024-09-18T12:10:12.219 DEBUG:teuthology.orchestra.run.smithi076:> done 2024-09-18T12:10:12.219 DEBUG:teuthology.orchestra.run.smithi076:> # now drain that host 2024-09-18T12:10:12.219 DEBUG:teuthology.orchestra.run.smithi076:> ceph orch host drain $HOST_C --zap-osd-devices 2024-09-18T12:10:12.219 DEBUG:teuthology.orchestra.run.smithi076:> # wait for drain to complete 2024-09-18T12:10:12.219 DEBUG:teuthology.orchestra.run.smithi076:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-09-18T12:10:12.219 DEBUG:teuthology.orchestra.run.smithi076:> while [ "$HOST_C_DAEMONS" != "No daemons reported" ]; do 2024-09-18T12:10:12.219 DEBUG:teuthology.orchestra.run.smithi076:> sleep 15 2024-09-18T12:10:12.219 DEBUG:teuthology.orchestra.run.smithi076:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-09-18T12:10:12.219 DEBUG:teuthology.orchestra.run.smithi076:> done 2024-09-18T12:10:12.219 DEBUG:teuthology.orchestra.run.smithi076:> # we want to check the ability to remove the host from 2024-09-18T12:10:12.219 DEBUG:teuthology.orchestra.run.smithi076:> # the CRUSH map, so we should first verify the host is in 2024-09-18T12:10:12.219 DEBUG:teuthology.orchestra.run.smithi076:> # the CRUSH map. 2024-09-18T12:10:12.219 DEBUG:teuthology.orchestra.run.smithi076:> ceph osd getcrushmap -o compiled-crushmap 2024-09-18T12:10:12.220 DEBUG:teuthology.orchestra.run.smithi076:> crushtool -d compiled-crushmap -o crushmap.txt 2024-09-18T12:10:12.220 DEBUG:teuthology.orchestra.run.smithi076:> CRUSH_MAP=$(cat crushmap.txt) 2024-09-18T12:10:12.220 DEBUG:teuthology.orchestra.run.smithi076:> if ! grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-09-18T12:10:12.220 DEBUG:teuthology.orchestra.run.smithi076:> printf "Expected to see $HOST_C in CRUSH map. Saw:\n\n$CRUSH_MAP" 2024-09-18T12:10:12.220 DEBUG:teuthology.orchestra.run.smithi076:> exit 1 2024-09-18T12:10:12.220 DEBUG:teuthology.orchestra.run.smithi076:> fi 2024-09-18T12:10:12.220 DEBUG:teuthology.orchestra.run.smithi076:> # If the drain was successful, we should be able to remove the 2024-09-18T12:10:12.220 DEBUG:teuthology.orchestra.run.smithi076:> # host without force with no issues. If there are still daemons 2024-09-18T12:10:12.220 DEBUG:teuthology.orchestra.run.smithi076:> # we will get a response telling us to drain the host and a 2024-09-18T12:10:12.220 DEBUG:teuthology.orchestra.run.smithi076:> # non-zero return code 2024-09-18T12:10:12.220 DEBUG:teuthology.orchestra.run.smithi076:> ceph orch host rm $HOST_C --rm-crush-entry 2024-09-18T12:10:12.220 DEBUG:teuthology.orchestra.run.smithi076:> # verify we'"'"'ve successfully removed the host from the CRUSH map 2024-09-18T12:10:12.220 DEBUG:teuthology.orchestra.run.smithi076:> sleep 30 2024-09-18T12:10:12.220 DEBUG:teuthology.orchestra.run.smithi076:> ceph osd getcrushmap -o compiled-crushmap 2024-09-18T12:10:12.221 DEBUG:teuthology.orchestra.run.smithi076:> crushtool -d compiled-crushmap -o crushmap.txt 2024-09-18T12:10:12.221 DEBUG:teuthology.orchestra.run.smithi076:> CRUSH_MAP=$(cat crushmap.txt) 2024-09-18T12:10:12.221 DEBUG:teuthology.orchestra.run.smithi076:> if grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-09-18T12:10:12.221 DEBUG:teuthology.orchestra.run.smithi076:> printf "Saw $HOST_C in CRUSH map after it should have been removed.\n\n$CRUSH_MAP" 2024-09-18T12:10:12.221 DEBUG:teuthology.orchestra.run.smithi076:> exit 1 2024-09-18T12:10:12.221 DEBUG:teuthology.orchestra.run.smithi076:> fi 2024-09-18T12:10:12.221 DEBUG:teuthology.orchestra.run.smithi076:> ' 2024-09-18T12:10:12.462 INFO:teuthology.orchestra.run.smithi076.stderr:Inferring config /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T12:10:12.907 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:12 smithi076 ceph-mon[27582]: pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:10:12.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:12 smithi169 ceph-mon[32172]: pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:10:13.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:12 smithi160 ceph-mon[31705]: pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:10:14.047 INFO:teuthology.orchestra.run.smithi076.stderr:++ ceph orch host ls --format json 2024-09-18T12:10:14.047 INFO:teuthology.orchestra.run.smithi076.stderr:++ jq -r '.[] | .hostname' 2024-09-18T12:10:14.211 INFO:teuthology.orchestra.run.smithi076.stderr:+ HOSTNAMES='smithi076 2024-09-18T12:10:14.211 INFO:teuthology.orchestra.run.smithi076.stderr:smithi160 2024-09-18T12:10:14.211 INFO:teuthology.orchestra.run.smithi076.stderr:smithi169' 2024-09-18T12:10:14.212 INFO:teuthology.orchestra.run.smithi076.stderr:+ for host in $HOSTNAMES 2024-09-18T12:10:14.212 INFO:teuthology.orchestra.run.smithi076.stderr:++ ceph orch ps --hostname smithi076 --format json 2024-09-18T12:10:14.212 INFO:teuthology.orchestra.run.smithi076.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-18T12:10:14.464 INFO:teuthology.orchestra.run.smithi076.stderr:+ HAS_MGRS=true 2024-09-18T12:10:14.465 INFO:teuthology.orchestra.run.smithi076.stderr:+ '[' true == false ']' 2024-09-18T12:10:14.465 INFO:teuthology.orchestra.run.smithi076.stderr:+ for host in $HOSTNAMES 2024-09-18T12:10:14.465 INFO:teuthology.orchestra.run.smithi076.stderr:++ ceph orch ps --hostname smithi160 --format json 2024-09-18T12:10:14.465 INFO:teuthology.orchestra.run.smithi076.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-18T12:10:14.718 INFO:teuthology.orchestra.run.smithi076.stderr:+ HAS_MGRS=true 2024-09-18T12:10:14.718 INFO:teuthology.orchestra.run.smithi076.stderr:+ '[' true == false ']' 2024-09-18T12:10:14.718 INFO:teuthology.orchestra.run.smithi076.stderr:+ for host in $HOSTNAMES 2024-09-18T12:10:14.718 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:14 smithi076 ceph-mon[27582]: pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:10:14.719 INFO:teuthology.orchestra.run.smithi076.stderr:++ ceph orch ps --hostname smithi169 --format json 2024-09-18T12:10:14.719 INFO:teuthology.orchestra.run.smithi076.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-18T12:10:14.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:14 smithi169 ceph-mon[32172]: pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:10:14.973 INFO:teuthology.orchestra.run.smithi076.stderr:+ HAS_MGRS=false 2024-09-18T12:10:14.973 INFO:teuthology.orchestra.run.smithi076.stderr:+ '[' false == false ']' 2024-09-18T12:10:14.973 INFO:teuthology.orchestra.run.smithi076.stderr:+ HOST_C=smithi169 2024-09-18T12:10:14.974 INFO:teuthology.orchestra.run.smithi076.stderr:+ ceph orch host drain smithi169 --zap-osd-devices 2024-09-18T12:10:15.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:14 smithi160 ceph-mon[31705]: pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:10:15.224 INFO:teuthology.orchestra.run.smithi076.stdout:Scheduled to remove the following daemons from host 'smithi169' 2024-09-18T12:10:15.224 INFO:teuthology.orchestra.run.smithi076.stdout:type id 2024-09-18T12:10:15.224 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------- --------------- 2024-09-18T12:10:15.224 INFO:teuthology.orchestra.run.smithi076.stdout:mon c 2024-09-18T12:10:15.224 INFO:teuthology.orchestra.run.smithi076.stdout:osd 4 2024-09-18T12:10:15.224 INFO:teuthology.orchestra.run.smithi076.stdout:osd 5 2024-09-18T12:10:15.236 INFO:teuthology.orchestra.run.smithi076.stderr:++ ceph orch ps --hostname smithi169 2024-09-18T12:10:15.492 INFO:teuthology.orchestra.run.smithi076.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-18T12:10:15.492 INFO:teuthology.orchestra.run.smithi076.stderr:mon.c smithi169 running (3m) 55s ago 3m 36.6M 2048M 17.2.7-1645-g7061ea6c f2dfd3bedcfd cbaa05a3bc80 2024-09-18T12:10:15.492 INFO:teuthology.orchestra.run.smithi076.stderr:osd.4 smithi169 running (81s) 55s ago 80s 29.4M 10.3G 17.2.7-1645-g7061ea6c f2dfd3bedcfd 70ef0c1e727e 2024-09-18T12:10:15.492 INFO:teuthology.orchestra.run.smithi076.stderr:osd.5 smithi169 running (58s) 55s ago 58s 12.7M 10.3G 17.2.7-1645-g7061ea6c f2dfd3bedcfd 1355477a7cb9 ' 2024-09-18T12:10:15.492 INFO:teuthology.orchestra.run.smithi076.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-18T12:10:15.492 INFO:teuthology.orchestra.run.smithi076.stderr:mon.c smithi169 running (3m) 55s ago 3m 36.6M 2048M 17.2.7-1645-g7061ea6c f2dfd3bedcfd cbaa05a3bc80 2024-09-18T12:10:15.493 INFO:teuthology.orchestra.run.smithi076.stderr:osd.4 smithi169 running (81s) 55s ago 80s 29.4M 10.3G 17.2.7-1645-g7061ea6c f2dfd3bedcfd 70ef0c1e727e 2024-09-18T12:10:15.493 INFO:teuthology.orchestra.run.smithi076.stderr:osd.5 smithi169 running (58s) 55s ago 58s 12.7M 10.3G 17.2.7-1645-g7061ea6c f2dfd3bedcfd 1355477a7cb9 ' '!=' 'No daemons reported' ']' 2024-09-18T12:10:15.493 INFO:teuthology.orchestra.run.smithi076.stderr:+ sleep 15 2024-09-18T12:10:15.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:15 smithi076 ceph-mon[27582]: from='client.14478 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T12:10:15.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:15 smithi076 ceph-mon[27582]: from='client.14484 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi076", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T12:10:15.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:15 smithi076 ceph-mon[27582]: from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi160", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T12:10:15.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:15 smithi076 ceph-mon[27582]: from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi169", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T12:10:15.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:15 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:15.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:15 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:10:15.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:15 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:15.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:15 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-18T12:10:15.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:15 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-18T12:10:15.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:15 smithi169 ceph-mon[32172]: from='client.14478 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T12:10:15.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:15 smithi169 ceph-mon[32172]: from='client.14484 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi076", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T12:10:15.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:15 smithi169 ceph-mon[32172]: from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi160", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T12:10:15.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:15 smithi169 ceph-mon[32172]: from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi169", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T12:10:15.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:15 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:15.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:15 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:10:15.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:15 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:15.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:15 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-18T12:10:15.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:15 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-18T12:10:16.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:15 smithi160 ceph-mon[31705]: from='client.14478 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T12:10:16.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:15 smithi160 ceph-mon[31705]: from='client.14484 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi076", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T12:10:16.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:15 smithi160 ceph-mon[31705]: from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi160", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T12:10:16.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:15 smithi160 ceph-mon[31705]: from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi169", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T12:10:16.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:15 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:16.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:15 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:10:16.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:15 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:16.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:15 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-18T12:10:16.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:15 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-18T12:10:16.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:16 smithi169 ceph-mon[32172]: from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi169", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:10:16.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:16 smithi169 ceph-mon[32172]: Added label _no_schedule to host smithi169 2024-09-18T12:10:16.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:16 smithi169 ceph-mon[32172]: Added label SpecialHostLabels.DRAIN_CONF_KEYRING to host smithi169 2024-09-18T12:10:16.941 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:16 smithi169 ceph-mon[32172]: osd.4 crush weight is 0.0872955322265625 2024-09-18T12:10:16.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:16 smithi169 ceph-mon[32172]: osd.5 crush weight is 0.0872955322265625 2024-09-18T12:10:16.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:16 smithi169 ceph-mon[32172]: pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:10:16.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:16 smithi169 ceph-mon[32172]: from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi169", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:10:16.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:16 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:10:16.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:16 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:10:16.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:16 smithi169 ceph-mon[32172]: Removing smithi169:/var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T12:10:16.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:16 smithi169 ceph-mon[32172]: Removing smithi169:/etc/ceph/ceph.client.admin.keyring 2024-09-18T12:10:16.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:16 smithi169 ceph-mon[32172]: Removing smithi169:/var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-18T12:10:16.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:16 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:16.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:16 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:16.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:16 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T12:10:16.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:16 smithi169 ceph-mon[32172]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T12:10:16.942 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:16 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T12:10:16.943 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:16 smithi169 ceph-mon[32172]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T12:10:16.943 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:16 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-18T12:10:16.943 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:16 smithi169 ceph-mon[32172]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-18T12:10:16.943 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:16 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-09-18T12:10:17.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:16 smithi160 ceph-mon[31705]: from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi169", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:10:17.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:16 smithi160 ceph-mon[31705]: Added label _no_schedule to host smithi169 2024-09-18T12:10:17.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:16 smithi160 ceph-mon[31705]: Added label SpecialHostLabels.DRAIN_CONF_KEYRING to host smithi169 2024-09-18T12:10:17.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:16 smithi160 ceph-mon[31705]: osd.4 crush weight is 0.0872955322265625 2024-09-18T12:10:17.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:16 smithi160 ceph-mon[31705]: osd.5 crush weight is 0.0872955322265625 2024-09-18T12:10:17.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:16 smithi160 ceph-mon[31705]: pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:10:17.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:16 smithi160 ceph-mon[31705]: from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi169", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:10:17.010 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:16 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:10:17.010 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:16 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:10:17.010 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:16 smithi160 ceph-mon[31705]: Removing smithi169:/var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T12:10:17.010 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:16 smithi160 ceph-mon[31705]: Removing smithi169:/etc/ceph/ceph.client.admin.keyring 2024-09-18T12:10:17.010 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:16 smithi160 ceph-mon[31705]: Removing smithi169:/var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-18T12:10:17.010 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:16 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:17.010 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:16 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:17.010 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:16 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T12:10:17.010 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:16 smithi160 ceph-mon[31705]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T12:10:17.010 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:16 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T12:10:17.010 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:16 smithi160 ceph-mon[31705]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T12:10:17.012 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:16 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-18T12:10:17.012 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:16 smithi160 ceph-mon[31705]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-18T12:10:17.012 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:16 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-09-18T12:10:17.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:16 smithi076 ceph-mon[27582]: from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi169", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:10:17.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:16 smithi076 ceph-mon[27582]: Added label _no_schedule to host smithi169 2024-09-18T12:10:17.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:16 smithi076 ceph-mon[27582]: Added label SpecialHostLabels.DRAIN_CONF_KEYRING to host smithi169 2024-09-18T12:10:17.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:16 smithi076 ceph-mon[27582]: osd.4 crush weight is 0.0872955322265625 2024-09-18T12:10:17.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:16 smithi076 ceph-mon[27582]: osd.5 crush weight is 0.0872955322265625 2024-09-18T12:10:17.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:16 smithi076 ceph-mon[27582]: pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:10:17.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:16 smithi076 ceph-mon[27582]: from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi169", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:10:17.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:16 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:10:17.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:16 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:10:17.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:16 smithi076 ceph-mon[27582]: Removing smithi169:/var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T12:10:17.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:16 smithi076 ceph-mon[27582]: Removing smithi169:/etc/ceph/ceph.client.admin.keyring 2024-09-18T12:10:17.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:16 smithi076 ceph-mon[27582]: Removing smithi169:/var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-18T12:10:17.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:16 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:17.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:16 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:17.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:16 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T12:10:17.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:16 smithi076 ceph-mon[27582]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T12:10:17.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:16 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T12:10:17.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:16 smithi076 ceph-mon[27582]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T12:10:17.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:16 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-18T12:10:17.074 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:16 smithi076 ceph-mon[27582]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-18T12:10:17.075 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:16 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-09-18T12:10:17.075 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:16 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mon-a[27578]: 2024-09-18T12:10:16.714+0000 7f6152a9f640 -1 mon.a@0(leader).osd e41 definitely_dead 0 2024-09-18T12:10:18.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:17 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-18T12:10:18.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:17 smithi160 ceph-mon[31705]: osdmap e41: 6 total, 6 up, 6 in 2024-09-18T12:10:18.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:17 smithi160 ceph-mon[31705]: osd.5 weight is now 0.0 2024-09-18T12:10:18.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:17 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T12:10:18.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:17 smithi160 ceph-mon[31705]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T12:10:18.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:17 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-18T12:10:18.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:17 smithi160 ceph-mon[31705]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-18T12:10:18.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:17 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-09-18T12:10:18.021 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:17 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-18T12:10:18.021 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:17 smithi169 ceph-mon[32172]: osdmap e41: 6 total, 6 up, 6 in 2024-09-18T12:10:18.021 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:17 smithi169 ceph-mon[32172]: osd.5 weight is now 0.0 2024-09-18T12:10:18.021 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:17 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T12:10:18.021 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:17 smithi169 ceph-mon[32172]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T12:10:18.022 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:17 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-18T12:10:18.022 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:17 smithi169 ceph-mon[32172]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-18T12:10:18.022 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:17 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-09-18T12:10:18.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:17 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-18T12:10:18.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:17 smithi076 ceph-mon[27582]: osdmap e41: 6 total, 6 up, 6 in 2024-09-18T12:10:18.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:17 smithi076 ceph-mon[27582]: osd.5 weight is now 0.0 2024-09-18T12:10:18.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:17 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T12:10:18.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:17 smithi076 ceph-mon[27582]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T12:10:18.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:17 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-18T12:10:18.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:17 smithi076 ceph-mon[27582]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-18T12:10:18.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:17 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-09-18T12:10:18.441 INFO:journalctl@ceph.osd.4.smithi169.stdout:Sep 18 12:10:18 smithi169 systemd[1]: Stopping Ceph osd.4 for 1afb0892-75b6-11ef-bceb-c7b262605968... 2024-09-18T12:10:18.441 INFO:journalctl@ceph.osd.4.smithi169.stdout:Sep 18 12:10:18 smithi169 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-4[36547]: 2024-09-18T12:10:18.246+0000 7f69a60a1640 -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-18T12:10:18.441 INFO:journalctl@ceph.osd.4.smithi169.stdout:Sep 18 12:10:18 smithi169 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-4[36547]: 2024-09-18T12:10:18.246+0000 7f69a60a1640 -1 osd.4 41 *** Got signal Terminated *** 2024-09-18T12:10:18.442 INFO:journalctl@ceph.osd.4.smithi169.stdout:Sep 18 12:10:18 smithi169 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-4[36547]: 2024-09-18T12:10:18.246+0000 7f69a60a1640 -1 osd.4 41 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-18T12:10:19.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:18 smithi160 ceph-mon[31705]: pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:10:19.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:18 smithi160 ceph-mon[31705]: Health check failed: 1 osds down (OSD_DOWN) 2024-09-18T12:10:19.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:18 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-18T12:10:19.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:18 smithi160 ceph-mon[31705]: osdmap e42: 6 total, 5 up, 6 in 2024-09-18T12:10:19.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:18 smithi160 ceph-mon[31705]: osd.4 now down 2024-09-18T12:10:19.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:18 smithi160 ceph-mon[31705]: Removing daemon osd.4 from smithi169 -- ports [] 2024-09-18T12:10:19.064 INFO:journalctl@ceph.osd.4.smithi169.stdout:Sep 18 12:10:18 smithi169 podman[45916]: 2024-09-18 12:10:18.768060108 +0000 UTC m=+0.606398961 container died 70ef0c1e727e426b589e9cc71906bb32dc5b0f668801ab525e21d62678a68490 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-4, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, maintainer=Guillaume Abrioux , ceph=True, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, GIT_CLEAN=True) 2024-09-18T12:10:19.064 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:18 smithi169 ceph-mon[32172]: pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:10:19.064 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:18 smithi169 ceph-mon[32172]: Health check failed: 1 osds down (OSD_DOWN) 2024-09-18T12:10:19.064 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:18 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-18T12:10:19.065 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:18 smithi169 ceph-mon[32172]: osdmap e42: 6 total, 5 up, 6 in 2024-09-18T12:10:19.065 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:18 smithi169 ceph-mon[32172]: osd.4 now down 2024-09-18T12:10:19.065 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:18 smithi169 ceph-mon[32172]: Removing daemon osd.4 from smithi169 -- ports [] 2024-09-18T12:10:19.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:18 smithi076 ceph-mon[27582]: pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:10:19.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:18 smithi076 ceph-mon[27582]: Health check failed: 1 osds down (OSD_DOWN) 2024-09-18T12:10:19.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:18 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-18T12:10:19.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:18 smithi076 ceph-mon[27582]: osdmap e42: 6 total, 5 up, 6 in 2024-09-18T12:10:19.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:18 smithi076 ceph-mon[27582]: osd.4 now down 2024-09-18T12:10:19.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:18 smithi076 ceph-mon[27582]: Removing daemon osd.4 from smithi169 -- ports [] 2024-09-18T12:10:19.441 INFO:journalctl@ceph.osd.4.smithi169.stdout:Sep 18 12:10:19 smithi169 podman[45916]: 2024-09-18 12:10:19.255200544 +0000 UTC m=+1.093539387 container cleanup 70ef0c1e727e426b589e9cc71906bb32dc5b0f668801ab525e21d62678a68490 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-4, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, org.label-schema.build-date=20240731, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True) 2024-09-18T12:10:19.441 INFO:journalctl@ceph.osd.4.smithi169.stdout:Sep 18 12:10:19 smithi169 bash[45916]: ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-4 2024-09-18T12:10:19.859 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:19 smithi169 ceph-mon[32172]: osdmap e43: 6 total, 5 up, 6 in 2024-09-18T12:10:19.859 INFO:journalctl@ceph.osd.4.smithi169.stdout:Sep 18 12:10:19 smithi169 podman[45932]: 2024-09-18 12:10:19.52344921 +0000 UTC m=+0.748901394 container remove 70ef0c1e727e426b589e9cc71906bb32dc5b0f668801ab525e21d62678a68490 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-4, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, ceph=True, maintainer=Guillaume Abrioux , GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, GIT_CLEAN=True, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0) 2024-09-18T12:10:20.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:19 smithi160 ceph-mon[31705]: osdmap e43: 6 total, 5 up, 6 in 2024-09-18T12:10:20.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:19 smithi076 ceph-mon[27582]: osdmap e43: 6 total, 5 up, 6 in 2024-09-18T12:10:20.130 INFO:journalctl@ceph.osd.4.smithi169.stdout:Sep 18 12:10:19 smithi169 podman[46020]: 2024-09-18 12:10:19.857769976 +0000 UTC m=+0.111062643 container create 5121f9565d7926cfb483591ed2d5bf7113e5fda94c6a6c1e42047293ea4df4be (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-4-deactivate, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, io.buildah.version=1.37.2, ceph=True, GIT_BRANCH=HEAD, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True) 2024-09-18T12:10:20.130 INFO:journalctl@ceph.osd.4.smithi169.stdout:Sep 18 12:10:19 smithi169 podman[46020]: 2024-09-18 12:10:19.762760263 +0000 UTC m=+0.016052907 image pull f2dfd3bedcfd8a352dfcb2d35150edfb80cae3a6389830dbb2d080962a731a96 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9 2024-09-18T12:10:20.131 INFO:journalctl@ceph.osd.4.smithi169.stdout:Sep 18 12:10:20 smithi169 podman[46020]: 2024-09-18 12:10:20.130006171 +0000 UTC m=+0.383298806 container init 5121f9565d7926cfb483591ed2d5bf7113e5fda94c6a6c1e42047293ea4df4be (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-4-deactivate, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, 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=True, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-18T12:10:20.441 INFO:journalctl@ceph.osd.4.smithi169.stdout:Sep 18 12:10:20 smithi169 podman[46020]: 2024-09-18 12:10:20.135855464 +0000 UTC m=+0.389148094 container start 5121f9565d7926cfb483591ed2d5bf7113e5fda94c6a6c1e42047293ea4df4be (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-4-deactivate, org.label-schema.license=GPLv2, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, CEPH_POINT_RELEASE=, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, ceph=True, GIT_BRANCH=HEAD, GIT_CLEAN=True, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-18T12:10:20.441 INFO:journalctl@ceph.osd.4.smithi169.stdout:Sep 18 12:10:20 smithi169 podman[46020]: 2024-09-18 12:10:20.277220923 +0000 UTC m=+0.530513558 container attach 5121f9565d7926cfb483591ed2d5bf7113e5fda94c6a6c1e42047293ea4df4be (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-4-deactivate, org.label-schema.vendor=CentOS, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, org.label-schema.schema-version=1.0, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True) 2024-09-18T12:10:20.442 INFO:journalctl@ceph.osd.4.smithi169.stdout:Sep 18 12:10:20 smithi169 podman[46020]: 2024-09-18 12:10:20.319977793 +0000 UTC m=+0.573270436 container died 5121f9565d7926cfb483591ed2d5bf7113e5fda94c6a6c1e42047293ea4df4be (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-4-deactivate, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.vendor=CentOS, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, org.label-schema.license=GPLv2, ceph=True, org.label-schema.build-date=20240731, GIT_CLEAN=True, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, io.buildah.version=1.37.2) 2024-09-18T12:10:20.979 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:20 smithi169 ceph-mon[32172]: pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:10:20.979 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:20 smithi169 ceph-mon[32172]: osdmap e44: 6 total, 5 up, 6 in 2024-09-18T12:10:20.980 INFO:journalctl@ceph.osd.4.smithi169.stdout:Sep 18 12:10:20 smithi169 podman[46044]: 2024-09-18 12:10:20.931112659 +0000 UTC m=+0.605310292 container remove 5121f9565d7926cfb483591ed2d5bf7113e5fda94c6a6c1e42047293ea4df4be (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-4-deactivate, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, GIT_CLEAN=True, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS) 2024-09-18T12:10:20.980 INFO:journalctl@ceph.osd.4.smithi169.stdout:Sep 18 12:10:20 smithi169 systemd[1]: ceph-1afb0892-75b6-11ef-bceb-c7b262605968@osd.4.service: Deactivated successfully. 2024-09-18T12:10:20.980 INFO:journalctl@ceph.osd.4.smithi169.stdout:Sep 18 12:10:20 smithi169 systemd[1]: Stopped Ceph osd.4 for 1afb0892-75b6-11ef-bceb-c7b262605968. 2024-09-18T12:10:20.980 INFO:journalctl@ceph.osd.4.smithi169.stdout:Sep 18 12:10:20 smithi169 systemd[1]: ceph-1afb0892-75b6-11ef-bceb-c7b262605968@osd.4.service: Consumed 1.521s CPU time. 2024-09-18T12:10:21.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:20 smithi160 ceph-mon[31705]: pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:10:21.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:20 smithi160 ceph-mon[31705]: osdmap e44: 6 total, 5 up, 6 in 2024-09-18T12:10:21.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:20 smithi076 ceph-mon[27582]: pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-18T12:10:21.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:20 smithi076 ceph-mon[27582]: osdmap e44: 6 total, 5 up, 6 in 2024-09-18T12:10:21.843 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:21 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-09-18T12:10:21.843 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:21 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-18T12:10:21.844 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:21 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-09-18T12:10:21.844 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:21 smithi169 ceph-mon[32172]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-18T12:10:21.844 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:21 smithi169 ceph-mon[32172]: Cluster is now healthy 2024-09-18T12:10:21.844 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:21 smithi169 ceph-mon[32172]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-18T12:10:21.844 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:21 smithi169 ceph-mon[32172]: osdmap e45: 5 total, 5 up, 5 in 2024-09-18T12:10:22.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:21 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-09-18T12:10:22.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:21 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-18T12:10:22.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:21 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-09-18T12:10:22.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:21 smithi160 ceph-mon[31705]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-18T12:10:22.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:21 smithi160 ceph-mon[31705]: Cluster is now healthy 2024-09-18T12:10:22.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:21 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-18T12:10:22.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:21 smithi160 ceph-mon[31705]: osdmap e45: 5 total, 5 up, 5 in 2024-09-18T12:10:22.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:21 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-09-18T12:10:22.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:21 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-18T12:10:22.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:21 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-09-18T12:10:22.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:21 smithi076 ceph-mon[27582]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-18T12:10:22.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:21 smithi076 ceph-mon[27582]: Cluster is now healthy 2024-09-18T12:10:22.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:21 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-18T12:10:22.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:21 smithi076 ceph-mon[27582]: osdmap e45: 5 total, 5 up, 5 in 2024-09-18T12:10:22.850 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:22 smithi169 ceph-mon[32172]: Removing key for osd.4 2024-09-18T12:10:22.850 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:22 smithi169 ceph-mon[32172]: Successfully removed osd.4 on smithi169 2024-09-18T12:10:22.850 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:22 smithi169 ceph-mon[32172]: Successfully purged osd.4 on smithi169 2024-09-18T12:10:22.850 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:22 smithi169 ceph-mon[32172]: Zapping devices for osd.4 on smithi169 2024-09-18T12:10:22.850 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:22 smithi169 ceph-mon[32172]: pgmap v166: 1 pgs: 1 remapped+peering; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-18T12:10:22.850 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:22 smithi169 ceph-mon[32172]: osdmap e46: 5 total, 5 up, 5 in 2024-09-18T12:10:23.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:22 smithi160 ceph-mon[31705]: Removing key for osd.4 2024-09-18T12:10:23.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:22 smithi160 ceph-mon[31705]: Successfully removed osd.4 on smithi169 2024-09-18T12:10:23.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:22 smithi160 ceph-mon[31705]: Successfully purged osd.4 on smithi169 2024-09-18T12:10:23.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:22 smithi160 ceph-mon[31705]: Zapping devices for osd.4 on smithi169 2024-09-18T12:10:23.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:22 smithi160 ceph-mon[31705]: pgmap v166: 1 pgs: 1 remapped+peering; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-18T12:10:23.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:22 smithi160 ceph-mon[31705]: osdmap e46: 5 total, 5 up, 5 in 2024-09-18T12:10:23.072 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:22 smithi076 ceph-mon[27582]: Removing key for osd.4 2024-09-18T12:10:23.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:22 smithi076 ceph-mon[27582]: Successfully removed osd.4 on smithi169 2024-09-18T12:10:23.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:22 smithi076 ceph-mon[27582]: Successfully purged osd.4 on smithi169 2024-09-18T12:10:23.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:22 smithi076 ceph-mon[27582]: Zapping devices for osd.4 on smithi169 2024-09-18T12:10:23.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:22 smithi076 ceph-mon[27582]: pgmap v166: 1 pgs: 1 remapped+peering; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-18T12:10:23.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:22 smithi076 ceph-mon[27582]: osdmap e46: 5 total, 5 up, 5 in 2024-09-18T12:10:24.368 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:24 smithi169 podman[46381]: 2024-09-18 12:10:24.104953155 +0000 UTC m=+0.018392923 container died cbaa05a3bc80474314e6b0e2537af4f91abd5edbd0a4dc00254044144f85492d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mon-c, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, CEPH_POINT_RELEASE=, GIT_CLEAN=True, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, io.buildah.version=1.37.2, org.label-schema.license=GPLv2) 2024-09-18T12:10:24.888 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:24 smithi169 podman[46381]: 2024-09-18 12:10:24.632062754 +0000 UTC m=+0.545502565 container remove cbaa05a3bc80474314e6b0e2537af4f91abd5edbd0a4dc00254044144f85492d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mon-c, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, ceph=True, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, GIT_CLEAN=True, maintainer=Guillaume Abrioux ) 2024-09-18T12:10:25.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:25 smithi169 systemd[1]: ceph-1afb0892-75b6-11ef-bceb-c7b262605968@mon.c.service: Deactivated successfully. 2024-09-18T12:10:25.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:25 smithi169 systemd[1]: Stopped Ceph mon.c for 1afb0892-75b6-11ef-bceb-c7b262605968. 2024-09-18T12:10:25.441 INFO:journalctl@ceph.mon.c.smithi169.stdout:Sep 18 12:10:25 smithi169 systemd[1]: ceph-1afb0892-75b6-11ef-bceb-c7b262605968@mon.c.service: Consumed 3.094s CPU time. 2024-09-18T12:10:26.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:26 smithi160 ceph-mon[31705]: Successfully zapped devices for osd.4 on smithi169 2024-09-18T12:10:26.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:26 smithi160 ceph-mon[31705]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T12:10:26.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:26 smithi160 ceph-mon[31705]: Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-09-18T12:10:26.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:26 smithi160 ceph-mon[31705]: Removing monitor c from monmap... 2024-09-18T12:10:26.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:26 smithi160 ceph-mon[31705]: Removing daemon mon.c from smithi169 -- ports [] 2024-09-18T12:10:26.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:26 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-18T12:10:26.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:26 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:10:26.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:26 smithi160 ceph-mon[31705]: mon.b calling monitor election 2024-09-18T12:10:26.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:26 smithi160 ceph-mon[31705]: pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 101 KiB/s, 0 objects/s recovering 2024-09-18T12:10:26.510 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:26 smithi160 ceph-mon[31705]: mon.a calling monitor election 2024-09-18T12:10:26.510 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:26 smithi160 ceph-mon[31705]: mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-09-18T12:10:26.510 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:26 smithi160 ceph-mon[31705]: monmap e4: 2 mons at {a=[v2:172.21.15.76:3300/0,v1:172.21.15.76:6789/0],b=[v2:172.21.15.160:3300/0,v1:172.21.15.160:6789/0]} removed_ranks: {1} disallowed_leaders: {} 2024-09-18T12:10:26.510 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:26 smithi160 ceph-mon[31705]: fsmap 2024-09-18T12:10:26.510 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:26 smithi160 ceph-mon[31705]: osdmap e47: 5 total, 5 up, 5 in 2024-09-18T12:10:26.510 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:26 smithi160 ceph-mon[31705]: mgrmap e15: a(active, since 4m), standbys: b 2024-09-18T12:10:26.510 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:26 smithi160 ceph-mon[31705]: overall HEALTH_OK 2024-09-18T12:10:26.510 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:26 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:26.510 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:26 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:26.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:26 smithi076 ceph-mon[27582]: Successfully zapped devices for osd.4 on smithi169 2024-09-18T12:10:26.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:26 smithi076 ceph-mon[27582]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T12:10:26.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:26 smithi076 ceph-mon[27582]: Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-09-18T12:10:26.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:26 smithi076 ceph-mon[27582]: Removing monitor c from monmap... 2024-09-18T12:10:26.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:26 smithi076 ceph-mon[27582]: Removing daemon mon.c from smithi169 -- ports [] 2024-09-18T12:10:26.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:26 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-18T12:10:26.574 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:26 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-18T12:10:26.574 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:26 smithi076 ceph-mon[27582]: mon.b calling monitor election 2024-09-18T12:10:26.574 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:26 smithi076 ceph-mon[27582]: pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 101 KiB/s, 0 objects/s recovering 2024-09-18T12:10:26.574 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:26 smithi076 ceph-mon[27582]: mon.a calling monitor election 2024-09-18T12:10:26.574 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:26 smithi076 ceph-mon[27582]: mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-09-18T12:10:26.574 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:26 smithi076 ceph-mon[27582]: monmap e4: 2 mons at {a=[v2:172.21.15.76:3300/0,v1:172.21.15.76:6789/0],b=[v2:172.21.15.160:3300/0,v1:172.21.15.160:6789/0]} removed_ranks: {1} disallowed_leaders: {} 2024-09-18T12:10:26.574 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:26 smithi076 ceph-mon[27582]: fsmap 2024-09-18T12:10:26.574 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:26 smithi076 ceph-mon[27582]: osdmap e47: 5 total, 5 up, 5 in 2024-09-18T12:10:26.574 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:26 smithi076 ceph-mon[27582]: mgrmap e15: a(active, since 4m), standbys: b 2024-09-18T12:10:26.574 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:26 smithi076 ceph-mon[27582]: overall HEALTH_OK 2024-09-18T12:10:26.574 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:26 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:26.574 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:26 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:27.508 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:27 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:10:27.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:27 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:10:28.508 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:28 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:28.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:28 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:28.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:28 smithi160 ceph-mon[31705]: pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 92 KiB/s, 0 objects/s recovering 2024-09-18T12:10:28.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:28 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:28.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:28 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:28.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:28 smithi076 ceph-mon[27582]: pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 92 KiB/s, 0 objects/s recovering 2024-09-18T12:10:30.494 INFO:teuthology.orchestra.run.smithi076.stderr:++ ceph orch ps --hostname smithi169 2024-09-18T12:10:30.748 INFO:teuthology.orchestra.run.smithi076.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-18T12:10:30.748 INFO:teuthology.orchestra.run.smithi076.stderr:osd.5 smithi169 running (73s) 3s ago 73s 34.9M 10.3G 17.2.7-1645-g7061ea6c f2dfd3bedcfd 1355477a7cb9 ' 2024-09-18T12:10:30.748 INFO:teuthology.orchestra.run.smithi076.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-18T12:10:30.748 INFO:teuthology.orchestra.run.smithi076.stderr:osd.5 smithi169 running (73s) 3s ago 73s 34.9M 10.3G 17.2.7-1645-g7061ea6c f2dfd3bedcfd 1355477a7cb9 ' '!=' 'No daemons reported' ']' 2024-09-18T12:10:30.748 INFO:teuthology.orchestra.run.smithi076.stderr:+ sleep 15 2024-09-18T12:10:30.748 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:30 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:30.748 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:30 smithi076 ceph-mon[27582]: pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-18T12:10:30.749 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:30 smithi076 ceph-mon[27582]: Detected new or changed devices on smithi169 2024-09-18T12:10:30.749 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:30 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:30.749 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:30 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:30.749 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:30 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:10:30.749 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:30 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:10:30.749 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:30 smithi076 ceph-mon[27582]: Updating smithi076:/etc/ceph/ceph.conf 2024-09-18T12:10:30.749 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:30 smithi076 ceph-mon[27582]: Updating smithi160:/etc/ceph/ceph.conf 2024-09-18T12:10:30.749 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:30 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mon-a[27578]: 2024-09-18T12:10:30.491+0000 7f6152a9f640 -1 mon.a@0(leader).osd e47 definitely_dead 0 2024-09-18T12:10:30.758 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:30 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:30.758 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:30 smithi160 ceph-mon[31705]: pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-18T12:10:30.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:30 smithi160 ceph-mon[31705]: Detected new or changed devices on smithi169 2024-09-18T12:10:30.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:30 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:30.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:30 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:30.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:30 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:10:30.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:30 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:10:30.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:30 smithi160 ceph-mon[31705]: Updating smithi076:/etc/ceph/ceph.conf 2024-09-18T12:10:30.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:30 smithi160 ceph-mon[31705]: Updating smithi160:/etc/ceph/ceph.conf 2024-09-18T12:10:31.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:31 smithi160 ceph-mon[31705]: Updating smithi076:/var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T12:10:31.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:31 smithi160 ceph-mon[31705]: Updating smithi160:/var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T12:10:31.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:31 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:31.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:31 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:31.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:31 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:31.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:31 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:31.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:31 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T12:10:31.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:31 smithi160 ceph-mon[31705]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T12:10:31.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:31 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T12:10:31.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:31 smithi160 ceph-mon[31705]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T12:10:31.760 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:31 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T12:10:31.760 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:31 smithi160 ceph-mon[31705]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T12:10:31.760 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:31 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-18T12:10:31.760 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:31 smithi160 ceph-mon[31705]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-18T12:10:31.760 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:31 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-09-18T12:10:31.760 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:31 smithi160 ceph-mon[31705]: from='client.14512 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi169", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:10:31.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:31 smithi076 ceph-mon[27582]: Updating smithi076:/var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T12:10:31.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:31 smithi076 ceph-mon[27582]: Updating smithi160:/var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T12:10:31.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:31 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:31.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:31 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:31.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:31 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:31.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:31 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:31.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:31 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T12:10:31.824 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:31 smithi076 ceph-mon[27582]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T12:10:31.824 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:31 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T12:10:31.824 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:31 smithi076 ceph-mon[27582]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T12:10:31.824 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:31 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T12:10:31.824 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:31 smithi076 ceph-mon[27582]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T12:10:31.824 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:31 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-18T12:10:31.824 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:31 smithi076 ceph-mon[27582]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-18T12:10:31.824 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:31 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-09-18T12:10:31.824 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:31 smithi076 ceph-mon[27582]: from='client.14512 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi169", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:10:32.191 INFO:journalctl@ceph.osd.5.smithi169.stdout:Sep 18 12:10:31 smithi169 systemd[1]: Stopping Ceph osd.5 for 1afb0892-75b6-11ef-bceb-c7b262605968... 2024-09-18T12:10:32.191 INFO:journalctl@ceph.osd.5.smithi169.stdout:Sep 18 12:10:32 smithi169 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-5[42356]: 2024-09-18T12:10:32.060+0000 7f419bec1640 -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-18T12:10:32.191 INFO:journalctl@ceph.osd.5.smithi169.stdout:Sep 18 12:10:32 smithi169 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-5[42356]: 2024-09-18T12:10:32.060+0000 7f419bec1640 -1 osd.5 47 *** Got signal Terminated *** 2024-09-18T12:10:32.191 INFO:journalctl@ceph.osd.5.smithi169.stdout:Sep 18 12:10:32 smithi169 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-5[42356]: 2024-09-18T12:10:32.060+0000 7f419bec1640 -1 osd.5 47 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-18T12:10:32.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:32 smithi160 ceph-mon[31705]: pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 62 KiB/s, 0 objects/s recovering 2024-09-18T12:10:32.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:32 smithi160 ceph-mon[31705]: Health check failed: 1 osds down (OSD_DOWN) 2024-09-18T12:10:32.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:32 smithi160 ceph-mon[31705]: Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-18T12:10:32.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:32 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-18T12:10:32.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:32 smithi160 ceph-mon[31705]: osdmap e48: 5 total, 4 up, 5 in 2024-09-18T12:10:32.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:32 smithi160 ceph-mon[31705]: osd.5 now down 2024-09-18T12:10:32.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:32 smithi160 ceph-mon[31705]: Removing daemon osd.5 from smithi169 -- ports [] 2024-09-18T12:10:32.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:32 smithi076 ceph-mon[27582]: pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 62 KiB/s, 0 objects/s recovering 2024-09-18T12:10:32.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:32 smithi076 ceph-mon[27582]: Health check failed: 1 osds down (OSD_DOWN) 2024-09-18T12:10:32.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:32 smithi076 ceph-mon[27582]: Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-18T12:10:32.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:32 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-18T12:10:32.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:32 smithi076 ceph-mon[27582]: osdmap e48: 5 total, 4 up, 5 in 2024-09-18T12:10:32.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:32 smithi076 ceph-mon[27582]: osd.5 now down 2024-09-18T12:10:32.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:32 smithi076 ceph-mon[27582]: Removing daemon osd.5 from smithi169 -- ports [] 2024-09-18T12:10:32.863 INFO:journalctl@ceph.osd.5.smithi169.stdout:Sep 18 12:10:32 smithi169 podman[49185]: 2024-09-18 12:10:32.593340761 +0000 UTC m=+0.640819114 container died 1355477a7cb9160047045683931cd129882a1de69c7f1b892796bb4ced5c32a3 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-5, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, ceph=True) 2024-09-18T12:10:33.191 INFO:journalctl@ceph.osd.5.smithi169.stdout:Sep 18 12:10:32 smithi169 podman[49185]: 2024-09-18 12:10:32.944704621 +0000 UTC m=+0.992182969 container cleanup 1355477a7cb9160047045683931cd129882a1de69c7f1b892796bb4ced5c32a3 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-5, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, org.label-schema.license=GPLv2, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, GIT_CLEAN=True, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, org.label-schema.schema-version=1.0, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.vendor=CentOS) 2024-09-18T12:10:33.191 INFO:journalctl@ceph.osd.5.smithi169.stdout:Sep 18 12:10:32 smithi169 bash[49185]: ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-5 2024-09-18T12:10:33.547 INFO:journalctl@ceph.osd.5.smithi169.stdout:Sep 18 12:10:33 smithi169 podman[49200]: 2024-09-18 12:10:33.222893455 +0000 UTC m=+0.632027142 container remove 1355477a7cb9160047045683931cd129882a1de69c7f1b892796bb4ced5c32a3 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-5, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, ceph=True, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-18T12:10:33.833 INFO:journalctl@ceph.osd.5.smithi169.stdout:Sep 18 12:10:33 smithi169 podman[49289]: 2024-09-18 12:10:33.54657038 +0000 UTC m=+0.100347425 container create 7cc2912103795ef5d8f52f90b424b2c8f2f2770d6137d1f42ffafd9e13bf9b15 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-5-deactivate, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, io.buildah.version=1.37.2, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, ceph=True, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-18T12:10:33.833 INFO:journalctl@ceph.osd.5.smithi169.stdout:Sep 18 12:10:33 smithi169 podman[49289]: 2024-09-18 12:10:33.462328772 +0000 UTC m=+0.016105821 image pull f2dfd3bedcfd8a352dfcb2d35150edfb80cae3a6389830dbb2d080962a731a96 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9 2024-09-18T12:10:33.833 INFO:journalctl@ceph.osd.5.smithi169.stdout:Sep 18 12:10:33 smithi169 podman[49289]: 2024-09-18 12:10:33.757446691 +0000 UTC m=+0.311223741 container init 7cc2912103795ef5d8f52f90b424b2c8f2f2770d6137d1f42ffafd9e13bf9b15 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-5-deactivate, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, ceph=True, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, GIT_CLEAN=True) 2024-09-18T12:10:33.833 INFO:journalctl@ceph.osd.5.smithi169.stdout:Sep 18 12:10:33 smithi169 podman[49289]: 2024-09-18 12:10:33.760641781 +0000 UTC m=+0.314418836 container start 7cc2912103795ef5d8f52f90b424b2c8f2f2770d6137d1f42ffafd9e13bf9b15 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-5-deactivate, maintainer=Guillaume Abrioux , GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, io.buildah.version=1.37.2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, CEPH_POINT_RELEASE=, ceph=True, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD) 2024-09-18T12:10:33.833 INFO:journalctl@ceph.osd.5.smithi169.stdout:Sep 18 12:10:33 smithi169 podman[49289]: 2024-09-18 12:10:33.832456315 +0000 UTC m=+0.386233364 container attach 7cc2912103795ef5d8f52f90b424b2c8f2f2770d6137d1f42ffafd9e13bf9b15 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-5-deactivate, ceph=True, GIT_CLEAN=True, io.buildah.version=1.37.2, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, CEPH_POINT_RELEASE=) 2024-09-18T12:10:34.191 INFO:journalctl@ceph.osd.5.smithi169.stdout:Sep 18 12:10:33 smithi169 podman[49289]: 2024-09-18 12:10:33.936863519 +0000 UTC m=+0.490640569 container died 7cc2912103795ef5d8f52f90b424b2c8f2f2770d6137d1f42ffafd9e13bf9b15 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-5-deactivate, GIT_CLEAN=True, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, io.buildah.version=1.37.2, ceph=True, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-18T12:10:34.758 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:34 smithi160 ceph-mon[31705]: pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-18T12:10:34.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:34 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:34.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:34 smithi076 ceph-mon[27582]: pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-18T12:10:34.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:34 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:34.941 INFO:journalctl@ceph.osd.5.smithi169.stdout:Sep 18 12:10:34 smithi169 podman[49312]: 2024-09-18 12:10:34.510570521 +0000 UTC m=+0.567624284 container remove 7cc2912103795ef5d8f52f90b424b2c8f2f2770d6137d1f42ffafd9e13bf9b15 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-5-deactivate, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, GIT_CLEAN=True, maintainer=Guillaume Abrioux , RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6) 2024-09-18T12:10:34.941 INFO:journalctl@ceph.osd.5.smithi169.stdout:Sep 18 12:10:34 smithi169 systemd[1]: ceph-1afb0892-75b6-11ef-bceb-c7b262605968@osd.5.service: Deactivated successfully. 2024-09-18T12:10:34.941 INFO:journalctl@ceph.osd.5.smithi169.stdout:Sep 18 12:10:34 smithi169 systemd[1]: Stopped Ceph osd.5 for 1afb0892-75b6-11ef-bceb-c7b262605968. 2024-09-18T12:10:34.941 INFO:journalctl@ceph.osd.5.smithi169.stdout:Sep 18 12:10:34 smithi169 systemd[1]: ceph-1afb0892-75b6-11ef-bceb-c7b262605968@osd.5.service: Consumed 1.557s CPU time. 2024-09-18T12:10:35.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:35 smithi160 ceph-mon[31705]: Removing key for osd.5 2024-09-18T12:10:35.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:35 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-09-18T12:10:35.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:35 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-18T12:10:35.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:35 smithi160 ceph-mon[31705]: Successfully removed osd.5 on smithi169 2024-09-18T12:10:35.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:35 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-09-18T12:10:35.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:35 smithi160 ceph-mon[31705]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-18T12:10:35.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:35 smithi160 ceph-mon[31705]: Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-18T12:10:35.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:35 smithi160 ceph-mon[31705]: Cluster is now healthy 2024-09-18T12:10:35.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:35 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-18T12:10:35.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:35 smithi160 ceph-mon[31705]: osdmap e49: 4 total, 4 up, 4 in 2024-09-18T12:10:35.760 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:35 smithi160 ceph-mon[31705]: Successfully purged osd.5 on smithi169 2024-09-18T12:10:35.760 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:35 smithi160 ceph-mon[31705]: Zapping devices for osd.5 on smithi169 2024-09-18T12:10:35.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:35 smithi076 ceph-mon[27582]: Removing key for osd.5 2024-09-18T12:10:35.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:35 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-09-18T12:10:35.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:35 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-18T12:10:35.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:35 smithi076 ceph-mon[27582]: Successfully removed osd.5 on smithi169 2024-09-18T12:10:35.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:35 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-09-18T12:10:35.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:35 smithi076 ceph-mon[27582]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-18T12:10:35.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:35 smithi076 ceph-mon[27582]: Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-18T12:10:35.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:35 smithi076 ceph-mon[27582]: Cluster is now healthy 2024-09-18T12:10:35.824 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:35 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-18T12:10:35.824 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:35 smithi076 ceph-mon[27582]: osdmap e49: 4 total, 4 up, 4 in 2024-09-18T12:10:35.824 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:35 smithi076 ceph-mon[27582]: Successfully purged osd.5 on smithi169 2024-09-18T12:10:35.824 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:35 smithi076 ceph-mon[27582]: Zapping devices for osd.5 on smithi169 2024-09-18T12:10:37.008 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:36 smithi160 ceph-mon[31705]: pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:10:37.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:36 smithi076 ceph-mon[27582]: pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:10:39.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:38 smithi160 ceph-mon[31705]: pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:10:39.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:38 smithi160 ceph-mon[31705]: Successfully zapped devices for osd.5 on smithi169 2024-09-18T12:10:39.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:38 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:39.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:38 smithi160 ceph-mon[31705]: Reconfiguring mon.a (monmap changed)... 2024-09-18T12:10:39.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:38 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-18T12:10:39.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:38 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-18T12:10:39.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:38 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:10:39.009 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:38 smithi160 ceph-mon[31705]: Reconfiguring daemon mon.a on smithi076 2024-09-18T12:10:39.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:38 smithi076 ceph-mon[27582]: pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:10:39.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:38 smithi076 ceph-mon[27582]: Successfully zapped devices for osd.5 on smithi169 2024-09-18T12:10:39.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:38 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:39.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:38 smithi076 ceph-mon[27582]: Reconfiguring mon.a (monmap changed)... 2024-09-18T12:10:39.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:38 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-18T12:10:39.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:38 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-18T12:10:39.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:38 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:10:39.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:38 smithi076 ceph-mon[27582]: Reconfiguring daemon mon.a on smithi076 2024-09-18T12:10:40.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:40 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:40.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:40 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:40.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:40 smithi076 ceph-mon[27582]: Reconfiguring mgr.a (monmap changed)... 2024-09-18T12:10:40.574 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:40 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-18T12:10:40.574 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:40 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-18T12:10:40.574 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:40 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:10:40.574 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:40 smithi076 ceph-mon[27582]: Reconfiguring daemon mgr.a on smithi076 2024-09-18T12:10:40.574 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:40 smithi076 ceph-mon[27582]: pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:10:40.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:40 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:40.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:40 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:40.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:40 smithi160 ceph-mon[31705]: Reconfiguring mgr.a (monmap changed)... 2024-09-18T12:10:40.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:40 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-18T12:10:40.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:40 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-18T12:10:40.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:40 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:10:40.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:40 smithi160 ceph-mon[31705]: Reconfiguring daemon mgr.a on smithi076 2024-09-18T12:10:40.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:40 smithi160 ceph-mon[31705]: pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:10:42.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:41 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:42.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:41 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:42.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:41 smithi076 ceph-mon[27582]: Reconfiguring osd.0 (monmap changed)... 2024-09-18T12:10:42.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:41 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-18T12:10:42.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:41 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:10:42.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:41 smithi076 ceph-mon[27582]: Reconfiguring daemon osd.0 on smithi076 2024-09-18T12:10:42.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:41 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:42.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:41 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:42.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:41 smithi160 ceph-mon[31705]: Reconfiguring osd.0 (monmap changed)... 2024-09-18T12:10:42.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:41 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-18T12:10:42.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:41 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:10:42.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:41 smithi160 ceph-mon[31705]: Reconfiguring daemon osd.0 on smithi076 2024-09-18T12:10:43.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:42 smithi076 ceph-mon[27582]: pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:10:43.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:42 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:43.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:42 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:43.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:42 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-18T12:10:43.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:42 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:10:43.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:42 smithi160 ceph-mon[31705]: pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:10:43.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:42 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:43.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:42 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:43.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:42 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-18T12:10:43.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:42 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:10:44.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:43 smithi076 ceph-mon[27582]: Reconfiguring osd.1 (monmap changed)... 2024-09-18T12:10:44.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:43 smithi076 ceph-mon[27582]: Reconfiguring daemon osd.1 on smithi076 2024-09-18T12:10:44.258 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:43 smithi160 ceph-mon[31705]: Reconfiguring osd.1 (monmap changed)... 2024-09-18T12:10:44.259 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:43 smithi160 ceph-mon[31705]: Reconfiguring daemon osd.1 on smithi076 2024-09-18T12:10:45.212 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:44 smithi160 ceph-mon[31705]: pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:10:45.212 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:44 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:45.212 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:44 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:45.212 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:44 smithi160 ceph-mon[31705]: Reconfiguring mon.b (monmap changed)... 2024-09-18T12:10:45.212 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:44 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-18T12:10:45.212 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:44 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-18T12:10:45.212 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:44 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:10:45.212 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:44 smithi160 ceph-mon[31705]: Reconfiguring daemon mon.b on smithi160 2024-09-18T12:10:45.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:44 smithi076 ceph-mon[27582]: pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:10:45.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:44 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:45.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:44 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:45.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:44 smithi076 ceph-mon[27582]: Reconfiguring mon.b (monmap changed)... 2024-09-18T12:10:45.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:44 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-18T12:10:45.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:44 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-18T12:10:45.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:44 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:10:45.323 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:44 smithi076 ceph-mon[27582]: Reconfiguring daemon mon.b on smithi160 2024-09-18T12:10:45.750 INFO:teuthology.orchestra.run.smithi076.stderr:++ ceph orch ps --hostname smithi169 2024-09-18T12:10:46.013 INFO:teuthology.orchestra.run.smithi076.stderr:+ HOST_C_DAEMONS='No daemons reported' 2024-09-18T12:10:46.013 INFO:teuthology.orchestra.run.smithi076.stderr:+ '[' 'No daemons reported' '!=' 'No daemons reported' ']' 2024-09-18T12:10:46.013 INFO:teuthology.orchestra.run.smithi076.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-09-18T12:10:46.247 INFO:teuthology.orchestra.run.smithi076.stderr:17 2024-09-18T12:10:46.258 INFO:teuthology.orchestra.run.smithi076.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-09-18T12:10:46.269 INFO:teuthology.orchestra.run.smithi076.stderr:++ cat crushmap.txt 2024-09-18T12:10:46.269 INFO:teuthology.orchestra.run.smithi076.stderr:+ CRUSH_MAP='# begin crush map 2024-09-18T12:10:46.270 INFO:teuthology.orchestra.run.smithi076.stderr:tunable choose_local_tries 0 2024-09-18T12:10:46.270 INFO:teuthology.orchestra.run.smithi076.stderr:tunable choose_local_fallback_tries 0 2024-09-18T12:10:46.270 INFO:teuthology.orchestra.run.smithi076.stderr:tunable choose_total_tries 50 2024-09-18T12:10:46.270 INFO:teuthology.orchestra.run.smithi076.stderr:tunable chooseleaf_descend_once 1 2024-09-18T12:10:46.270 INFO:teuthology.orchestra.run.smithi076.stderr:tunable chooseleaf_vary_r 1 2024-09-18T12:10:46.270 INFO:teuthology.orchestra.run.smithi076.stderr:tunable chooseleaf_stable 1 2024-09-18T12:10:46.270 INFO:teuthology.orchestra.run.smithi076.stderr:tunable straw_calc_version 1 2024-09-18T12:10:46.270 INFO:teuthology.orchestra.run.smithi076.stderr:tunable allowed_bucket_algs 54 2024-09-18T12:10:46.270 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-09-18T12:10:46.270 INFO:teuthology.orchestra.run.smithi076.stderr:# devices 2024-09-18T12:10:46.270 INFO:teuthology.orchestra.run.smithi076.stderr:device 0 osd.0 class ssd 2024-09-18T12:10:46.270 INFO:teuthology.orchestra.run.smithi076.stderr:device 1 osd.1 class ssd 2024-09-18T12:10:46.271 INFO:teuthology.orchestra.run.smithi076.stderr:device 2 osd.2 class ssd 2024-09-18T12:10:46.271 INFO:teuthology.orchestra.run.smithi076.stderr:device 3 osd.3 class ssd 2024-09-18T12:10:46.271 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-09-18T12:10:46.271 INFO:teuthology.orchestra.run.smithi076.stderr:# types 2024-09-18T12:10:46.271 INFO:teuthology.orchestra.run.smithi076.stderr:type 0 osd 2024-09-18T12:10:46.271 INFO:teuthology.orchestra.run.smithi076.stderr:type 1 host 2024-09-18T12:10:46.271 INFO:teuthology.orchestra.run.smithi076.stderr:type 2 chassis 2024-09-18T12:10:46.271 INFO:teuthology.orchestra.run.smithi076.stderr:type 3 rack 2024-09-18T12:10:46.271 INFO:teuthology.orchestra.run.smithi076.stderr:type 4 row 2024-09-18T12:10:46.271 INFO:teuthology.orchestra.run.smithi076.stderr:type 5 pdu 2024-09-18T12:10:46.271 INFO:teuthology.orchestra.run.smithi076.stderr:type 6 pod 2024-09-18T12:10:46.271 INFO:teuthology.orchestra.run.smithi076.stderr:type 7 room 2024-09-18T12:10:46.271 INFO:teuthology.orchestra.run.smithi076.stderr:type 8 datacenter 2024-09-18T12:10:46.272 INFO:teuthology.orchestra.run.smithi076.stderr:type 9 zone 2024-09-18T12:10:46.272 INFO:teuthology.orchestra.run.smithi076.stderr:type 10 region 2024-09-18T12:10:46.272 INFO:teuthology.orchestra.run.smithi076.stderr:type 11 root 2024-09-18T12:10:46.272 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-09-18T12:10:46.272 INFO:teuthology.orchestra.run.smithi076.stderr:# buckets 2024-09-18T12:10:46.272 INFO:teuthology.orchestra.run.smithi076.stderr:host smithi076 { 2024-09-18T12:10:46.272 INFO:teuthology.orchestra.run.smithi076.stderr: id -3 # do not change unnecessarily 2024-09-18T12:10:46.272 INFO:teuthology.orchestra.run.smithi076.stderr: id -4 class ssd # do not change unnecessarily 2024-09-18T12:10:46.272 INFO:teuthology.orchestra.run.smithi076.stderr: # weight 0.17459 2024-09-18T12:10:46.272 INFO:teuthology.orchestra.run.smithi076.stderr: alg straw2 2024-09-18T12:10:46.272 INFO:teuthology.orchestra.run.smithi076.stderr: hash 0 # rjenkins1 2024-09-18T12:10:46.272 INFO:teuthology.orchestra.run.smithi076.stderr: item osd.0 weight 0.08730 2024-09-18T12:10:46.272 INFO:teuthology.orchestra.run.smithi076.stderr: item osd.1 weight 0.08730 2024-09-18T12:10:46.273 INFO:teuthology.orchestra.run.smithi076.stderr:} 2024-09-18T12:10:46.273 INFO:teuthology.orchestra.run.smithi076.stderr:host smithi160 { 2024-09-18T12:10:46.273 INFO:teuthology.orchestra.run.smithi076.stderr: id -5 # do not change unnecessarily 2024-09-18T12:10:46.273 INFO:teuthology.orchestra.run.smithi076.stderr: id -6 class ssd # do not change unnecessarily 2024-09-18T12:10:46.273 INFO:teuthology.orchestra.run.smithi076.stderr: # weight 0.17459 2024-09-18T12:10:46.273 INFO:teuthology.orchestra.run.smithi076.stderr: alg straw2 2024-09-18T12:10:46.273 INFO:teuthology.orchestra.run.smithi076.stderr: hash 0 # rjenkins1 2024-09-18T12:10:46.273 INFO:teuthology.orchestra.run.smithi076.stderr: item osd.2 weight 0.08730 2024-09-18T12:10:46.273 INFO:teuthology.orchestra.run.smithi076.stderr: item osd.3 weight 0.08730 2024-09-18T12:10:46.273 INFO:teuthology.orchestra.run.smithi076.stderr:} 2024-09-18T12:10:46.273 INFO:teuthology.orchestra.run.smithi076.stderr:host smithi169 { 2024-09-18T12:10:46.273 INFO:teuthology.orchestra.run.smithi076.stderr: id -7 # do not change unnecessarily 2024-09-18T12:10:46.274 INFO:teuthology.orchestra.run.smithi076.stderr: id -8 class ssd # do not change unnecessarily 2024-09-18T12:10:46.274 INFO:teuthology.orchestra.run.smithi076.stderr: # weight 0.00000 2024-09-18T12:10:46.274 INFO:teuthology.orchestra.run.smithi076.stderr: alg straw2 2024-09-18T12:10:46.274 INFO:teuthology.orchestra.run.smithi076.stderr: hash 0 # rjenkins1 2024-09-18T12:10:46.274 INFO:teuthology.orchestra.run.smithi076.stderr:} 2024-09-18T12:10:46.274 INFO:teuthology.orchestra.run.smithi076.stderr:root default { 2024-09-18T12:10:46.274 INFO:teuthology.orchestra.run.smithi076.stderr: id -1 # do not change unnecessarily 2024-09-18T12:10:46.274 INFO:teuthology.orchestra.run.smithi076.stderr: id -2 class ssd # do not change unnecessarily 2024-09-18T12:10:46.274 INFO:teuthology.orchestra.run.smithi076.stderr: # weight 0.34918 2024-09-18T12:10:46.274 INFO:teuthology.orchestra.run.smithi076.stderr: alg straw2 2024-09-18T12:10:46.274 INFO:teuthology.orchestra.run.smithi076.stderr: hash 0 # rjenkins1 2024-09-18T12:10:46.274 INFO:teuthology.orchestra.run.smithi076.stderr: item smithi076 weight 0.17459 2024-09-18T12:10:46.275 INFO:teuthology.orchestra.run.smithi076.stderr: item smithi160 weight 0.17459 2024-09-18T12:10:46.275 INFO:teuthology.orchestra.run.smithi076.stderr: item smithi169 weight 0.00000 2024-09-18T12:10:46.275 INFO:teuthology.orchestra.run.smithi076.stderr:} 2024-09-18T12:10:46.275 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-09-18T12:10:46.275 INFO:teuthology.orchestra.run.smithi076.stderr:# rules 2024-09-18T12:10:46.275 INFO:teuthology.orchestra.run.smithi076.stderr:rule replicated_rule { 2024-09-18T12:10:46.275 INFO:teuthology.orchestra.run.smithi076.stderr: id 0 2024-09-18T12:10:46.275 INFO:teuthology.orchestra.run.smithi076.stderr: type replicated 2024-09-18T12:10:46.275 INFO:teuthology.orchestra.run.smithi076.stderr: step take default 2024-09-18T12:10:46.276 INFO:teuthology.orchestra.run.smithi076.stderr: step choose firstn 0 type osd 2024-09-18T12:10:46.276 INFO:teuthology.orchestra.run.smithi076.stderr: step emit 2024-09-18T12:10:46.276 INFO:teuthology.orchestra.run.smithi076.stderr:} 2024-09-18T12:10:46.276 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-09-18T12:10:46.276 INFO:teuthology.orchestra.run.smithi076.stderr:# end crush map' 2024-09-18T12:10:46.276 INFO:teuthology.orchestra.run.smithi076.stderr:+ grep -q smithi169 2024-09-18T12:10:46.276 INFO:teuthology.orchestra.run.smithi076.stderr:+ ceph orch host rm smithi169 --rm-crush-entry 2024-09-18T12:10:46.551 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:46 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:46.551 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:46 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:46.551 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:46 smithi160 ceph-mon[31705]: Reconfiguring mgr.b (monmap changed)... 2024-09-18T12:10:46.551 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:46 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-18T12:10:46.551 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:46 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-18T12:10:46.552 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:46 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:10:46.552 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:46 smithi160 ceph-mon[31705]: Reconfiguring daemon mgr.b on smithi160 2024-09-18T12:10:46.552 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:46 smithi160 ceph-mon[31705]: pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:10:46.552 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:46 smithi160 ceph-mon[31705]: from='client.14516 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi169", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:10:46.552 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:46 smithi160 ceph-mon[31705]: from='client.? 172.21.15.76:0/2495787945' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-18T12:10:46.572 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:46 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:46.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:46 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:46.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:46 smithi076 ceph-mon[27582]: Reconfiguring mgr.b (monmap changed)... 2024-09-18T12:10:46.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:46 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-18T12:10:46.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:46 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-18T12:10:46.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:46 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:10:46.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:46 smithi076 ceph-mon[27582]: Reconfiguring daemon mgr.b on smithi160 2024-09-18T12:10:46.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:46 smithi076 ceph-mon[27582]: pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:10:46.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:46 smithi076 ceph-mon[27582]: from='client.14516 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi169", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:10:46.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:46 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/2495787945' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-18T12:10:47.286 INFO:teuthology.orchestra.run.smithi076.stdout:Removed host 'smithi169' 2024-09-18T12:10:47.299 INFO:teuthology.orchestra.run.smithi076.stderr:+ sleep 30 2024-09-18T12:10:47.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:47 smithi160 ceph-mon[31705]: from='client.14524 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi169", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:10:47.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:47 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "smithi169"}]: dispatch 2024-09-18T12:10:47.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:47 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:47.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:47 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:47.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:47 smithi160 ceph-mon[31705]: Reconfiguring osd.2 (monmap changed)... 2024-09-18T12:10:47.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:47 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-18T12:10:47.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:47 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:10:47.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:47 smithi160 ceph-mon[31705]: Reconfiguring daemon osd.2 on smithi160 2024-09-18T12:10:47.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:47 smithi076 ceph-mon[27582]: from='client.14524 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi169", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T12:10:47.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:47 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "smithi169"}]: dispatch 2024-09-18T12:10:47.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:47 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:47.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:47 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:47.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:47 smithi076 ceph-mon[27582]: Reconfiguring osd.2 (monmap changed)... 2024-09-18T12:10:47.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:47 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-18T12:10:47.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:47 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:10:47.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:47 smithi076 ceph-mon[27582]: Reconfiguring daemon osd.2 on smithi160 2024-09-18T12:10:48.559 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:48 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi169"}]': finished 2024-09-18T12:10:48.560 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:48 smithi160 ceph-mon[31705]: osdmap e50: 4 total, 4 up, 4 in 2024-09-18T12:10:48.560 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:48 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:48.560 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:48 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi169"}]: dispatch 2024-09-18T12:10:48.560 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:48 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi169"}]': finished 2024-09-18T12:10:48.560 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:48 smithi160 ceph-mon[31705]: Removed host smithi169 2024-09-18T12:10:48.560 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:48 smithi160 ceph-mon[31705]: pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:10:48.560 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:48 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:48.560 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:48 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:48.560 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:48 smithi160 ceph-mon[31705]: Reconfiguring osd.3 (monmap changed)... 2024-09-18T12:10:48.560 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:48 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-18T12:10:48.560 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:48 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:10:48.561 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:48 smithi160 ceph-mon[31705]: Reconfiguring daemon osd.3 on smithi160 2024-09-18T12:10:48.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:48 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi169"}]': finished 2024-09-18T12:10:48.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:48 smithi076 ceph-mon[27582]: osdmap e50: 4 total, 4 up, 4 in 2024-09-18T12:10:48.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:48 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:48.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:48 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi169"}]: dispatch 2024-09-18T12:10:48.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:48 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi169"}]': finished 2024-09-18T12:10:48.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:48 smithi076 ceph-mon[27582]: Removed host smithi169 2024-09-18T12:10:48.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:48 smithi076 ceph-mon[27582]: pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:10:48.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:48 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:48.574 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:48 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:48.574 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:48 smithi076 ceph-mon[27582]: Reconfiguring osd.3 (monmap changed)... 2024-09-18T12:10:48.574 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:48 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-18T12:10:48.574 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:48 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:10:48.574 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:48 smithi076 ceph-mon[27582]: Reconfiguring daemon osd.3 on smithi160 2024-09-18T12:10:49.573 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:10:49 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:10:49.270+0000 7f573a475640 -1 log_channel(cephadm) log [ERR] : Failed to apply mon spec MONSpec.from_json(yaml.safe_load('''service_type: mon 2024-09-18T12:10:49.573 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:10:49 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: service_name: mon 2024-09-18T12:10:49.573 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:10:49 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: placement: 2024-09-18T12:10:49.573 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:10:49 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: count: 3 2024-09-18T12:10:49.573 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:10:49 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: hosts: 2024-09-18T12:10:49.573 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:10:49 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: - smithi076:172.21.15.76=a 2024-09-18T12:10:49.573 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:10:49 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: - smithi160:172.21.15.160=b 2024-09-18T12:10:49.574 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:10:49 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: - smithi169:172.21.15.169=c 2024-09-18T12:10:49.574 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:10:49 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: ''')): Cannot place on smithi169: Unknown hosts 2024-09-18T12:10:50.508 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:50 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:50.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:50 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:50.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:50 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:10:50.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:50 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:10:50.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:50 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:10:50.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:50 smithi160 ceph-mon[31705]: pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:10:50.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:50 smithi160 ceph-mon[31705]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:50.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:50 smithi160 ceph-mon[31705]: Failed to apply mon spec MONSpec.from_json(yaml.safe_load('''service_type: mon 2024-09-18T12:10:50.509 INFO:journalctl@ceph.mon.b.smithi160.stdout: service_name: mon 2024-09-18T12:10:50.509 INFO:journalctl@ceph.mon.b.smithi160.stdout: placement: 2024-09-18T12:10:50.509 INFO:journalctl@ceph.mon.b.smithi160.stdout: count: 3 2024-09-18T12:10:50.509 INFO:journalctl@ceph.mon.b.smithi160.stdout: hosts: 2024-09-18T12:10:50.510 INFO:journalctl@ceph.mon.b.smithi160.stdout: - smithi076:172.21.15.76=a 2024-09-18T12:10:50.510 INFO:journalctl@ceph.mon.b.smithi160.stdout: - smithi160:172.21.15.160=b 2024-09-18T12:10:50.510 INFO:journalctl@ceph.mon.b.smithi160.stdout: - smithi169:172.21.15.169=c 2024-09-18T12:10:50.510 INFO:journalctl@ceph.mon.b.smithi160.stdout: ''')): Cannot place on smithi169: Unknown hosts 2024-09-18T12:10:50.510 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:50 smithi160 ceph-mon[31705]: pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:10:50.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:50 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:50.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:50 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:50.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:50 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-18T12:10:50.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:50 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-18T12:10:50.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:50 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-18T12:10:50.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:50 smithi076 ceph-mon[27582]: pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:10:50.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:50 smithi076 ceph-mon[27582]: from='mgr.14150 172.21.15.76:0/2162660845' entity='mgr.a' 2024-09-18T12:10:50.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:50 smithi076 ceph-mon[27582]: Failed to apply mon spec MONSpec.from_json(yaml.safe_load('''service_type: mon 2024-09-18T12:10:50.573 INFO:journalctl@ceph.mon.a.smithi076.stdout: service_name: mon 2024-09-18T12:10:50.573 INFO:journalctl@ceph.mon.a.smithi076.stdout: placement: 2024-09-18T12:10:50.574 INFO:journalctl@ceph.mon.a.smithi076.stdout: count: 3 2024-09-18T12:10:50.574 INFO:journalctl@ceph.mon.a.smithi076.stdout: hosts: 2024-09-18T12:10:50.574 INFO:journalctl@ceph.mon.a.smithi076.stdout: - smithi076:172.21.15.76=a 2024-09-18T12:10:50.574 INFO:journalctl@ceph.mon.a.smithi076.stdout: - smithi160:172.21.15.160=b 2024-09-18T12:10:50.574 INFO:journalctl@ceph.mon.a.smithi076.stdout: - smithi169:172.21.15.169=c 2024-09-18T12:10:50.574 INFO:journalctl@ceph.mon.a.smithi076.stdout: ''')): Cannot place on smithi169: Unknown hosts 2024-09-18T12:10:50.574 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:50 smithi076 ceph-mon[27582]: pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:10:51.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:51 smithi076 ceph-mon[27582]: Health check failed: Failed to apply 1 service(s): mon (CEPHADM_APPLY_SPEC_FAIL) 2024-09-18T12:10:51.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:51 smithi076 ceph-mon[27582]: Health check failed: 1 stray host(s) with 1 daemon(s) not managed by cephadm (CEPHADM_STRAY_HOST) 2024-09-18T12:10:51.758 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:51 smithi160 ceph-mon[31705]: Health check failed: Failed to apply 1 service(s): mon (CEPHADM_APPLY_SPEC_FAIL) 2024-09-18T12:10:51.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:51 smithi160 ceph-mon[31705]: Health check failed: 1 stray host(s) with 1 daemon(s) not managed by cephadm (CEPHADM_STRAY_HOST) 2024-09-18T12:10:52.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:52 smithi076 ceph-mon[27582]: pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:10:52.758 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:52 smithi160 ceph-mon[31705]: pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:10:54.758 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:54 smithi160 ceph-mon[31705]: pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:10:54.822 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:54 smithi076 ceph-mon[27582]: pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:10:56.625 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:56 smithi076 ceph-mon[27582]: pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:10:56.758 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:56 smithi160 ceph-mon[31705]: pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:10:58.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:10:58 smithi160 ceph-mon[31705]: pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:10:58.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:10:58 smithi076 ceph-mon[27582]: pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:11:00.758 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:11:00 smithi160 ceph-mon[31705]: pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:11:00.822 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:11:00 smithi076 ceph-mon[27582]: pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:11:02.758 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:11:02 smithi160 ceph-mon[31705]: pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:11:02.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:11:02 smithi076 ceph-mon[27582]: pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:11:04.758 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:11:04 smithi160 ceph-mon[31705]: pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:11:04.822 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:11:04 smithi076 ceph-mon[27582]: pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:11:06.758 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:11:06 smithi160 ceph-mon[31705]: pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:11:06.822 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:11:06 smithi076 ceph-mon[27582]: pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:11:08.758 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:11:08 smithi160 ceph-mon[31705]: pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:11:08.822 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:11:08 smithi076 ceph-mon[27582]: pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:11:10.758 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:11:10 smithi160 ceph-mon[31705]: pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:11:10.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:11:10 smithi076 ceph-mon[27582]: pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:11:12.758 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:11:12 smithi160 ceph-mon[31705]: pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:11:12.822 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:11:12 smithi076 ceph-mon[27582]: pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:11:14.758 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:11:14 smithi160 ceph-mon[31705]: pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:11:14.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:11:14 smithi076 ceph-mon[27582]: pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:11:16.760 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:11:16 smithi160 ceph-mon[31705]: pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:11:16.823 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:11:16 smithi076 ceph-mon[27582]: pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:11:17.301 INFO:teuthology.orchestra.run.smithi076.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-09-18T12:11:17.543 INFO:teuthology.orchestra.run.smithi076.stderr:18 2024-09-18T12:11:17.554 INFO:teuthology.orchestra.run.smithi076.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-09-18T12:11:17.563 INFO:teuthology.orchestra.run.smithi076.stderr:++ cat crushmap.txt 2024-09-18T12:11:17.565 INFO:teuthology.orchestra.run.smithi076.stderr:+ CRUSH_MAP='# begin crush map 2024-09-18T12:11:17.565 INFO:teuthology.orchestra.run.smithi076.stderr:tunable choose_local_tries 0 2024-09-18T12:11:17.565 INFO:teuthology.orchestra.run.smithi076.stderr:tunable choose_local_fallback_tries 0 2024-09-18T12:11:17.565 INFO:teuthology.orchestra.run.smithi076.stderr:tunable choose_total_tries 50 2024-09-18T12:11:17.565 INFO:teuthology.orchestra.run.smithi076.stderr:tunable chooseleaf_descend_once 1 2024-09-18T12:11:17.565 INFO:teuthology.orchestra.run.smithi076.stderr:tunable chooseleaf_vary_r 1 2024-09-18T12:11:17.565 INFO:teuthology.orchestra.run.smithi076.stderr:tunable chooseleaf_stable 1 2024-09-18T12:11:17.565 INFO:teuthology.orchestra.run.smithi076.stderr:tunable straw_calc_version 1 2024-09-18T12:11:17.565 INFO:teuthology.orchestra.run.smithi076.stderr:tunable allowed_bucket_algs 54 2024-09-18T12:11:17.565 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-09-18T12:11:17.565 INFO:teuthology.orchestra.run.smithi076.stderr:# devices 2024-09-18T12:11:17.566 INFO:teuthology.orchestra.run.smithi076.stderr:device 0 osd.0 class ssd 2024-09-18T12:11:17.566 INFO:teuthology.orchestra.run.smithi076.stderr:device 1 osd.1 class ssd 2024-09-18T12:11:17.566 INFO:teuthology.orchestra.run.smithi076.stderr:device 2 osd.2 class ssd 2024-09-18T12:11:17.566 INFO:teuthology.orchestra.run.smithi076.stderr:device 3 osd.3 class ssd 2024-09-18T12:11:17.566 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-09-18T12:11:17.566 INFO:teuthology.orchestra.run.smithi076.stderr:# types 2024-09-18T12:11:17.566 INFO:teuthology.orchestra.run.smithi076.stderr:type 0 osd 2024-09-18T12:11:17.566 INFO:teuthology.orchestra.run.smithi076.stderr:type 1 host 2024-09-18T12:11:17.566 INFO:teuthology.orchestra.run.smithi076.stderr:type 2 chassis 2024-09-18T12:11:17.566 INFO:teuthology.orchestra.run.smithi076.stderr:type 3 rack 2024-09-18T12:11:17.566 INFO:teuthology.orchestra.run.smithi076.stderr:type 4 row 2024-09-18T12:11:17.566 INFO:teuthology.orchestra.run.smithi076.stderr:type 5 pdu 2024-09-18T12:11:17.566 INFO:teuthology.orchestra.run.smithi076.stderr:type 6 pod 2024-09-18T12:11:17.567 INFO:teuthology.orchestra.run.smithi076.stderr:type 7 room 2024-09-18T12:11:17.567 INFO:teuthology.orchestra.run.smithi076.stderr:type 8 datacenter 2024-09-18T12:11:17.567 INFO:teuthology.orchestra.run.smithi076.stderr:type 9 zone 2024-09-18T12:11:17.567 INFO:teuthology.orchestra.run.smithi076.stderr:type 10 region 2024-09-18T12:11:17.567 INFO:teuthology.orchestra.run.smithi076.stderr:type 11 root 2024-09-18T12:11:17.567 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-09-18T12:11:17.567 INFO:teuthology.orchestra.run.smithi076.stderr:# buckets 2024-09-18T12:11:17.567 INFO:teuthology.orchestra.run.smithi076.stderr:host smithi076 { 2024-09-18T12:11:17.567 INFO:teuthology.orchestra.run.smithi076.stderr: id -3 # do not change unnecessarily 2024-09-18T12:11:17.567 INFO:teuthology.orchestra.run.smithi076.stderr: id -4 class ssd # do not change unnecessarily 2024-09-18T12:11:17.567 INFO:teuthology.orchestra.run.smithi076.stderr: # weight 0.17459 2024-09-18T12:11:17.567 INFO:teuthology.orchestra.run.smithi076.stderr: alg straw2 2024-09-18T12:11:17.568 INFO:teuthology.orchestra.run.smithi076.stderr: hash 0 # rjenkins1 2024-09-18T12:11:17.568 INFO:teuthology.orchestra.run.smithi076.stderr: item osd.0 weight 0.08730 2024-09-18T12:11:17.568 INFO:teuthology.orchestra.run.smithi076.stderr: item osd.1 weight 0.08730 2024-09-18T12:11:17.568 INFO:teuthology.orchestra.run.smithi076.stderr:} 2024-09-18T12:11:17.568 INFO:teuthology.orchestra.run.smithi076.stderr:host smithi160 { 2024-09-18T12:11:17.568 INFO:teuthology.orchestra.run.smithi076.stderr: id -5 # do not change unnecessarily 2024-09-18T12:11:17.568 INFO:teuthology.orchestra.run.smithi076.stderr: id -6 class ssd # do not change unnecessarily 2024-09-18T12:11:17.568 INFO:teuthology.orchestra.run.smithi076.stderr: # weight 0.17459 2024-09-18T12:11:17.568 INFO:teuthology.orchestra.run.smithi076.stderr: alg straw2 2024-09-18T12:11:17.568 INFO:teuthology.orchestra.run.smithi076.stderr: hash 0 # rjenkins1 2024-09-18T12:11:17.568 INFO:teuthology.orchestra.run.smithi076.stderr: item osd.2 weight 0.08730 2024-09-18T12:11:17.568 INFO:teuthology.orchestra.run.smithi076.stderr: item osd.3 weight 0.08730 2024-09-18T12:11:17.569 INFO:teuthology.orchestra.run.smithi076.stderr:} 2024-09-18T12:11:17.569 INFO:teuthology.orchestra.run.smithi076.stderr:root default { 2024-09-18T12:11:17.569 INFO:teuthology.orchestra.run.smithi076.stderr: id -1 # do not change unnecessarily 2024-09-18T12:11:17.569 INFO:teuthology.orchestra.run.smithi076.stderr: id -2 class ssd # do not change unnecessarily 2024-09-18T12:11:17.569 INFO:teuthology.orchestra.run.smithi076.stderr: # weight 0.34918 2024-09-18T12:11:17.569 INFO:teuthology.orchestra.run.smithi076.stderr: alg straw2 2024-09-18T12:11:17.569 INFO:teuthology.orchestra.run.smithi076.stderr: hash 0 # rjenkins1 2024-09-18T12:11:17.569 INFO:teuthology.orchestra.run.smithi076.stderr: item smithi076 weight 0.17459 2024-09-18T12:11:17.569 INFO:teuthology.orchestra.run.smithi076.stderr: item smithi160 weight 0.17459 2024-09-18T12:11:17.569 INFO:teuthology.orchestra.run.smithi076.stderr:} 2024-09-18T12:11:17.569 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-09-18T12:11:17.570 INFO:teuthology.orchestra.run.smithi076.stderr:# rules 2024-09-18T12:11:17.570 INFO:teuthology.orchestra.run.smithi076.stderr:rule replicated_rule { 2024-09-18T12:11:17.570 INFO:teuthology.orchestra.run.smithi076.stderr: id 0 2024-09-18T12:11:17.570 INFO:teuthology.orchestra.run.smithi076.stderr: type replicated 2024-09-18T12:11:17.570 INFO:teuthology.orchestra.run.smithi076.stderr: step take default 2024-09-18T12:11:17.570 INFO:teuthology.orchestra.run.smithi076.stderr: step choose firstn 0 type osd 2024-09-18T12:11:17.570 INFO:teuthology.orchestra.run.smithi076.stderr: step emit 2024-09-18T12:11:17.570 INFO:teuthology.orchestra.run.smithi076.stderr:} 2024-09-18T12:11:17.570 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-09-18T12:11:17.570 INFO:teuthology.orchestra.run.smithi076.stderr:# end crush map' 2024-09-18T12:11:17.570 INFO:teuthology.orchestra.run.smithi076.stderr:+ grep -q smithi169 2024-09-18T12:11:18.289 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-09-18T12:11:18.298 INFO:tasks.cephadm:Teardown begin 2024-09-18T12:11:18.299 DEBUG:teuthology.orchestra.run.smithi076:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-18T12:11:18.327 DEBUG:teuthology.orchestra.run.smithi160:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-18T12:11:18.363 DEBUG:teuthology.orchestra.run.smithi169:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-18T12:11:18.398 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-09-18T12:11:18.398 DEBUG:teuthology.orchestra.run.smithi076:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-18T12:11:18.414 DEBUG:teuthology.orchestra.run.smithi160:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-18T12:11:18.432 DEBUG:teuthology.orchestra.run.smithi169:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-18T12:11:18.456 INFO:tasks.cephadm:Stopping all daemons... 2024-09-18T12:11:18.456 INFO:tasks.cephadm.mon.a:Stopping mon.a... 2024-09-18T12:11:18.456 DEBUG:teuthology.orchestra.run.smithi076:> sudo systemctl stop ceph-1afb0892-75b6-11ef-bceb-c7b262605968@mon.a 2024-09-18T12:11:18.572 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:11:18 smithi076 ceph-mon[27582]: pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:11:18.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:11:18 smithi076 ceph-mon[27582]: from='client.? 172.21.15.76:0/2840672534' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-18T12:11:18.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:11:18 smithi076 systemd[1]: Stopping Ceph mon.a for 1afb0892-75b6-11ef-bceb-c7b262605968... 2024-09-18T12:11:18.758 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:11:18 smithi160 ceph-mon[31705]: pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-18T12:11:18.758 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:11:18 smithi160 ceph-mon[31705]: from='client.? 172.21.15.76:0/2840672534' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-18T12:11:19.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:11:18 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mon-a[27578]: 2024-09-18T12:11:18.737+0000 7f61582aa640 -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-18T12:11:19.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:11:18 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mon-a[27578]: 2024-09-18T12:11:18.737+0000 7f61582aa640 -1 mon.a@0(leader) e4 *** Got Signal Terminated *** 2024-09-18T12:11:19.073 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:11:18 smithi076 podman[53549]: 2024-09-18 12:11:18.871255783 +0000 UTC m=+0.233066541 container died 79e55293c26c145e19495deefbe9093a54606e3f28f7ba97a31a07ca71364301 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mon-a, maintainer=Guillaume Abrioux , GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, ceph=True, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0) 2024-09-18T12:11:19.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:11:19 smithi076 podman[53549]: 2024-09-18 12:11:19.321814539 +0000 UTC m=+0.683625343 container cleanup 79e55293c26c145e19495deefbe9093a54606e3f28f7ba97a31a07ca71364301 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mon-a, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, ceph=True, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, GIT_CLEAN=True, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD) 2024-09-18T12:11:19.573 INFO:journalctl@ceph.mon.a.smithi076.stdout:Sep 18 12:11:19 smithi076 bash[53549]: ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mon-a 2024-09-18T12:11:19.794 DEBUG:teuthology.orchestra.run.smithi076:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1afb0892-75b6-11ef-bceb-c7b262605968@mon.a.service' 2024-09-18T12:11:19.838 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-18T12:11:19.838 INFO:tasks.cephadm.mon.a:Stopped mon.a 2024-09-18T12:11:19.838 INFO:tasks.cephadm.mon.c:Stopping mon.b... 2024-09-18T12:11:19.838 DEBUG:teuthology.orchestra.run.smithi160:> sudo systemctl stop ceph-1afb0892-75b6-11ef-bceb-c7b262605968@mon.b 2024-09-18T12:11:20.147 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:11:19 smithi160 systemd[1]: Stopping Ceph mon.b for 1afb0892-75b6-11ef-bceb-c7b262605968... 2024-09-18T12:11:20.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:11:20 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mon-b[31701]: 2024-09-18T12:11:20.145+0000 7fda4be79640 -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-18T12:11:20.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:11:20 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mon-b[31701]: 2024-09-18T12:11:20.145+0000 7fda4be79640 -1 mon.b@1(peon) e4 *** Got Signal Terminated *** 2024-09-18T12:11:20.509 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:11:20 smithi160 podman[46921]: 2024-09-18 12:11:20.309722253 +0000 UTC m=+0.286721723 container died 0e2e36d1333ee6550ab67c2215c3263e25c72ff0a62c87b08821a2a51ca3ff80 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mon-b, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, ceph=True, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_CLEAN=True) 2024-09-18T12:11:20.814 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:11:20 smithi160 podman[46921]: 2024-09-18 12:11:20.587561988 +0000 UTC m=+0.564561448 container cleanup 0e2e36d1333ee6550ab67c2215c3263e25c72ff0a62c87b08821a2a51ca3ff80 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mon-b, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, ceph=True, GIT_BRANCH=HEAD, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0) 2024-09-18T12:11:20.814 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 18 12:11:20 smithi160 bash[46921]: ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mon-b 2024-09-18T12:11:20.967 DEBUG:teuthology.orchestra.run.smithi160:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1afb0892-75b6-11ef-bceb-c7b262605968@mon.b.service' 2024-09-18T12:11:21.012 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-18T12:11:21.012 INFO:tasks.cephadm.mon.c:Stopped mon.b 2024-09-18T12:11:21.013 INFO:tasks.cephadm.mon.c:Stopping mon.c... 2024-09-18T12:11:21.013 DEBUG:teuthology.orchestra.run.smithi169:> sudo systemctl stop ceph-1afb0892-75b6-11ef-bceb-c7b262605968@mon.c 2024-09-18T12:11:21.055 DEBUG:teuthology.orchestra.run.smithi169:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1afb0892-75b6-11ef-bceb-c7b262605968@mon.c.service' 2024-09-18T12:11:21.139 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-18T12:11:21.140 INFO:tasks.cephadm.mon.c:Stopped mon.c 2024-09-18T12:11:21.140 INFO:tasks.cephadm.mgr.a:Stopping mgr.a... 2024-09-18T12:11:21.140 DEBUG:teuthology.orchestra.run.smithi076:> sudo systemctl stop ceph-1afb0892-75b6-11ef-bceb-c7b262605968@mgr.a 2024-09-18T12:11:21.426 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:11:21 smithi076 systemd[1]: Stopping Ceph mgr.a for 1afb0892-75b6-11ef-bceb-c7b262605968... 2024-09-18T12:11:21.718 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:11:21 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:11:21.425+0000 7f575fee2640 -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-18T12:11:21.719 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:11:21 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a[27809]: 2024-09-18T12:11:21.425+0000 7f575fee2640 -1 mgr handle_mgr_signal *** Got signal Terminated *** 2024-09-18T12:11:21.719 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:11:21 smithi076 podman[53669]: 2024-09-18 12:11:21.457058046 +0000 UTC m=+0.122665118 container died ee4318e0173ca0200cccc324ee2342c962a1b3d9b36175e7e46461dea84292a4 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, ceph=True, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, GIT_CLEAN=True, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-18T12:11:22.073 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:11:21 smithi076 podman[53669]: 2024-09-18 12:11:21.909230699 +0000 UTC m=+0.574837764 container cleanup ee4318e0173ca0200cccc324ee2342c962a1b3d9b36175e7e46461dea84292a4 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7061ea6ca50908d104e9f3979dc615e118d9e153, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, io.buildah.version=1.37.2, ceph=True, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, GIT_CLEAN=True, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2) 2024-09-18T12:11:22.073 INFO:journalctl@ceph.mgr.a.smithi076.stdout:Sep 18 12:11:21 smithi076 bash[53669]: ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-a 2024-09-18T12:11:22.483 DEBUG:teuthology.orchestra.run.smithi076:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1afb0892-75b6-11ef-bceb-c7b262605968@mgr.a.service' 2024-09-18T12:11:22.517 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-18T12:11:22.517 INFO:tasks.cephadm.mgr.a:Stopped mgr.a 2024-09-18T12:11:22.517 INFO:tasks.cephadm.mgr.b:Stopping mgr.b... 2024-09-18T12:11:22.517 DEBUG:teuthology.orchestra.run.smithi160:> sudo systemctl stop ceph-1afb0892-75b6-11ef-bceb-c7b262605968@mgr.b 2024-09-18T12:11:22.830 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 18 12:11:22 smithi160 systemd[1]: Stopping Ceph mgr.b for 1afb0892-75b6-11ef-bceb-c7b262605968... 2024-09-18T12:11:23.251 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 18 12:11:22 smithi160 podman[47045]: 2024-09-18 12:11:22.829731376 +0000 UTC m=+0.115133096 container died c23abb8f44dfe236ddd5b928d230bec56c8bbb3f719e63302a385694b431cd69 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-b, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, ceph=True) 2024-09-18T12:11:23.251 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 18 12:11:23 smithi160 podman[47045]: 2024-09-18 12:11:23.250143299 +0000 UTC m=+0.535545057 container cleanup c23abb8f44dfe236ddd5b928d230bec56c8bbb3f719e63302a385694b431cd69 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-b, org.label-schema.vendor=CentOS, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, ceph=True, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-18T12:11:23.509 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 18 12:11:23 smithi160 bash[47045]: ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-b 2024-09-18T12:11:23.509 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 18 12:11:23 smithi160 podman[47059]: 2024-09-18 12:11:23.442902372 +0000 UTC m=+0.605128978 container remove c23abb8f44dfe236ddd5b928d230bec56c8bbb3f719e63302a385694b431cd69 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-mgr-b, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, org.label-schema.schema-version=1.0, ceph=True, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=) 2024-09-18T12:11:23.509 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 18 12:11:23 smithi160 systemd[1]: ceph-1afb0892-75b6-11ef-bceb-c7b262605968@mgr.b.service: Main process exited, code=exited, status=143/n/a 2024-09-18T12:11:23.565 DEBUG:teuthology.orchestra.run.smithi160:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1afb0892-75b6-11ef-bceb-c7b262605968@mgr.b.service' 2024-09-18T12:11:23.599 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-18T12:11:23.599 INFO:tasks.cephadm.mgr.b:Stopped mgr.b 2024-09-18T12:11:23.599 INFO:tasks.cephadm.osd.0:Stopping osd.0... 2024-09-18T12:11:23.599 DEBUG:teuthology.orchestra.run.smithi076:> sudo systemctl stop ceph-1afb0892-75b6-11ef-bceb-c7b262605968@osd.0 2024-09-18T12:11:23.916 INFO:journalctl@ceph.osd.0.smithi076.stdout:Sep 18 12:11:23 smithi076 systemd[1]: Stopping Ceph osd.0 for 1afb0892-75b6-11ef-bceb-c7b262605968... 2024-09-18T12:11:24.323 INFO:journalctl@ceph.osd.0.smithi076.stdout:Sep 18 12:11:23 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-0[39209]: 2024-09-18T12:11:23.913+0000 7fa483bae640 -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-18T12:11:24.323 INFO:journalctl@ceph.osd.0.smithi076.stdout:Sep 18 12:11:23 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-0[39209]: 2024-09-18T12:11:23.913+0000 7fa483bae640 -1 osd.0 50 *** Got signal Terminated *** 2024-09-18T12:11:24.323 INFO:journalctl@ceph.osd.0.smithi076.stdout:Sep 18 12:11:23 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-0[39209]: 2024-09-18T12:11:23.913+0000 7fa483bae640 -1 osd.0 50 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-18T12:11:29.729 INFO:journalctl@ceph.osd.0.smithi076.stdout:Sep 18 12:11:29 smithi076 podman[53789]: 2024-09-18 12:11:29.329235551 +0000 UTC m=+5.547240688 container died 3a70740920cac9c62ed674847e403e03f5829093aaa7a58174414ec84f6ec3c6 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-0, maintainer=Guillaume Abrioux , GIT_CLEAN=True, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, org.label-schema.schema-version=1.0, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=) 2024-09-18T12:11:30.073 INFO:journalctl@ceph.osd.0.smithi076.stdout:Sep 18 12:11:29 smithi076 podman[53789]: 2024-09-18 12:11:29.939040104 +0000 UTC m=+6.157045284 container cleanup 3a70740920cac9c62ed674847e403e03f5829093aaa7a58174414ec84f6ec3c6 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-0, org.label-schema.schema-version=1.0, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, ceph=True, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-18T12:11:30.073 INFO:journalctl@ceph.osd.0.smithi076.stdout:Sep 18 12:11:29 smithi076 bash[53789]: ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-0 2024-09-18T12:11:30.497 INFO:journalctl@ceph.osd.0.smithi076.stdout:Sep 18 12:11:30 smithi076 podman[53804]: 2024-09-18 12:11:30.165580877 +0000 UTC m=+0.826357438 container remove 3a70740920cac9c62ed674847e403e03f5829093aaa7a58174414ec84f6ec3c6 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-0, org.label-schema.license=GPLv2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, GIT_CLEAN=True, ceph=True, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.37.2) 2024-09-18T12:11:30.752 INFO:journalctl@ceph.osd.0.smithi076.stdout:Sep 18 12:11:30 smithi076 podman[53890]: 2024-09-18 12:11:30.398997865 +0000 UTC m=+0.015891486 image pull f2dfd3bedcfd8a352dfcb2d35150edfb80cae3a6389830dbb2d080962a731a96 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9 2024-09-18T12:11:30.752 INFO:journalctl@ceph.osd.0.smithi076.stdout:Sep 18 12:11:30 smithi076 podman[53890]: 2024-09-18 12:11:30.526504713 +0000 UTC m=+0.143398324 container create 9e8b20ac848f1227ec0aee3cb52f3d8e2076aa335a6ec59ff672031749f594a2 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-0-deactivate, GIT_CLEAN=True, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, ceph=True, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731) 2024-09-18T12:11:30.752 INFO:journalctl@ceph.osd.0.smithi076.stdout:Sep 18 12:11:30 smithi076 podman[53890]: 2024-09-18 12:11:30.751765959 +0000 UTC m=+0.368659567 container init 9e8b20ac848f1227ec0aee3cb52f3d8e2076aa335a6ec59ff672031749f594a2 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-0-deactivate, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_CLEAN=True, ceph=True, maintainer=Guillaume Abrioux , RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-18T12:11:31.073 INFO:journalctl@ceph.osd.0.smithi076.stdout:Sep 18 12:11:30 smithi076 podman[53890]: 2024-09-18 12:11:30.755226668 +0000 UTC m=+0.372120287 container start 9e8b20ac848f1227ec0aee3cb52f3d8e2076aa335a6ec59ff672031749f594a2 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-0-deactivate, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, org.label-schema.vendor=CentOS, GIT_CLEAN=True, GIT_BRANCH=HEAD, ceph=True) 2024-09-18T12:11:31.073 INFO:journalctl@ceph.osd.0.smithi076.stdout:Sep 18 12:11:30 smithi076 podman[53890]: 2024-09-18 12:11:30.85205464 +0000 UTC m=+0.468948263 container attach 9e8b20ac848f1227ec0aee3cb52f3d8e2076aa335a6ec59ff672031749f594a2 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-0-deactivate, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, GIT_CLEAN=True, io.buildah.version=1.37.2, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.license=GPLv2) 2024-09-18T12:11:31.073 INFO:journalctl@ceph.osd.0.smithi076.stdout:Sep 18 12:11:30 smithi076 podman[53890]: 2024-09-18 12:11:30.935769797 +0000 UTC m=+0.552663415 container died 9e8b20ac848f1227ec0aee3cb52f3d8e2076aa335a6ec59ff672031749f594a2 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-0-deactivate, GIT_BRANCH=HEAD, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, ceph=True, org.label-schema.license=GPLv2, GIT_CLEAN=True, org.label-schema.schema-version=1.0, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, CEPH_POINT_RELEASE=) 2024-09-18T12:11:31.622 DEBUG:teuthology.orchestra.run.smithi076:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1afb0892-75b6-11ef-bceb-c7b262605968@osd.0.service' 2024-09-18T12:11:31.662 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-18T12:11:31.663 INFO:tasks.cephadm.osd.0:Stopped osd.0 2024-09-18T12:11:31.663 INFO:tasks.cephadm.osd.1:Stopping osd.1... 2024-09-18T12:11:31.663 DEBUG:teuthology.orchestra.run.smithi076:> sudo systemctl stop ceph-1afb0892-75b6-11ef-bceb-c7b262605968@osd.1 2024-09-18T12:11:31.887 INFO:journalctl@ceph.osd.1.smithi076.stdout:Sep 18 12:11:31 smithi076 systemd[1]: Stopping Ceph osd.1 for 1afb0892-75b6-11ef-bceb-c7b262605968... 2024-09-18T12:11:32.324 INFO:journalctl@ceph.osd.1.smithi076.stdout:Sep 18 12:11:31 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-1[44769]: 2024-09-18T12:11:31.983+0000 7fd95af3f640 -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-18T12:11:32.325 INFO:journalctl@ceph.osd.1.smithi076.stdout:Sep 18 12:11:31 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-1[44769]: 2024-09-18T12:11:31.983+0000 7fd95af3f640 -1 osd.1 50 *** Got signal Terminated *** 2024-09-18T12:11:32.325 INFO:journalctl@ceph.osd.1.smithi076.stdout:Sep 18 12:11:31 smithi076 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-1[44769]: 2024-09-18T12:11:31.983+0000 7fd95af3f640 -1 osd.1 50 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-18T12:11:37.735 INFO:journalctl@ceph.osd.1.smithi076.stdout:Sep 18 12:11:37 smithi076 podman[53994]: 2024-09-18 12:11:37.477790079 +0000 UTC m=+5.592804497 container died 2d48a24603ff4fa57585c467190a7b44bf7b27cbf7566db0cfa12401967a6e61 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-1, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, io.buildah.version=1.37.2, ceph=True, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0) 2024-09-18T12:11:38.073 INFO:journalctl@ceph.osd.1.smithi076.stdout:Sep 18 12:11:37 smithi076 podman[53994]: 2024-09-18 12:11:37.925176952 +0000 UTC m=+6.040191407 container cleanup 2d48a24603ff4fa57585c467190a7b44bf7b27cbf7566db0cfa12401967a6e61 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-1, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, GIT_CLEAN=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.vendor=CentOS) 2024-09-18T12:11:38.073 INFO:journalctl@ceph.osd.1.smithi076.stdout:Sep 18 12:11:37 smithi076 bash[53994]: ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-1 2024-09-18T12:11:38.507 INFO:journalctl@ceph.osd.1.smithi076.stdout:Sep 18 12:11:38 smithi076 podman[54021]: 2024-09-18 12:11:38.101354459 +0000 UTC m=+0.615634685 container remove 2d48a24603ff4fa57585c467190a7b44bf7b27cbf7566db0cfa12401967a6e61 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-1, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, org.label-schema.license=GPLv2) 2024-09-18T12:11:38.813 INFO:journalctl@ceph.osd.1.smithi076.stdout:Sep 18 12:11:38 smithi076 podman[54113]: 2024-09-18 12:11:38.408700961 +0000 UTC m=+0.015673253 image pull f2dfd3bedcfd8a352dfcb2d35150edfb80cae3a6389830dbb2d080962a731a96 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9 2024-09-18T12:11:38.813 INFO:journalctl@ceph.osd.1.smithi076.stdout:Sep 18 12:11:38 smithi076 podman[54113]: 2024-09-18 12:11:38.518811202 +0000 UTC m=+0.125783488 container create 0493bd52f8b20ff7c9bd12dcee516254482eb13dc0b21bf5ca39d4e1b768ad73 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-1-deactivate, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240731, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, ceph=True) 2024-09-18T12:11:38.813 INFO:journalctl@ceph.osd.1.smithi076.stdout:Sep 18 12:11:38 smithi076 podman[54113]: 2024-09-18 12:11:38.737556817 +0000 UTC m=+0.344529111 container init 0493bd52f8b20ff7c9bd12dcee516254482eb13dc0b21bf5ca39d4e1b768ad73 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-1-deactivate, GIT_BRANCH=HEAD, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, GIT_CLEAN=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0) 2024-09-18T12:11:38.814 INFO:journalctl@ceph.osd.1.smithi076.stdout:Sep 18 12:11:38 smithi076 podman[54113]: 2024-09-18 12:11:38.740696191 +0000 UTC m=+0.347668470 container start 0493bd52f8b20ff7c9bd12dcee516254482eb13dc0b21bf5ca39d4e1b768ad73 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-1-deactivate, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, GIT_BRANCH=HEAD, ceph=True, CEPH_POINT_RELEASE=, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, org.label-schema.schema-version=1.0, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.vendor=CentOS) 2024-09-18T12:11:38.814 INFO:journalctl@ceph.osd.1.smithi076.stdout:Sep 18 12:11:38 smithi076 podman[54113]: 2024-09-18 12:11:38.812540615 +0000 UTC m=+0.419512904 container attach 0493bd52f8b20ff7c9bd12dcee516254482eb13dc0b21bf5ca39d4e1b768ad73 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-1-deactivate, org.label-schema.vendor=CentOS, ceph=True, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, GIT_CLEAN=True, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-18T12:11:39.073 INFO:journalctl@ceph.osd.1.smithi076.stdout:Sep 18 12:11:38 smithi076 podman[54113]: 2024-09-18 12:11:38.914195625 +0000 UTC m=+0.521167904 container died 0493bd52f8b20ff7c9bd12dcee516254482eb13dc0b21bf5ca39d4e1b768ad73 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-1-deactivate, org.label-schema.build-date=20240731, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, CEPH_POINT_RELEASE=) 2024-09-18T12:11:39.478 DEBUG:teuthology.orchestra.run.smithi076:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1afb0892-75b6-11ef-bceb-c7b262605968@osd.1.service' 2024-09-18T12:11:39.517 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-18T12:11:39.517 INFO:tasks.cephadm.osd.1:Stopped osd.1 2024-09-18T12:11:39.517 INFO:tasks.cephadm.osd.2:Stopping osd.2... 2024-09-18T12:11:39.517 DEBUG:teuthology.orchestra.run.smithi160:> sudo systemctl stop ceph-1afb0892-75b6-11ef-bceb-c7b262605968@osd.2 2024-09-18T12:11:40.008 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 18 12:11:39 smithi160 systemd[1]: Stopping Ceph osd.2 for 1afb0892-75b6-11ef-bceb-c7b262605968... 2024-09-18T12:11:40.009 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 18 12:11:39 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-2[35894]: 2024-09-18T12:11:39.785+0000 7f2822008640 -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-18T12:11:40.009 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 18 12:11:39 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-2[35894]: 2024-09-18T12:11:39.785+0000 7f2822008640 -1 osd.2 50 *** Got signal Terminated *** 2024-09-18T12:11:40.009 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 18 12:11:39 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-2[35894]: 2024-09-18T12:11:39.785+0000 7f2822008640 -1 osd.2 50 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-18T12:11:45.496 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 18 12:11:45 smithi160 podman[47168]: 2024-09-18 12:11:45.174289191 +0000 UTC m=+5.464403142 container died fd2492e5ef3ecea67a4464d2dc9e837045dbc857d3c1f8f5710401fdd6ea730b (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-2, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, ceph=True, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, GIT_CLEAN=True, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, org.label-schema.license=GPLv2) 2024-09-18T12:11:45.759 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 18 12:11:45 smithi160 podman[47168]: 2024-09-18 12:11:45.568448019 +0000 UTC m=+5.858561966 container cleanup fd2492e5ef3ecea67a4464d2dc9e837045dbc857d3c1f8f5710401fdd6ea730b (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-2, org.label-schema.license=GPLv2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, org.label-schema.build-date=20240731, GIT_CLEAN=True, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.37.2) 2024-09-18T12:11:45.759 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 18 12:11:45 smithi160 bash[47168]: ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-2 2024-09-18T12:11:46.104 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 18 12:11:45 smithi160 podman[47183]: 2024-09-18 12:11:45.806145176 +0000 UTC m=+0.628104068 container remove fd2492e5ef3ecea67a4464d2dc9e837045dbc857d3c1f8f5710401fdd6ea730b (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-2, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_CLEAN=True, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.license=GPLv2, ceph=True, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-18T12:11:46.415 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 18 12:11:46 smithi160 podman[47270]: 2024-09-18 12:11:46.103974197 +0000 UTC m=+0.104663243 container create 340f879f6be6a53eddf6a69c63d7de33804dc387c64280fa15168c5735959051 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-2-deactivate, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, GIT_CLEAN=True, io.buildah.version=1.37.2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731) 2024-09-18T12:11:46.415 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 18 12:11:46 smithi160 podman[47270]: 2024-09-18 12:11:46.015205526 +0000 UTC m=+0.015894581 image pull f2dfd3bedcfd8a352dfcb2d35150edfb80cae3a6389830dbb2d080962a731a96 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9 2024-09-18T12:11:46.415 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 18 12:11:46 smithi160 podman[47270]: 2024-09-18 12:11:46.331177707 +0000 UTC m=+0.331866753 container init 340f879f6be6a53eddf6a69c63d7de33804dc387c64280fa15168c5735959051 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-2-deactivate, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, GIT_CLEAN=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731) 2024-09-18T12:11:46.415 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 18 12:11:46 smithi160 podman[47270]: 2024-09-18 12:11:46.334430706 +0000 UTC m=+0.335119754 container start 340f879f6be6a53eddf6a69c63d7de33804dc387c64280fa15168c5735959051 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-2-deactivate, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, org.label-schema.build-date=20240731, ceph=True, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-18T12:11:46.415 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 18 12:11:46 smithi160 podman[47270]: 2024-09-18 12:11:46.414403413 +0000 UTC m=+0.415092475 container attach 340f879f6be6a53eddf6a69c63d7de33804dc387c64280fa15168c5735959051 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-2-deactivate, GIT_CLEAN=True, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, ceph=True, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965) 2024-09-18T12:11:46.759 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 18 12:11:46 smithi160 podman[47270]: 2024-09-18 12:11:46.510933387 +0000 UTC m=+0.511622442 container died 340f879f6be6a53eddf6a69c63d7de33804dc387c64280fa15168c5735959051 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-2-deactivate, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, GIT_CLEAN=True, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, io.buildah.version=1.37.2, ceph=True, org.label-schema.license=GPLv2) 2024-09-18T12:11:47.066 DEBUG:teuthology.orchestra.run.smithi160:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1afb0892-75b6-11ef-bceb-c7b262605968@osd.2.service' 2024-09-18T12:11:47.104 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-18T12:11:47.104 INFO:tasks.cephadm.osd.2:Stopped osd.2 2024-09-18T12:11:47.104 INFO:tasks.cephadm.osd.3:Stopping osd.3... 2024-09-18T12:11:47.105 DEBUG:teuthology.orchestra.run.smithi160:> sudo systemctl stop ceph-1afb0892-75b6-11ef-bceb-c7b262605968@osd.3 2024-09-18T12:11:47.327 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 18 12:11:47 smithi160 systemd[1]: Stopping Ceph osd.3 for 1afb0892-75b6-11ef-bceb-c7b262605968... 2024-09-18T12:11:47.759 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 18 12:11:47 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-3[41799]: 2024-09-18T12:11:47.452+0000 7f5cb0afb640 -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-18T12:11:47.759 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 18 12:11:47 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-3[41799]: 2024-09-18T12:11:47.452+0000 7f5cb0afb640 -1 osd.3 50 *** Got signal Terminated *** 2024-09-18T12:11:47.759 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 18 12:11:47 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-3[41799]: 2024-09-18T12:11:47.452+0000 7f5cb0afb640 -1 osd.3 50 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-18T12:11:50.758 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 18 12:11:50 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-3[41799]: 2024-09-18T12:11:50.357+0000 7f5cac111640 -1 osd.3 50 heartbeat_check: no reply from 172.21.15.76:6806 osd.0 since back 2024-09-18T12:11:25.189650+0000 front 2024-09-18T12:11:25.189535+0000 (oldest deadline 2024-09-18T12:11:49.889486+0000) 2024-09-18T12:11:51.758 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 18 12:11:51 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-3[41799]: 2024-09-18T12:11:51.372+0000 7f5cac111640 -1 osd.3 50 heartbeat_check: no reply from 172.21.15.76:6806 osd.0 since back 2024-09-18T12:11:25.189650+0000 front 2024-09-18T12:11:25.189535+0000 (oldest deadline 2024-09-18T12:11:49.889486+0000) 2024-09-18T12:11:52.758 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 18 12:11:52 smithi160 ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-3[41799]: 2024-09-18T12:11:52.387+0000 7f5cac111640 -1 osd.3 50 heartbeat_check: no reply from 172.21.15.76:6806 osd.0 since back 2024-09-18T12:11:25.189650+0000 front 2024-09-18T12:11:25.189535+0000 (oldest deadline 2024-09-18T12:11:49.889486+0000) 2024-09-18T12:11:53.237 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 18 12:11:52 smithi160 podman[47372]: 2024-09-18 12:11:52.892684762 +0000 UTC m=+5.560358246 container died e83d15ec40b1919e584a04d26a305802ed2732f78fd20a22cab5f10c73b5e9a2 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-3, io.buildah.version=1.37.2, GIT_BRANCH=HEAD, GIT_CLEAN=True, ceph=True, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731) 2024-09-18T12:11:53.237 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 18 12:11:53 smithi160 podman[47372]: 2024-09-18 12:11:53.236668269 +0000 UTC m=+5.904341741 container cleanup e83d15ec40b1919e584a04d26a305802ed2732f78fd20a22cab5f10c73b5e9a2 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-3, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, io.buildah.version=1.37.2, GIT_CLEAN=True, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731) 2024-09-18T12:11:53.508 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 18 12:11:53 smithi160 bash[47372]: ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-3 2024-09-18T12:11:53.509 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 18 12:11:53 smithi160 podman[47399]: 2024-09-18 12:11:53.429453048 +0000 UTC m=+0.535075092 container remove e83d15ec40b1919e584a04d26a305802ed2732f78fd20a22cab5f10c73b5e9a2 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-3, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, GIT_CLEAN=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, ceph=True, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0) 2024-09-18T12:11:54.195 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 18 12:11:53 smithi160 podman[47488]: 2024-09-18 12:11:53.740739192 +0000 UTC m=+0.015822620 image pull f2dfd3bedcfd8a352dfcb2d35150edfb80cae3a6389830dbb2d080962a731a96 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9 2024-09-18T12:11:54.195 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 18 12:11:53 smithi160 podman[47488]: 2024-09-18 12:11:53.83827137 +0000 UTC m=+0.113354779 container create 95da3238afebc769a868caa6473bd338346ab2641ccfe1be18f74810415e0a88 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-3-deactivate, GIT_CLEAN=True, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, ceph=True, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-18T12:11:54.196 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 18 12:11:54 smithi160 podman[47488]: 2024-09-18 12:11:54.015949178 +0000 UTC m=+0.291032607 container init 95da3238afebc769a868caa6473bd338346ab2641ccfe1be18f74810415e0a88 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-3-deactivate, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, maintainer=Guillaume Abrioux , GIT_CLEAN=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, 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, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731) 2024-09-18T12:11:54.196 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 18 12:11:54 smithi160 podman[47488]: 2024-09-18 12:11:54.019485278 +0000 UTC m=+0.294568695 container start 95da3238afebc769a868caa6473bd338346ab2641ccfe1be18f74810415e0a88 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-3-deactivate, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, ceph=True, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, GIT_CLEAN=True) 2024-09-18T12:11:54.196 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 18 12:11:54 smithi160 podman[47488]: 2024-09-18 12:11:54.073666721 +0000 UTC m=+0.348750139 container attach 95da3238afebc769a868caa6473bd338346ab2641ccfe1be18f74810415e0a88 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-3-deactivate, ceph=True, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD) 2024-09-18T12:11:54.468 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 18 12:11:54 smithi160 podman[47488]: 2024-09-18 12:11:54.194756629 +0000 UTC m=+0.469840045 container died 95da3238afebc769a868caa6473bd338346ab2641ccfe1be18f74810415e0a88 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-3-deactivate, ceph=True, GIT_CLEAN=True, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, GIT_REPO=git@github.com:ceph/ceph-container.git, 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, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.vendor=CentOS) 2024-09-18T12:11:54.709 DEBUG:teuthology.orchestra.run.smithi160:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1afb0892-75b6-11ef-bceb-c7b262605968@osd.3.service' 2024-09-18T12:11:54.733 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 18 12:11:54 smithi160 podman[47510]: 2024-09-18 12:11:54.693119334 +0000 UTC m=+0.491306494 container remove 95da3238afebc769a868caa6473bd338346ab2641ccfe1be18f74810415e0a88 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:cb120a6b46da6dc9ef8e5823ee6ffcecedd484583d1744ffc3f0e661425145e9, name=ceph-1afb0892-75b6-11ef-bceb-c7b262605968-osd-3-deactivate, org.label-schema.license=GPLv2, RELEASE=wip-bharath11-testing-2024-09-18-1115-quincy-7061ea6, io.buildah.version=1.37.2, ceph=True, org.label-schema.build-date=20240731, GIT_CLEAN=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-18T12:11:54.733 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 18 12:11:54 smithi160 systemd[1]: ceph-1afb0892-75b6-11ef-bceb-c7b262605968@osd.3.service: Deactivated successfully. 2024-09-18T12:11:54.733 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 18 12:11:54 smithi160 systemd[1]: Stopped Ceph osd.3 for 1afb0892-75b6-11ef-bceb-c7b262605968. 2024-09-18T12:11:54.734 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 18 12:11:54 smithi160 systemd[1]: ceph-1afb0892-75b6-11ef-bceb-c7b262605968@osd.3.service: Consumed 1.931s CPU time. 2024-09-18T12:11:54.749 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-18T12:11:54.749 INFO:tasks.cephadm.osd.3:Stopped osd.3 2024-09-18T12:11:54.749 INFO:tasks.cephadm.osd.4:Stopping osd.4... 2024-09-18T12:11:54.749 DEBUG:teuthology.orchestra.run.smithi169:> sudo systemctl stop ceph-1afb0892-75b6-11ef-bceb-c7b262605968@osd.4 2024-09-18T12:11:54.795 DEBUG:teuthology.orchestra.run.smithi169:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1afb0892-75b6-11ef-bceb-c7b262605968@osd.4.service' 2024-09-18T12:11:54.832 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-18T12:11:54.832 INFO:tasks.cephadm.osd.4:Stopped osd.4 2024-09-18T12:11:54.833 INFO:tasks.cephadm.osd.5:Stopping osd.5... 2024-09-18T12:11:54.833 DEBUG:teuthology.orchestra.run.smithi169:> sudo systemctl stop ceph-1afb0892-75b6-11ef-bceb-c7b262605968@osd.5 2024-09-18T12:11:54.911 DEBUG:teuthology.orchestra.run.smithi169:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1afb0892-75b6-11ef-bceb-c7b262605968@osd.5.service' 2024-09-18T12:11:54.984 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-18T12:11:54.984 INFO:tasks.cephadm.osd.5:Stopped osd.5 2024-09-18T12:11:54.984 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-18T12:11:56.355 DEBUG:teuthology.orchestra.run.smithi160:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-18T12:11:57.732 DEBUG:teuthology.orchestra.run.smithi169:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-18T12:11:58.332 DEBUG:teuthology.orchestra.run.smithi076:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-18T12:11:58.363 DEBUG:teuthology.orchestra.run.smithi160:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-18T12:11:58.392 DEBUG:teuthology.orchestra.run.smithi169:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-18T12:11:58.418 INFO:tasks.cephadm:Archiving crash dumps... 2024-09-18T12:11:58.420 DEBUG:teuthology.misc:Transferring archived files from smithi076:/var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/skanta-2024-09-18_09:13:00-rados-wip-bharath11-testing-2024-09-18-1115-quincy-distro-default-smithi/7911007/remote/smithi076/crash 2024-09-18T12:11:58.421 DEBUG:teuthology.orchestra.run.smithi076:> sudo tar c -f - -C /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/crash -- . 2024-09-18T12:11:58.465 INFO:teuthology.orchestra.run.smithi076.stderr:tar: /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-18T12:11:58.465 INFO:teuthology.orchestra.run.smithi076.stderr:tar: Error is not recoverable: exiting now 2024-09-18T12:11:58.467 DEBUG:teuthology.misc:Transferring archived files from smithi160:/var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/skanta-2024-09-18_09:13:00-rados-wip-bharath11-testing-2024-09-18-1115-quincy-distro-default-smithi/7911007/remote/smithi160/crash 2024-09-18T12:11:58.468 DEBUG:teuthology.orchestra.run.smithi160:> sudo tar c -f - -C /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/crash -- . 2024-09-18T12:11:58.515 INFO:teuthology.orchestra.run.smithi160.stderr:tar: /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-18T12:11:58.515 INFO:teuthology.orchestra.run.smithi160.stderr:tar: Error is not recoverable: exiting now 2024-09-18T12:11:58.517 DEBUG:teuthology.misc:Transferring archived files from smithi169:/var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/skanta-2024-09-18_09:13:00-rados-wip-bharath11-testing-2024-09-18-1115-quincy-distro-default-smithi/7911007/remote/smithi169/crash 2024-09-18T12:11:58.518 DEBUG:teuthology.orchestra.run.smithi169:> sudo tar c -f - -C /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/crash -- . 2024-09-18T12:11:58.557 INFO:teuthology.orchestra.run.smithi169.stderr:tar: /var/lib/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-18T12:11:58.557 INFO:teuthology.orchestra.run.smithi169.stderr:tar: Error is not recoverable: exiting now 2024-09-18T12:11:58.558 INFO:tasks.cephadm:Checking cluster log for badness... 2024-09-18T12:11:58.559 DEBUG:teuthology.orchestra.run.smithi076:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/1afb0892-75b6-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' | head -n 1 2024-09-18T12:11:58.587 INFO:teuthology.orchestra.run.smithi076.stderr:grep: /var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph.log: No such file or directory 2024-09-18T12:11:58.589 INFO:tasks.cephadm:Compressing logs... 2024-09-18T12:11:58.589 DEBUG:teuthology.orchestra.run.smithi076:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-09-18T12:11:58.631 DEBUG:teuthology.orchestra.run.smithi160:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-09-18T12:11:58.634 DEBUG:teuthology.orchestra.run.smithi169:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-09-18T12:11:58.656 INFO:teuthology.orchestra.run.smithi076.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-osd.0.log 2024-09-18T12:11:58.656 INFO:teuthology.orchestra.run.smithi076.stderr:: No such file or directory 2024-09-18T12:11:58.656 INFO:teuthology.orchestra.run.smithi076.stderr:gzip -5 --verbose -- /var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-osd.1.log 2024-09-18T12:11:58.656 INFO:teuthology.orchestra.run.smithi076.stderr:/var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-mgr.a.log 2024-09-18T12:11:58.656 INFO:teuthology.orchestra.run.smithi076.stderr:/var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-osd.1.log: gzip -5 --verbose -- /var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-volume.log 2024-09-18T12:11:58.657 INFO:teuthology.orchestra.run.smithi076.stderr:/var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-mgr.a.log: gzip -5 --verbose -- /var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-mon.a.log 2024-09-18T12:11:58.657 INFO:teuthology.orchestra.run.smithi076.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-18T12:11:58.658 INFO:teuthology.orchestra.run.smithi160.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-volume.log 2024-09-18T12:11:58.658 INFO:teuthology.orchestra.run.smithi160.stderr:: No such file or directory 2024-09-18T12:11:58.658 INFO:teuthology.orchestra.run.smithi160.stderr:gzip -5 --verbose -- /var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-mgr.b.log 2024-09-18T12:11:58.659 INFO:teuthology.orchestra.run.smithi160.stderr:gzip -5 --verbose -- /var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-osd.2.log 2024-09-18T12:11:58.659 INFO:teuthology.orchestra.run.smithi160.stderr:/var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-volume.log: /var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-mgr.b.log: gzip -5 --verbose -- /var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-mon.b.log 2024-09-18T12:11:58.661 INFO:teuthology.orchestra.run.smithi160.stderr:/var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-osd.2.log: gzip -5 --verbose -- /var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-osd.3.log 2024-09-18T12:11:58.661 INFO:teuthology.orchestra.run.smithi160.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-18T12:11:58.661 INFO:teuthology.orchestra.run.smithi160.stderr:/var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-mon.b.log: /var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-osd.3.log: /var/log/ceph/cephadm.log: 90.3% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-18T12:11:58.662 INFO:teuthology.orchestra.run.smithi169.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-volume.log 2024-09-18T12:11:58.662 INFO:teuthology.orchestra.run.smithi169.stderr:: No such file or directory 2024-09-18T12:11:58.662 INFO:teuthology.orchestra.run.smithi169.stderr:gzip -5 --verbose -- /var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-osd.4.log 2024-09-18T12:11:58.662 INFO:teuthology.orchestra.run.smithi169.stderr:gzip -5 --verbose -- /var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-mon.c.log 2024-09-18T12:11:58.662 INFO:teuthology.orchestra.run.smithi169.stderr:/var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-volume.log: /var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-osd.4.log: gzip -5 --verbose -- /var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-osd.5.log 2024-09-18T12:11:58.662 INFO:teuthology.orchestra.run.smithi169.stderr:/var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-mon.c.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-18T12:11:58.662 INFO:teuthology.orchestra.run.smithi169.stderr:/var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-osd.5.log: /var/log/ceph/cephadm.log: 91.1% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-18T12:11:58.663 INFO:teuthology.orchestra.run.smithi160.stderr: 90.9% -- replaced with /var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-mgr.b.log.gz 2024-09-18T12:11:58.663 INFO:teuthology.orchestra.run.smithi076.stderr:/var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-volume.log: /var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-mon.a.log: /var/log/ceph/cephadm.log: 90.5% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-18T12:11:58.663 INFO:teuthology.orchestra.run.smithi076.stderr: 91.2% -- replaced with /var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-volume.log.gz 2024-09-18T12:11:58.664 INFO:teuthology.orchestra.run.smithi169.stderr: 91.3% -- replaced with /var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-volume.log.gz 2024-09-18T12:11:58.664 INFO:teuthology.orchestra.run.smithi160.stderr: 91.2% -- replaced with /var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-volume.log.gz 2024-09-18T12:11:58.686 INFO:teuthology.orchestra.run.smithi169.stderr: 92.9% -- replaced with /var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-osd.4.log.gz 2024-09-18T12:11:58.687 INFO:teuthology.orchestra.run.smithi169.stderr: 92.7% -- replaced with /var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-osd.5.log.gz 2024-09-18T12:11:58.688 INFO:teuthology.orchestra.run.smithi076.stderr: 93.0% -- replaced with /var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-osd.1.log.gz 2024-09-18T12:11:58.693 INFO:teuthology.orchestra.run.smithi076.stderr: 92.9% -- replaced with /var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-osd.0.log.gz 2024-09-18T12:11:58.700 INFO:teuthology.orchestra.run.smithi160.stderr: 93.0% -- replaced with /var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-osd.3.log.gz 2024-09-18T12:11:58.707 INFO:teuthology.orchestra.run.smithi169.stderr: 92.6% -- replaced with /var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-mon.c.log.gz 2024-09-18T12:11:58.709 INFO:teuthology.orchestra.run.smithi169.stderr: 2024-09-18T12:11:58.709 INFO:teuthology.orchestra.run.smithi169.stderr:real 0m0.060s 2024-09-18T12:11:58.709 INFO:teuthology.orchestra.run.smithi169.stderr:user 0m0.119s 2024-09-18T12:11:58.709 INFO:teuthology.orchestra.run.smithi169.stderr:sys 0m0.013s 2024-09-18T12:11:58.716 INFO:teuthology.orchestra.run.smithi076.stderr: 89.4% -- replaced with /var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-mgr.a.log.gz 2024-09-18T12:11:58.727 INFO:teuthology.orchestra.run.smithi160.stderr: 92.3% -- replaced with /var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-mon.b.log.gz 2024-09-18T12:11:58.730 INFO:teuthology.orchestra.run.smithi160.stderr: 93.2% -- replaced with /var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-osd.2.log.gz 2024-09-18T12:11:58.732 INFO:teuthology.orchestra.run.smithi160.stderr: 2024-09-18T12:11:58.732 INFO:teuthology.orchestra.run.smithi160.stderr:real 0m0.084s 2024-09-18T12:11:58.732 INFO:teuthology.orchestra.run.smithi160.stderr:user 0m0.180s 2024-09-18T12:11:58.732 INFO:teuthology.orchestra.run.smithi160.stderr:sys 0m0.036s 2024-09-18T12:11:58.845 INFO:teuthology.orchestra.run.smithi076.stderr: 90.9% -- replaced with /var/log/ceph/1afb0892-75b6-11ef-bceb-c7b262605968/ceph-mon.a.log.gz 2024-09-18T12:11:58.847 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-09-18T12:11:58.847 INFO:teuthology.orchestra.run.smithi076.stderr:real 0m0.203s 2024-09-18T12:11:58.847 INFO:teuthology.orchestra.run.smithi076.stderr:user 0m0.320s 2024-09-18T12:11:58.847 INFO:teuthology.orchestra.run.smithi076.stderr:sys 0m0.032s 2024-09-18T12:11:58.848 INFO:tasks.cephadm:Archiving logs... 2024-09-18T12:11:58.848 DEBUG:teuthology.misc:Transferring archived files from smithi076:/var/log/ceph to /home/teuthworker/archive/skanta-2024-09-18_09:13:00-rados-wip-bharath11-testing-2024-09-18-1115-quincy-distro-default-smithi/7911007/remote/smithi076/log 2024-09-18T12:11:58.849 DEBUG:teuthology.orchestra.run.smithi076:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-18T12:11:58.979 DEBUG:teuthology.misc:Transferring archived files from smithi160:/var/log/ceph to /home/teuthworker/archive/skanta-2024-09-18_09:13:00-rados-wip-bharath11-testing-2024-09-18-1115-quincy-distro-default-smithi/7911007/remote/smithi160/log 2024-09-18T12:11:58.980 DEBUG:teuthology.orchestra.run.smithi160:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-18T12:11:59.034 DEBUG:teuthology.misc:Transferring archived files from smithi169:/var/log/ceph to /home/teuthworker/archive/skanta-2024-09-18_09:13:00-rados-wip-bharath11-testing-2024-09-18-1115-quincy-distro-default-smithi/7911007/remote/smithi169/log 2024-09-18T12:11:59.035 DEBUG:teuthology.orchestra.run.smithi169:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-18T12:11:59.076 INFO:tasks.cephadm:Removing cluster... 2024-09-18T12:11:59.076 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 --force 2024-09-18T12:11:59.566 DEBUG:teuthology.orchestra.run.smithi160:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 --force 2024-09-18T12:12:00.024 DEBUG:teuthology.orchestra.run.smithi169:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 1afb0892-75b6-11ef-bceb-c7b262605968 --force 2024-09-18T12:12:00.491 INFO:tasks.cephadm:Removing cephadm ... 2024-09-18T12:12:00.491 DEBUG:teuthology.orchestra.run.smithi076:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-18T12:12:00.507 DEBUG:teuthology.orchestra.run.smithi160:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-18T12:12:00.523 DEBUG:teuthology.orchestra.run.smithi169:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-18T12:12:00.539 INFO:tasks.cephadm:Teardown complete 2024-09-18T12:12:00.539 DEBUG:teuthology.run_tasks:Unwinding manager install 2024-09-18T12:12:00.549 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-18T12:12:00.549 DEBUG:teuthology.orchestra.run.smithi076:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-18T12:12:00.551 DEBUG:teuthology.orchestra.run.smithi160:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-18T12:12:00.565 DEBUG:teuthology.orchestra.run.smithi169:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-18T12:12:00.675 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-09-18T12:12:00.684 INFO:teuthology.task.clock:Checking final clock skew... 2024-09-18T12:12:00.685 DEBUG:teuthology.orchestra.run.smithi076:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-18T12:12:00.687 DEBUG:teuthology.orchestra.run.smithi160:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-18T12:12:00.690 DEBUG:teuthology.orchestra.run.smithi169:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-18T12:12:00.699 INFO:teuthology.orchestra.run.smithi076.stderr:bash: line 1: ntpq: command not found 2024-09-18T12:12:00.702 INFO:teuthology.orchestra.run.smithi160.stderr:bash: line 1: ntpq: command not found 2024-09-18T12:12:00.703 INFO:teuthology.orchestra.run.smithi076.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-18T12:12:00.703 INFO:teuthology.orchestra.run.smithi076.stdout:=============================================================================== 2024-09-18T12:12:00.703 INFO:teuthology.orchestra.run.smithi076.stdout:^* hv01.front.sepia.ceph.com 3 6 377 27 +13us[ +20us] +/- 40ms 2024-09-18T12:12:00.703 INFO:teuthology.orchestra.run.smithi076.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 30 -1280us[-1273us] +/- 62ms 2024-09-18T12:12:00.704 INFO:teuthology.orchestra.run.smithi076.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 29 +1354us[+1362us] +/- 63ms 2024-09-18T12:12:00.704 INFO:teuthology.orchestra.run.smithi076.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-18T12:12:00.704 INFO:teuthology.orchestra.run.smithi169.stderr:bash: line 1: ntpq: command not found 2024-09-18T12:12:00.707 INFO:teuthology.orchestra.run.smithi160.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-18T12:12:00.707 INFO:teuthology.orchestra.run.smithi160.stdout:=============================================================================== 2024-09-18T12:12:00.707 INFO:teuthology.orchestra.run.smithi160.stdout:^* hv01.front.sepia.ceph.com 3 6 377 28 +27us[ +26us] +/- 40ms 2024-09-18T12:12:00.707 INFO:teuthology.orchestra.run.smithi160.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 31 -1265us[-1266us] +/- 62ms 2024-09-18T12:12:00.707 INFO:teuthology.orchestra.run.smithi160.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 30 +1374us[+1372us] +/- 63ms 2024-09-18T12:12:00.707 INFO:teuthology.orchestra.run.smithi160.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-18T12:12:00.708 INFO:teuthology.orchestra.run.smithi169.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-18T12:12:00.708 INFO:teuthology.orchestra.run.smithi169.stdout:=============================================================================== 2024-09-18T12:12:00.708 INFO:teuthology.orchestra.run.smithi169.stdout:^* hv01.front.sepia.ceph.com 3 6 377 29 +52us[ +60us] +/- 40ms 2024-09-18T12:12:00.708 INFO:teuthology.orchestra.run.smithi169.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 30 -1249us[-1241us] +/- 63ms 2024-09-18T12:12:00.708 INFO:teuthology.orchestra.run.smithi169.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 28 +1380us[+1380us] +/- 63ms 2024-09-18T12:12:00.709 INFO:teuthology.orchestra.run.smithi169.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-18T12:12:00.709 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-09-18T12:12:00.718 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-09-18T12:12:00.719 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-09-18T12:12:00.729 DEBUG:teuthology.orchestra.run.smithi076:> 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-18T12:12:00.811 DEBUG:teuthology.orchestra.run.smithi160:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-09-18T12:12:00.877 DEBUG:teuthology.orchestra.run.smithi169:> 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-18T12:12:00.942 DEBUG:teuthology.orchestra.run.smithi076:> 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-18T12:12:00.970 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-18T12:12:00.970 DEBUG:teuthology.orchestra.run.smithi160:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 2024-09-18T12:12:00.997 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-18T12:12:00.998 DEBUG:teuthology.orchestra.run.smithi169:> 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-18T12:12:01.024 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-18T12:12:01.025 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-09-18T12:12:01.034 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-09-18T12:12:01.043 INFO:teuthology.task.internal:Duration was 848.230550 seconds 2024-09-18T12:12:01.043 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-09-18T12:12:01.052 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-09-18T12:12:01.052 DEBUG:teuthology.orchestra.run.smithi076:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-18T12:12:01.054 DEBUG:teuthology.orchestra.run.smithi160:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-18T12:12:01.056 DEBUG:teuthology.orchestra.run.smithi169:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-18T12:12:01.091 INFO:teuthology.orchestra.run.smithi076.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-18T12:12:01.092 INFO:teuthology.orchestra.run.smithi160.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-18T12:12:01.103 INFO:teuthology.orchestra.run.smithi169.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-18T12:12:01.611 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-09-18T12:12:01.611 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi076.front.sepia.ceph.com 2024-09-18T12:12:01.611 DEBUG:teuthology.orchestra.run.smithi076:> 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-18T12:12:01.673 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi160.front.sepia.ceph.com 2024-09-18T12:12:01.674 DEBUG:teuthology.orchestra.run.smithi160:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-09-18T12:12:01.707 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi169.front.sepia.ceph.com 2024-09-18T12:12:01.708 DEBUG:teuthology.orchestra.run.smithi169:> 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-18T12:12:01.730 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-09-18T12:12:01.731 DEBUG:teuthology.orchestra.run.smithi076:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-18T12:12:01.734 DEBUG:teuthology.orchestra.run.smithi160:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-18T12:12:01.750 DEBUG:teuthology.orchestra.run.smithi169:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-18T12:12:01.798 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-09-18T12:12:01.798 DEBUG:teuthology.orchestra.run.smithi076:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-18T12:12:01.801 DEBUG:teuthology.orchestra.run.smithi160:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-18T12:12:01.818 DEBUG:teuthology.orchestra.run.smithi169:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-18T12:12:01.991 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-09-18T12:12:02.001 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-09-18T12:12:02.002 DEBUG:teuthology.orchestra.run.smithi076:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-18T12:12:02.027 DEBUG:teuthology.orchestra.run.smithi160:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-18T12:12:02.052 DEBUG:teuthology.orchestra.run.smithi169:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-18T12:12:02.078 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-09-18T12:12:02.088 DEBUG:teuthology.orchestra.run.smithi076:> 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-18T12:12:02.090 DEBUG:teuthology.orchestra.run.smithi160:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-09-18T12:12:02.094 DEBUG:teuthology.orchestra.run.smithi169:> 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-18T12:12:02.111 INFO:teuthology.orchestra.run.smithi076.stdout:kernel.core_pattern = core 2024-09-18T12:12:02.115 INFO:teuthology.orchestra.run.smithi160.stdout:kernel.core_pattern = core 2024-09-18T12:12:02.141 INFO:teuthology.orchestra.run.smithi169.stdout:kernel.core_pattern = core 2024-09-18T12:12:02.165 DEBUG:teuthology.orchestra.run.smithi076:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-18T12:12:02.188 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-18T12:12:02.189 DEBUG:teuthology.orchestra.run.smithi160:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-18T12:12:02.211 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-18T12:12:02.212 DEBUG:teuthology.orchestra.run.smithi169:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-18T12:12:02.226 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-18T12:12:02.227 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-09-18T12:12:02.237 INFO:teuthology.task.internal:Transferring archived files... 2024-09-18T12:12:02.238 DEBUG:teuthology.misc:Transferring archived files from smithi076:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/skanta-2024-09-18_09:13:00-rados-wip-bharath11-testing-2024-09-18-1115-quincy-distro-default-smithi/7911007/remote/smithi076 2024-09-18T12:12:02.238 DEBUG:teuthology.orchestra.run.smithi076:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-18T12:12:02.276 DEBUG:teuthology.misc:Transferring archived files from smithi160:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/skanta-2024-09-18_09:13:00-rados-wip-bharath11-testing-2024-09-18-1115-quincy-distro-default-smithi/7911007/remote/smithi160 2024-09-18T12:12:02.276 DEBUG:teuthology.orchestra.run.smithi160:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-18T12:12:02.310 DEBUG:teuthology.misc:Transferring archived files from smithi169:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/skanta-2024-09-18_09:13:00-rados-wip-bharath11-testing-2024-09-18-1115-quincy-distro-default-smithi/7911007/remote/smithi169 2024-09-18T12:12:02.311 DEBUG:teuthology.orchestra.run.smithi169:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-18T12:12:02.345 INFO:teuthology.task.internal:Removing archive directory... 2024-09-18T12:12:02.345 DEBUG:teuthology.orchestra.run.smithi076:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-18T12:12:02.347 DEBUG:teuthology.orchestra.run.smithi160:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-18T12:12:02.350 DEBUG:teuthology.orchestra.run.smithi169:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-18T12:12:02.394 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-09-18T12:12:02.404 INFO:teuthology.task.internal:Not uploading archives. 2024-09-18T12:12:02.405 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-09-18T12:12:02.414 INFO:teuthology.task.internal:Tidying up after the test... 2024-09-18T12:12:02.414 DEBUG:teuthology.orchestra.run.smithi076:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-18T12:12:02.417 DEBUG:teuthology.orchestra.run.smithi160:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-18T12:12:02.419 DEBUG:teuthology.orchestra.run.smithi169:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-18T12:12:02.430 INFO:teuthology.orchestra.run.smithi076.stdout: 265325 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 18 12:12 /home/ubuntu/cephtest 2024-09-18T12:12:02.431 INFO:teuthology.orchestra.run.smithi160.stdout: 262169 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 18 12:12 /home/ubuntu/cephtest 2024-09-18T12:12:02.449 INFO:teuthology.orchestra.run.smithi169.stdout: 262169 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 18 12:12 /home/ubuntu/cephtest 2024-09-18T12:12:02.450 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-09-18T12:12:02.460 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-09-18T12:12:02.484 INFO:teuthology.run:Summary data: description: rados/cephadm/workunits/{0-distro/centos_9.stream agent/off mon_election/connectivity task/test_host_drain} duration: 848.2305500507355 flavor: default owner: scheduled_skanta@teuthology success: true 2024-09-18T12:12:02.484 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-18T12:12:02.562 INFO:teuthology.run:pass