Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion src/tests/ftest/rebuild/interactive.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
(C) Copyright 2025-2026 Hewlett Packard Enterprise Development LP
Copyright 2025-2026 Hewlett Packard Enterprise Development LP

SPDX-License-Identifier: BSD-2-Clause-Patent
"""
Expand Down Expand Up @@ -57,6 +57,12 @@ def test_rebuild_interactive(self):
exclude_method='dmg pool exclude',
reint_method='dmg pool reintegrate')

self.__run_rebuild_interactive(
pool, cont_ior, ior,
num_ranks_to_exclude=1,
exclude_method='dmg system exclude',
reint_method='dmg system reintegrate')

self.log_step('Test Passed')

def __run_rebuild_interactive(self, pool, cont_ior, ior,
Expand Down Expand Up @@ -137,6 +143,12 @@ def __run_rebuild_interactive(self, pool, cont_ior, ior,
ior.manager.job.update_params(flags=ior_flags_read)
ior.run(cont_ior.pool, cont_ior, None, ior_ppn, display_space=False)

if exclude_method == 'dmg system exclude':
self.log_step(f'{exclude_method} - Clear exclusion of ranks')
pool.dmg.system_clear_exclude(ranks_to_exclude)
self.log_step(f'{exclude_method} - Start previously admin-excluded ranks')
pool.dmg.system_start(ranks_to_exclude)

self.log_step('Reintegrate excluded ranks')
if reint_method == 'dmg pool reintegrate':
pool.reintegrate(ranks_to_exclude)
Expand Down
5 changes: 2 additions & 3 deletions src/tests/ftest/rebuild/interactive.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ hosts:
test_servers: 7
test_clients: 1

timeout: 400
timeout: 500

server_config:
name: daos_server
Expand Down Expand Up @@ -30,9 +30,8 @@ server_config:
storage: auto

pool:
size: 90%
size: 50%
pool_query_timeout: 30
properties: rd_fac:3

cont_ior:
type: POSIX
Expand Down
Loading