pgterminate/terminator/terminator.go

93 lines
2.4 KiB
Go
Raw Normal View History

2018-06-10 08:44:53 +02:00
package terminator
import (
"github.com/jouir/pgterminate/base"
2018-06-24 17:49:48 +02:00
"github.com/jouir/pgterminate/log"
2018-06-10 08:44:53 +02:00
"time"
)
// Terminator looks for sessions, filters actives and idles, terminate them and notify sessions channel
// It ends itself gracefully when done channel is triggered
type Terminator struct {
config *base.Config
db *base.Db
sessions chan base.Session
done chan bool
}
// NewTerminator instanciates a Terminator
func NewTerminator(ctx *base.Context) *Terminator {
return &Terminator{
config: ctx.Config,
sessions: ctx.Sessions,
done: ctx.Done,
}
}
// Run starts the Terminator
func (t *Terminator) Run() {
2018-06-24 17:49:48 +02:00
log.Info("Starting terminator")
2018-06-10 08:44:53 +02:00
t.db = base.NewDb(t.config.Dsn())
2018-06-24 17:49:48 +02:00
log.Info("Connecting to instance")
2018-06-10 08:44:53 +02:00
t.db.Connect()
defer t.terminate()
for {
select {
case <-t.done:
return
default:
sessions := t.db.Sessions()
if t.config.ActiveTimeout != 0 {
actives := activeSessions(sessions, t.config.ActiveTimeout)
2018-06-24 17:49:48 +02:00
t.terminateAndNotify(actives)
2018-06-10 08:44:53 +02:00
}
if t.config.IdleTimeout != 0 {
idles := idleSessions(sessions, t.config.IdleTimeout)
2018-06-24 17:49:48 +02:00
t.terminateAndNotify(idles)
2018-06-10 08:44:53 +02:00
}
time.Sleep(time.Duration(t.config.Interval*1000) * time.Millisecond)
}
}
}
// terminateAndNotify terminates a list of sessions and notifies channel
func (t *Terminator) terminateAndNotify(sessions []base.Session) {
t.db.TerminateSessions(sessions)
for _, session := range sessions {
t.sessions <- session
}
}
// terminate terminates gracefully
func (t *Terminator) terminate() {
2018-06-24 17:49:48 +02:00
log.Info("Disconnecting from instance")
2018-06-10 08:44:53 +02:00
t.db.Disconnect()
}
// activeSessions returns a list of active sessions
// A session is active when state is "active" and state has changed before elapsed seconds
2018-06-10 08:44:53 +02:00
// seconds
func activeSessions(sessions []base.Session, elapsed float64) (result []base.Session) {
for _, session := range sessions {
if session.State == "active" && session.StateDuration > elapsed {
2018-06-10 08:44:53 +02:00
result = append(result, session)
}
}
return result
}
// idleSessions returns a list of idle sessions
// A sessions is idle when state is "idle", "idle in transaction" or "idle in transaction
// (aborted)"and state has changed before elapsed seconds
2018-06-10 08:44:53 +02:00
func idleSessions(sessions []base.Session, elapsed float64) (result []base.Session) {
for _, session := range sessions {
if session.IsIdle() && session.StateDuration > elapsed {
2018-06-10 08:44:53 +02:00
result = append(result, session)
}
}
return result
}