forked from mirror/ledisdb
add relay log, add quit channel
This commit is contained in:
parent
51349ea12a
commit
be0464a21c
|
@ -11,10 +11,13 @@ import (
|
||||||
type Config struct {
|
type Config struct {
|
||||||
DataDB leveldb.Config `json:"data_db"`
|
DataDB leveldb.Config `json:"data_db"`
|
||||||
|
|
||||||
BinLog replication.BinLogConfig `json:"binlog"`
|
BinLog replication.BinLogConfig `json:"binlog"`
|
||||||
|
RelayLog replication.RelayLogConfig `json:"relaylog"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type DB struct {
|
type DB struct {
|
||||||
|
l *Ledis
|
||||||
|
|
||||||
db *leveldb.DB
|
db *leveldb.DB
|
||||||
|
|
||||||
index uint8
|
index uint8
|
||||||
|
@ -33,7 +36,10 @@ type Ledis struct {
|
||||||
ldb *leveldb.DB
|
ldb *leveldb.DB
|
||||||
dbs [MaxDBNumber]*DB
|
dbs [MaxDBNumber]*DB
|
||||||
|
|
||||||
binlog *replication.Log
|
binlog *replication.Log
|
||||||
|
relaylog *replication.Log
|
||||||
|
|
||||||
|
quit chan struct{}
|
||||||
}
|
}
|
||||||
|
|
||||||
func Open(configJson json.RawMessage) (*Ledis, error) {
|
func Open(configJson json.RawMessage) (*Ledis, error) {
|
||||||
|
@ -53,6 +59,9 @@ func OpenWithConfig(cfg *Config) (*Ledis, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
l := new(Ledis)
|
l := new(Ledis)
|
||||||
|
|
||||||
|
l.quit = make(chan struct{})
|
||||||
|
|
||||||
l.ldb = ldb
|
l.ldb = ldb
|
||||||
|
|
||||||
if len(cfg.BinLog.Path) > 0 {
|
if len(cfg.BinLog.Path) > 0 {
|
||||||
|
@ -64,6 +73,15 @@ func OpenWithConfig(cfg *Config) (*Ledis, error) {
|
||||||
l.binlog = nil
|
l.binlog = nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if len(cfg.RelayLog.Path) > 0 {
|
||||||
|
l.relaylog, err = replication.NewRelayLogWithConfig(&cfg.RelayLog)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
l.relaylog = nil
|
||||||
|
}
|
||||||
|
|
||||||
for i := uint8(0); i < MaxDBNumber; i++ {
|
for i := uint8(0); i < MaxDBNumber; i++ {
|
||||||
l.dbs[i] = newDB(l, i)
|
l.dbs[i] = newDB(l, i)
|
||||||
}
|
}
|
||||||
|
@ -74,6 +92,8 @@ func OpenWithConfig(cfg *Config) (*Ledis, error) {
|
||||||
func newDB(l *Ledis, index uint8) *DB {
|
func newDB(l *Ledis, index uint8) *DB {
|
||||||
d := new(DB)
|
d := new(DB)
|
||||||
|
|
||||||
|
d.l = l
|
||||||
|
|
||||||
d.db = l.ldb
|
d.db = l.ldb
|
||||||
|
|
||||||
d.index = index
|
d.index = index
|
||||||
|
@ -89,7 +109,19 @@ func newDB(l *Ledis, index uint8) *DB {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (l *Ledis) Close() {
|
func (l *Ledis) Close() {
|
||||||
|
close(l.quit)
|
||||||
|
|
||||||
l.ldb.Close()
|
l.ldb.Close()
|
||||||
|
|
||||||
|
if l.binlog != nil {
|
||||||
|
l.binlog.Close()
|
||||||
|
l.binlog = nil
|
||||||
|
}
|
||||||
|
|
||||||
|
if l.relaylog != nil {
|
||||||
|
l.relaylog.Close()
|
||||||
|
l.relaylog = nil
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (l *Ledis) Select(index int) (*DB, error) {
|
func (l *Ledis) Select(index int) (*DB, error) {
|
||||||
|
|
|
@ -28,9 +28,16 @@ func (db *DB) activeExpireCycle() {
|
||||||
eliminator.regRetireContext(kvExpType, db.kvTx, db.delete)
|
eliminator.regRetireContext(kvExpType, db.kvTx, db.delete)
|
||||||
|
|
||||||
go func() {
|
go func() {
|
||||||
|
tick := time.NewTicker(1 * time.Second)
|
||||||
for {
|
for {
|
||||||
eliminator.active()
|
select {
|
||||||
time.Sleep(1 * time.Second)
|
case <-tick.C:
|
||||||
|
eliminator.active()
|
||||||
|
case <-db.l.quit:
|
||||||
|
break
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tick.Stop()
|
||||||
}()
|
}()
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,8 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
errInvalidBinLogEvent = errors.New("invalid binglog event")
|
errInvalidBinLogEvent = errors.New("invalid binglog event")
|
||||||
|
errRelayLogNotSupported = errors.New("write relay log not supported")
|
||||||
)
|
)
|
||||||
|
|
||||||
func (l *Ledis) replicateEvent(event []byte) error {
|
func (l *Ledis) replicateEvent(event []byte) error {
|
||||||
|
@ -132,5 +133,11 @@ func (l *Ledis) RepliateRelayLog(relayLog string, offset int64) (int64, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (l *Ledis) WriteRelayLog(data []byte) error {
|
func (l *Ledis) WriteRelayLog(data []byte) error {
|
||||||
return nil
|
if l.relaylog == nil {
|
||||||
|
return errRelayLogNotSupported
|
||||||
|
}
|
||||||
|
|
||||||
|
err := l.relaylog.Log(data)
|
||||||
|
|
||||||
|
return err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue