Package org.apache.hadoop.util.bloom

Examples of org.apache.hadoop.util.bloom.DynamicBloomFilter


  public void start(EmitKey key) {
    super.start(key);

    // TODO: add a clear function to the bloom filter in Hadoop and use it
    // here instead of instantiating a new one for every key
    this.filter = new DynamicBloomFilter(this.vectorSize, DistinctAggregator.HASH_COUNT, Hash.MURMUR_HASH, (int) this.getArg());
  }
View Full Code Here

TOP

Related Classes of org.apache.hadoop.util.bloom.DynamicBloomFilter

Copyright © 2018 www.massapicom. 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.