-
Notifications
You must be signed in to change notification settings - Fork 3
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
Implement timing metrics #70
Merged
Merged
Changes from 1 commit
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
22335ea
Implement timing metrics
vkitchen 6b2909f
Fallback on the system wide time command if bash is unavailable
vkitchen 6de6c86
Make timing optional and document it
vkitchen 8f38a09
Include single query in if statement.
82b4f1c
Update README.md
dd593d5
Merge branch 'master' into master
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -2,6 +2,8 @@ | |
import os | ||
import subprocess | ||
import sys | ||
import re | ||
import time | ||
|
||
|
||
class Searcher: | ||
|
@@ -45,13 +47,69 @@ def search(self, client, output_path_guest, topic_path_host, topic_path_guest, g | |
"top_k": self.config.top_k | ||
} | ||
|
||
# Duplicate first query | ||
single_query_file = '' | ||
with open(os.path.join(topic_path_host, os.path.basename(self.config.topic)), 'r') as file: | ||
queries = file.read() | ||
query_end = queries.find('</top>') | ||
if query_end == -1: | ||
sys.exit('Query format unknown...') | ||
single_query = queries[:query_end+6] | ||
single_query_file = os.path.splitext(os.path.basename(self.config.topic))[0] + '.single.txt' | ||
out_file = open(os.path.join(topic_path_host, single_query_file), 'w') | ||
out_file.write(single_query) | ||
out_file.close() | ||
|
||
# Time empty search | ||
search_args['topic']['path'] = os.path.join(topic_path_guest, single_query_file) | ||
container = client.containers.run("{}:{}".format(self.config.repo, save_tag), | ||
command="bash -c 'time /search --json {}'".format(json.dumps(json.dumps(search_args))), volumes=volumes, detach=True) | ||
load_times = [] | ||
for line in container.logs(stream=True): | ||
match = re.match('^(real|user|sys)\t*(.*)m(.*)s$', line.decode('utf-8')) | ||
if match: | ||
load_times.append(match) | ||
|
||
# Time actual search | ||
search_args['topic']['path'] = os.path.join(topic_path_guest, os.path.basename(self.config.topic)) | ||
print("Starting container from saved image...") | ||
container = client.containers.run("{}:{}".format(self.config.repo, save_tag), | ||
command="sh -c '/search --json {}'".format(json.dumps(json.dumps(search_args))), volumes=volumes, detach=True) | ||
command="bash -c 'time /search --json {}'".format(json.dumps(json.dumps(search_args))), volumes=volumes, detach=True) | ||
ryan-clancy marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
search_times = [] | ||
print("Logs for search in container with ID {}...".format(container.id)) | ||
for line in container.logs(stream=True): | ||
match = re.match('^(real|user|sys)\t*(.*)m(.*)s$', line.decode('utf-8')) | ||
if match: | ||
search_times.append(match) | ||
print(str(line.decode('utf-8')), end="") | ||
print() | ||
|
||
print('**********') | ||
print('Index load timing information') | ||
print(load_times[0].group(0)) | ||
print(load_times[1].group(0)) | ||
print(load_times[2].group(0)) | ||
print() | ||
|
||
print('**********') | ||
print('Search timing information') | ||
print(search_times[0].group(0)) | ||
print(search_times[1].group(0)) | ||
print(search_times[2].group(0)) | ||
print() | ||
|
||
result_minutes = [] | ||
result_seconds = [] | ||
for i in range(len(load_times)): | ||
result_minutes.append(int(search_times[i].group(2)) - int(load_times[i].group(2))) | ||
result_seconds.append(float(search_times[i].group(3)) - float(load_times[i].group(3))) | ||
print('**********') | ||
print('Search timing less load') | ||
print('real\t{}m{:.3f}s'.format(result_minutes[0], result_seconds[0])) | ||
print('user\t{}m{:.3f}s'.format(result_minutes[1], result_seconds[1])) | ||
print('sys\t{}m{:.3f}s'.format(result_minutes[2], result_seconds[2])) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Small nit can a space be added so the formatting is consistent between the output of
|
||
print() | ||
|
||
print("Evaluating results using trec_eval...") | ||
for file in os.listdir(self.config.output): | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some images (such as
alpine
based ones) don't havebash
by default - can this be changed tosh
(which is often linked tobash
)? Seems to work fine withsh
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some of the images which are based on
Debian
or derivative distributions havebash
(which contains a builtintime
) installed but no system widetime
command. Thesh
also tends to be linked todash
in these images (which doesn't contain the builtin). I'm working on a solution now which will use eithertime
or the builtin inbash
depending on what is available. I'll update the pull request when that's doneThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ahh, gotcha - once you've added that we'll merge this PR.