1234567891011121314151617181920212223 |
- 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
- }
|