pgterminate/terminator/terminator.go

126 lines
3.5 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()
// Cancel or terminate active sessions
2018-06-10 08:44:53 +02:00
if t.config.ActiveTimeout != 0 {
actives := t.filter(activeSessions(sessions, t.config.ActiveTimeout))
if t.config.Cancel {
t.db.CancelSessions(actives)
} else {
t.db.TerminateSessions(actives)
}
t.notify(actives)
2018-06-10 08:44:53 +02:00
}
// Terminate idle sessions
2018-06-10 08:44:53 +02:00
if t.config.IdleTimeout != 0 {
idles := t.filter(idleSessions(sessions, t.config.IdleTimeout))
t.db.TerminateSessions(idles)
t.notify(idles)
2018-06-10 08:44:53 +02:00
}
2018-06-10 08:44:53 +02:00
time.Sleep(time.Duration(t.config.Interval*1000) * time.Millisecond)
}
}
}
// notify sends sessions to channel
func (t *Terminator) notify(sessions []base.Session) {
2018-06-10 08:44:53 +02:00
for _, session := range sessions {
t.sessions <- session
}
}
2018-06-30 10:44:58 +02:00
// filter removes sessions according to include and exclude users settings
// when include users slice and regex are not set, append all sessions except excluded users
// otherwise, append included users
func (t *Terminator) filter(sessions []base.Session) (filtered []base.Session) {
includeUsers, includeRegex := t.config.IncludeUsers, t.config.IncludeUsersRegexCompiled
excludeUsers, excludeRegex := t.config.ExcludeUsers, t.config.ExcludeUsersRegexCompiled
for _, session := range sessions {
if t.config.IncludeUsers == nil && includeRegex == nil {
// append all sessions except excluded users
if !base.InSlice(session.User, excludeUsers) || (excludeRegex != nil && !excludeRegex.MatchString(session.User)) {
filtered = append(filtered, session)
}
} else {
// append included users only
if base.InSlice(session.User, includeUsers) || (includeRegex != nil && includeRegex.MatchString(session.User)) {
filtered = append(filtered, session)
}
}
}
return filtered
}
2018-06-10 08:44:53 +02:00
// 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
}