-
Notifications
You must be signed in to change notification settings - Fork 9
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
Barebones python/S3 implementation #10
base: main
Are you sure you want to change the base?
Conversation
for _ in 0..number_of_u32 { | ||
bits.push(AtomicU32::new(0)); | ||
} | ||
let mut bits = { |
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.
We definitely want this change!
@@ -0,0 +1,169 @@ | |||
""" Quick'n'dirty mapping of bff for python before I can make it pure-rust |
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.
This is fine, if you want to put it into a scripts/
directory, but I feel like this is not really necessary. You could replace the entire thing with a few lines of bash:
aws cp "s3://bucket/input_dir/*.jsonl.gz" ./input_files
bff --bloom-filter-file filter.bff --bloom-filter-size <something> --expected-ngram-count <something> --output-directory ./output_files ./input_files/*.json.gz
rm -r input_files
aws cp ./output_files s3://bucket/output_dir
… to describe some new features
Added
bff_v0.py
which is a simple python script to:Also modified the
main.rs
to use the faster init for bloom filters