All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.darkphoenixs.pool.hbase.HbaseConfig Maven / Gradle / Ivy

Go to download

A simple multi-purpose connection pool client (Kafka & Hbase & Redis & RMDB & Socket & Http)

The newest version!
/*
 * Copyright 2015-2016 Dark Phoenixs (Open-Source Organization).
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.darkphoenixs.pool.hbase;

/**
 * 

HbaseConfig

*

Hbase配置

* * @author Victor * @since 1.2.1 */ public interface HbaseConfig { /** * DEFAULT_HOST */ public static final String DEFAULT_HOST = "localhost"; /** * DEFAULT_PORT */ public static final String DEFAULT_PORT = "2181"; /** * DEFAULT_MASTER */ public static final String DEFAULT_MASTER = null; /** * DEFAULT_ROOTDIR */ public static final String DEFAULT_ROOTDIR = null; /** * ZOOKEEPER_QUORUM_PROPERTY */ public static final String ZOOKEEPER_QUORUM_PROPERTY = "hbase.zookeeper.quorum"; /** * ZOOKEEPER_CLIENTPORT_PROPERTY */ public static final String ZOOKEEPER_CLIENTPORT_PROPERTY = "hbase.zookeeper.property.clientPort"; /** * MASTER_PROPERTY */ public static final String MASTER_PROPERTY = "hbase.master"; /** * ROOTDIR_PROPERTY */ public static final String ROOTDIR_PROPERTY = "hbase.rootdir"; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy