-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Modified the 'search_stage' based on the end of the insertion process rather than the start. - Errors occurring in the search sub-process will no longer interrupt the testing; they will only impact the metrics for that specific stage. - Only errors from the insert sub-process will halt the overall testing. - During concurrent search testing, database errors will not terminate the search test. QPS metrics will now only count successful requests. - Updated the front-end to allow customization of case_config via the UI. - Implemented a new page ('/streaming') to display results for streaming cases. Signed-off-by: min.tian <min.tian.cn@gmail.com>
- Loading branch information
1 parent
032515f
commit 300739b
Showing
26 changed files
with
1,215 additions
and
337 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
from .mp_runner import ( | ||
MultiProcessingSearchRunner, | ||
) | ||
from .mp_runner import MultiProcessingSearchRunner | ||
from .read_write_runner import ReadWriteRunner | ||
from .serial_runner import SerialInsertRunner, SerialSearchRunner | ||
|
||
__all__ = [ | ||
"MultiProcessingSearchRunner", | ||
"SerialInsertRunner", | ||
"SerialSearchRunner", | ||
"ReadWriteRunner", | ||
] |
Oops, something went wrong.