Skip to content

Commit

Permalink
feat: [PIPE-22742]: Refactor pool management
Browse files Browse the repository at this point in the history
  • Loading branch information
vistaarjuneja committed Nov 21, 2024
1 parent 7d2cdbc commit ddd2b7b
Show file tree
Hide file tree
Showing 4 changed files with 61 additions and 21 deletions.
3 changes: 2 additions & 1 deletion app/drivers/google/driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ import (
"sync"
"time"

"github.com/drone-runners/drone-runner-aws/command/harness/storage"
"github.com/drone-runners/drone-runner-aws/app/drivers"
"github.com/drone-runners/drone-runner-aws/app/lehelper"
"github.com/drone-runners/drone-runner-aws/app/oshelp"
"github.com/drone-runners/drone-runner-aws/command/harness/storage"
"github.com/drone-runners/drone-runner-aws/types"
"github.com/drone/runner-go/logger"

Expand Down Expand Up @@ -185,6 +185,7 @@ func (p *config) create(ctx context.Context, opts *types.InstanceCreateOpts, nam
WithField("size", p.size)

// create the instance

startTime := time.Now()

logr.Traceln("google: creating VM")
Expand Down
6 changes: 3 additions & 3 deletions command/harness/delegate/delegate.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ func (c *delegateCommand) run(*kingpin.ParseContext) error {
c.stageOwnerStore = stageOwnerStore
c.poolManager = drivers.New(ctx, instanceStore, &c.env)

_, err = harness.SetupPool(ctx, &c.env, c.poolManager, c.poolFile)
defer harness.Cleanup(&c.env, c.poolManager, true, true) //nolint: errcheck
_, err = harness.SetupPoolWithEnv(ctx, &c.env, c.poolManager, c.poolFile)
defer harness.Cleanup(c.env.Settings.ReusePool, c.poolManager, true, true) //nolint: errcheck
if err != nil {
return err
}
Expand All @@ -134,7 +134,7 @@ func (c *delegateCommand) run(*kingpin.ParseContext) error {

g.Go(func() error {
<-ctx.Done()
return harness.Cleanup(&c.env, c.poolManager, true, true)
return harness.Cleanup(c.env.Settings.ReusePool, c.poolManager, true, true)
})

g.Go(func() error {
Expand Down
6 changes: 3 additions & 3 deletions command/harness/dlite/dlite.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ func (c *dliteCommand) run(*kingpin.ParseContext) error {
var poolConfig *config.PoolFile

poolConfig, err = c.setupDistributedPool(ctx)
defer harness.Cleanup(&c.env, c.distributedPoolManager, false, true) //nolint: errcheck
defer harness.Cleanup(c.env.Settings.ReusePool, c.distributedPoolManager, false, true) //nolint: errcheck
if err != nil {
return err
}
Expand All @@ -143,7 +143,7 @@ func (c *dliteCommand) run(*kingpin.ParseContext) error {
g.Go(func() error {
<-ctx.Done()
// delete unused instances for distributed pool
return harness.Cleanup(&c.env, c.distributedPoolManager, false, true)
return harness.Cleanup(c.env.Settings.ReusePool, c.distributedPoolManager, false, true)
})

g.Go(func() error {
Expand Down Expand Up @@ -196,7 +196,7 @@ func (c *dliteCommand) setupDistributedPool(ctx context.Context) (*config.PoolFi
c.env.Settings.HarnessTestBinaryURI,
c.env.Settings.PluginBinaryURI,
c.env.Settings.AutoInjectionBinaryURI))
poolConfig, err := harness.SetupPool(ctx, &c.env, c.distributedPoolManager, c.poolFile)
poolConfig, err := harness.SetupPoolWithEnv(ctx, &c.env, c.distributedPoolManager, c.poolFile)
if err != nil {
logrus.WithError(err).Error("could not setup distributed pool")
return poolConfig, err
Expand Down
67 changes: 53 additions & 14 deletions command/harness/pool.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,23 @@ import (
"github.com/drone-runners/drone-runner-aws/app/drivers"
"github.com/drone-runners/drone-runner-aws/app/poolfile"
"github.com/drone-runners/drone-runner-aws/command/config"
"github.com/drone-runners/drone-runner-aws/types"
"github.com/sirupsen/logrus"
)

func SetupPool(ctx context.Context, env *config.EnvConfig, poolManager drivers.IManager, poolFile string) (*config.PoolFile, error) {
configPool, confErr := poolfile.ConfigPoolFile(poolFile, env)
if confErr != nil {
logrus.WithError(confErr).Fatalln("Unable to load pool file, or use an in memory pool")
}

pools, err := poolfile.ProcessPool(configPool, env.Runner.Name, env.Passwords())
// SetupPool sets up a pool of instances given a config pool.
func SetupPool(
ctx context.Context,
configPool *config.PoolFile,
runnerName string,
passwords types.Passwords,
poolManager drivers.IManager,
busyMaxAge int64,
freeMaxAge int64,
purgerTime int64,
reusePool bool,
) (*config.PoolFile, error) {
pools, err := poolfile.ProcessPool(configPool, runnerName, passwords)
if err != nil {
logrus.WithError(err).Errorln("unable to process pool file")
return configPool, err
Expand All @@ -36,17 +43,17 @@ func SetupPool(ctx context.Context, env *config.EnvConfig, poolManager drivers.I
}

// setup lifetimes of instances
busyMaxAge := time.Hour * time.Duration(env.Settings.BusyMaxAge) // includes time required to setup an instance
freeMaxAge := time.Hour * time.Duration(env.Settings.FreeMaxAge)
purgerTime := time.Minute * time.Duration(env.Settings.PurgerTime)
err = poolManager.StartInstancePurger(ctx, busyMaxAge, freeMaxAge, purgerTime)
busyMaxAgeDuration := time.Hour * time.Duration(busyMaxAge) // includes time required to setup an instance
freeMaxAgeDuration := time.Hour * time.Duration(freeMaxAge)
purgerDuration := time.Minute * time.Duration(purgerTime)
err = poolManager.StartInstancePurger(ctx, busyMaxAgeDuration, freeMaxAgeDuration, purgerDuration)
if err != nil {
logrus.WithError(err).
Errorln("failed to start instance purger")
return configPool, err
}
// lets remove any old instances.
if !env.Settings.ReusePool {
if !reusePool {
cleanErr := poolManager.CleanPools(ctx, true, true)
if cleanErr != nil {
return configPool, cleanErr
Expand All @@ -64,8 +71,40 @@ func SetupPool(ctx context.Context, env *config.EnvConfig, poolManager drivers.I
return configPool, nil
}

func Cleanup(env *config.EnvConfig, poolManager drivers.IManager, destroyBusy, destroyFree bool) error {
if env.Settings.ReusePool {
func SetupPoolWithFile(
ctx context.Context,
poolFilePath string,
poolManager drivers.IManager,
passwords types.Passwords,
runnerName string,
busyAge,
freeAge,
purgerTime int64,
reusePool bool,
) (*config.PoolFile, error) {
configPool, err := config.ParseFile(poolFilePath)
if err != nil {
logrus.WithError(err).
WithField("path", poolFilePath).
Errorln("exec: unable to parse pool file")
return nil, err
}

return SetupPool(ctx, configPool, runnerName, passwords, poolManager, busyAge, freeAge, purgerTime, reusePool)
}

func SetupPoolWithEnv(ctx context.Context, env *config.EnvConfig, poolManager drivers.IManager, poolFile string) (*config.PoolFile, error) {
configPool, confErr := poolfile.ConfigPoolFile(poolFile, env)
if confErr != nil {
logrus.WithError(confErr).Fatalln("Unable to load pool file, or use an in memory pool")
}

return SetupPool(ctx, configPool, env.Runner.Name, env.Passwords(), poolManager, env.Settings.BusyMaxAge, env.Settings.FreeMaxAge, env.Settings.PurgerTime, env.Settings.ReusePool)

}

func Cleanup(reusePool bool, poolManager drivers.IManager, destroyBusy, destroyFree bool) error {
if reusePool {
return nil
}

Expand Down

0 comments on commit ddd2b7b

Please sign in to comment.