-
Notifications
You must be signed in to change notification settings - Fork 6
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
Output to file immediately? #18
Comments
Intermediate results are only stored in RAM at the moment. However, if you interrupt the program by Ctrl+C, it should dump everything to a new temporary file, whose path is printed on the terminal. Some data is still lost in this process, as only entries for which all queries have been completed have been processed. If an entry only has query result from 7/8 sources, these are lost when interrupting. |
Does it contain all entries (like, completely everything) or only the processed ones? |
It contains all entries, so its safe to replace your input file with the dump. It should tell you how many were completed (which isn't very convenient I know, I'm working on changing it to show the id of the last completed entry). Note that if you run btac on multiple files, it also concatenates all files into a single one when dumping to a temporary file. |
Great, thanks a lot! |
Can btac stream results to the output file immediately? Sometimes it hangs on, say, 92% for hours, and there is no output file.
Alternatively, where are the intermediate results are stored?
The text was updated successfully, but these errors were encountered: