Limit loadtest file creation with MaxFileCount#6549
Conversation
|
Hi! Thank you for contributing! |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 3aa57eec04
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
ea3cd58 to
8466153
Compare
8466153 to
f0fe4ce
Compare
|
Note This is an automated comment that will be appended during run. Note All workloads for linux-x86_64-relwithdebinfo have completed. Tip Planned checks for linux-x86_64-relwithdebinfo. 🟢 linux-x86_64-relwithdebinfo target: cloud/tasks/,cloud/storage/ (test time: 257s): all tests PASSED for commit 54751bc.
🟢 linux-x86_64-relwithdebinfo target: cloud/disk_manager/ (test time: 264s): all tests PASSED for commit 54751bc.
🟢 linux-x86_64-relwithdebinfo target: cloud/blockstore/ (test time: 1154s): all tests PASSED for commit 54751bc.
🟢 linux-x86_64-relwithdebinfo target: cloud/filestore/ (test time: 4587s): all tests PASSED for commit 54751bc.
|
|
Note This is an automated comment that will be appended during run. Note All workloads for linux-x86_64-relwithdebinfo have completed. Tip Planned checks for linux-x86_64-relwithdebinfo. |
|
Note This is an automated comment that will be appended during run. Note All workloads for linux-x86_64-relwithdebinfo have completed. Tip Planned checks for linux-x86_64-relwithdebinfo. |
|
Note This is an automated comment that will be appended during run. Note All workloads for linux-x86_64-relwithdebinfo have completed. Tip Planned checks for linux-x86_64-relwithdebinfo. 🟢 linux-x86_64-relwithdebinfo target: cloud/tasks/,cloud/storage/ (test time: 262s): all tests PASSED for commit 1957b8c.
🟢 linux-x86_64-relwithdebinfo target: cloud/disk_manager/ (test time: 271s): all tests PASSED for commit 1957b8c.
🟢 linux-x86_64-relwithdebinfo target: cloud/blockstore/ (test time: 1488s): all tests PASSED for commit 1957b8c.
🟢 linux-x86_64-relwithdebinfo target: cloud/filestore/ (test time: 5115s): all tests PASSED for commit 1957b8c.
|
|
Note This is an automated comment that will be appended during run. Note All workloads for linux-x86_64-relwithdebinfo have completed. Tip Planned checks for linux-x86_64-relwithdebinfo. |
|
Note This is an automated comment that will be appended during run. Note All workloads for linux-x86_64-relwithdebinfo have completed. Tip Planned checks for linux-x86_64-relwithdebinfo. 🟢 linux-x86_64-relwithdebinfo target: cloud/tasks/,cloud/storage/ (test time: 266s): all tests PASSED for commit 6c7072d.
🟢 linux-x86_64-relwithdebinfo target: cloud/disk_manager/ (test time: 285s): all tests PASSED for commit 6c7072d.
🟢 linux-x86_64-relwithdebinfo target: cloud/blockstore/ (test time: 1487s): all tests PASSED for commit 6c7072d.
🟢 linux-x86_64-relwithdebinfo target: cloud/filestore/ (test time: 5068s): all tests PASSED for commit 6c7072d.
|
|
|
||
| // Maximum number of regular files created by this synthetic load test. | ||
| // Zero means unlimited. Ignored by replay specs. | ||
| uint64 MaxFileCount = 22; |
There was a problem hiding this comment.
now this
looks redundantlet's delete TIndexLoadSpec::MaxNodes and rename this MaxFileCount parameter to MaxNodes
|
Note This is an automated comment that will be appended during run. Note All workloads for linux-x86_64-relwithdebinfo have completed. Tip Planned checks for linux-x86_64-relwithdebinfo. 🟢 linux-x86_64-relwithdebinfo target: cloud/tasks/,cloud/storage/ (test time: 261s): all tests PASSED for commit fcc1885.
🟢 linux-x86_64-relwithdebinfo target: cloud/disk_manager/ (test time: 277s): all tests PASSED for commit fcc1885.
🟢 linux-x86_64-relwithdebinfo target: cloud/blockstore/ (test time: 1400s): all tests PASSED for commit fcc1885.
🟢 linux-x86_64-relwithdebinfo target: cloud/filestore/ (test time: 5143s): all tests PASSED for commit fcc1885.
|
Notes
This is a follow up to #6493 where I introduced a DiagnoseFilesystem command. In order to test it, the loadtest should create a known number of files, which currently is unbounded.
Issue
#6208