mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -05:00
24 lines
445 B
Go
24 lines
445 B
Go
|
|
package hbase
|
||
|
|
|
||
|
|
import (
|
||
|
|
xtime "go-common/library/time"
|
||
|
|
)
|
||
|
|
|
||
|
|
// ZKConfig Server&Client settings.
|
||
|
|
type ZKConfig struct {
|
||
|
|
Root string
|
||
|
|
Addrs []string
|
||
|
|
Timeout xtime.Duration
|
||
|
|
}
|
||
|
|
|
||
|
|
// Config hbase config
|
||
|
|
type Config struct {
|
||
|
|
Zookeeper *ZKConfig
|
||
|
|
RPCQueueSize int
|
||
|
|
FlushInterval xtime.Duration
|
||
|
|
EffectiveUser string
|
||
|
|
RegionLookupTimeout xtime.Duration
|
||
|
|
RegionReadTimeout xtime.Duration
|
||
|
|
TestRowKey string
|
||
|
|
}
|