Examples of BloomJoinFilter


Examples of com.liveramp.cascading_ext.bloom.operation.BloomJoinFilter

    //  2) Bind RHS to the flow, which wouldn't happen otherwise.
    // Note that RHS has no output, so there shouldn't be any danger in doing this.
    filterPipe = new NaiveMerge(largePipe.getName(), largePipe, smallPipe);

    // Load the bloom filter into memory and apply it to the LHS.
    filterPipe = new Each(filterPipe, largeJoinFields, new BloomJoinFilter(bloomJobID, false));

    ConfigDef config = filterPipe.getStepConfigDef()// tell BloomAssemblyStrategy which bloom filter to expect
    config.setProperty(BloomProps.SOURCE_BLOOM_FILTER_ID, bloomJobID);
    config.setProperty(BloomProps.REQUIRED_BLOOM_FILTER_PATH, bloomFinalFilter);
    return filterPipe;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.