Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DAOS-6965 Test: Increased the SCM size as recent layout change need more space with current dataset. #4928

Merged
merged 5 commits into from
Mar 29, 2021
Merged
Show file tree
Hide file tree
Changes from 4 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
2 changes: 2 additions & 0 deletions src/tests/ftest/nvme/nvme_object.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

import threading
import avocado
import time

from pydaos.raw import DaosApiError
from test_utils_pool import TestPool
Expand Down Expand Up @@ -194,6 +195,7 @@ def test_nvme_object_multiple_pools(self):
threads = []
index = 0
for size in self.pool_size[:-1]:
time.sleep(1)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are we sure 1 second is enough? Why we added this 1 second delay? Hope we will not land in some intermittent failure.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added so threads have some time in between before it begins.

thread = threading.Thread(target=test_runner,
args=(self, size, self.record_size,
index, self.array_size))
Expand Down
4 changes: 3 additions & 1 deletion src/tests/ftest/nvme/nvme_object.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ server_config:
servers:
bdev_class: nvme
bdev_list: ["0000:81:00.0","0000:da:00.0"]
scm_class: dcpm
scm_list: ["/dev/pmem0"]
transport_config:
allow_insecure: True
agent_config:
Expand All @@ -33,7 +35,7 @@ pool:
createset:
group: daos_server
createsize:
scm_size: 1000000000
scm_size: 4000000000
size:
- 20000000000
- 100000000000
Expand Down