Package org.apache.hadoop.hbase.replication.regionserver

Examples of org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceMetrics


        this.replicating = replicating;
        this.manager = manager;
        this.sleepForRetries =
                this.conf.getLong("replication.source.sleepforretries", 1000);
        this.fs = fs;
        this.metrics = new ReplicationSourceMetrics(peerClusterZnode);
        this.repLogReader = new ReplicationHLogReaderManager(this.fs, this.conf);
        try {
            this.clusterId = zkHelper.getUUIDForCluster(zkHelper.getZookeeperWatcher());
        } catch (KeeperException ke) {
            throw new IOException("Could not read cluster id", ke);
View Full Code Here

TOP

Related Classes of org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceMetrics

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.