@Before
public void bloomAssemblySetUp() throws Exception {
CascadingUtil.get().setDefaultProperty(BloomProps.KEY_SAMPLE_RATE, 1.0);
lhsStore = new Hfs(new SequenceFile(new Fields("key", "key2", "lhs-value")), getTestRoot() + "/lhs");
lhs2Store = new Hfs(new SequenceFile(new Fields("key", "key2", "lhs-value")), getTestRoot() + "/lhs2");
rhsStore = new Hfs(new SequenceFile(new Fields("key", "key2", "rhs-value")), getTestRoot() + "/rhs");
rhs2Store = new Hfs(new SequenceFile(new Fields("key", "key2", "rhs-value")), getTestRoot() + "/rhs2");
TapHelper.writeToTap(rhsStore,
new Tuple(bytes("1"), bytes("11"), "a-rhs"),
new Tuple(bytes("1"), bytes("11"), "b-rhs"),
new Tuple(bytes("2"), bytes("12"), "c-rhs"),