Skip to content
VictorZeng edited this page May 12, 2016 · 8 revisions

###PoolConfig###

The PoolConfig is extends GenericObjectPoolConfig, more config please see the Apidoc.

####HbaseConfig###

The HbaseConfig is Hbase properties helper as follow, more configuration please see the Hbase doc.

	public static final String ZOOKEEPER_QUORUM_PROPERTY = "hbase.zookeeper.quorum";

	public static final String ZOOKEEPER_CLIENTPORT_PROPERTY = "hbase.zookeeper.property.clientPort";

	public static final String MASTER_PROPERTY = "hbase.master";

	public static final String ROOTDIR_PROPERTY = "hbase.rootdir";

####KafkaConfig###

The KafkaConfig is Kafka properties helper as follow, more configuration please see the Kafka doc.

	public static final String BROKERS_LIST_PROPERTY = "metadata.broker.list";

	public static final String PRODUCER_TYPE_PROPERTY = "producer.type";

	public static final String REQUEST_ACKS_PROPERTY = "request.required.acks";

	public static final String COMPRESSION_CODEC_PROPERTY = "compression.codec";

	public static final String BATCH_NUMBER_PROPERTY = "batch.num.messages";

####RedisConfig###

The RedisConfig is Redis properties helper as follow.

	public static final String ADDRESS_PROPERTY = "address";

	public static final String CONN_TIMEOUT_PROPERTY = "connectionTimeout";

	public static final String SO_TIMEOUT_PROPERTY = "soTimeout";

	public static final String DATABASE_PROPERTY = "database";

	public static final String PASSWORD_PROPERTY = "password";

	public static final String CLIENTNAME_PROPERTY = "clientName";