Package edu.brown.hstore.estimators.remote

Examples of edu.brown.hstore.estimators.remote.RemoteEstimator


        // Get the hasher we will use for this HStoreSite
        this.hasher = ClassUtil.newInstance(hstore_conf.global.hasher_class,
                                             new Object[]{ this.catalogContext, num_partitions },
                                             new Class<?>[]{ CatalogContext.class, int.class });
        this.p_estimator = new PartitionEstimator(this.catalogContext, this.hasher);
        this.remoteTxnEstimator = new RemoteEstimator(this.p_estimator);
       
        // ARIES
        if(hstore_conf.site.aries){
            // Don't use both recovery modes
            assert(hstore_conf.site.snapshot == false);
View Full Code Here

TOP

Related Classes of edu.brown.hstore.estimators.remote.RemoteEstimator

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.