-
Notifications
You must be signed in to change notification settings - Fork 169
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 <[email protected]>
- Loading branch information
1 parent
491ef6b
commit 6f51942
Showing
29 changed files
with
1,246 additions
and
343 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ on: | |
pull_request: | ||
branches: | ||
- main | ||
- vdbbench_* | ||
|
||
jobs: | ||
build: | ||
|
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
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", | ||
"ReadWriteRunner", | ||
"SerialInsertRunner", | ||
"SerialSearchRunner", | ||
] |
Oops, something went wrong.