2015-08-15 23:07:50 +00:00
|
|
|
package nomad
|
|
|
|
|
|
|
|
import (
|
2017-10-23 22:04:00 +00:00
|
|
|
"fmt"
|
2015-08-15 23:07:50 +00:00
|
|
|
"testing"
|
2015-08-16 00:42:51 +00:00
|
|
|
"time"
|
2015-08-15 23:07:50 +00:00
|
|
|
|
2017-02-08 05:22:48 +00:00
|
|
|
memdb "github.com/hashicorp/go-memdb"
|
2020-05-11 12:20:50 +00:00
|
|
|
msgpackrpc "github.com/hashicorp/net-rpc-msgpackrpc"
|
2022-03-15 12:42:43 +00:00
|
|
|
"github.com/hashicorp/nomad/ci"
|
2018-01-22 22:31:38 +00:00
|
|
|
"github.com/hashicorp/nomad/helper/uuid"
|
2015-08-15 23:07:50 +00:00
|
|
|
"github.com/hashicorp/nomad/nomad/mock"
|
2020-05-06 20:49:12 +00:00
|
|
|
"github.com/hashicorp/nomad/nomad/state"
|
2015-08-15 23:07:50 +00:00
|
|
|
"github.com/hashicorp/nomad/nomad/structs"
|
|
|
|
"github.com/hashicorp/nomad/testutil"
|
2017-06-29 19:32:37 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
2018-01-22 22:31:38 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
2015-08-15 23:07:50 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestCoreScheduler_EvalGC(t *testing.T) {
|
2022-03-15 12:42:43 +00:00
|
|
|
ci.Parallel(t)
|
2019-12-04 00:15:11 +00:00
|
|
|
|
|
|
|
s1, cleanupS1 := TestServer(t, nil)
|
|
|
|
defer cleanupS1()
|
2015-08-15 23:07:50 +00:00
|
|
|
testutil.WaitForLeader(t, s1.RPC)
|
|
|
|
|
2016-08-11 21:36:22 +00:00
|
|
|
// COMPAT Remove in 0.6: Reset the FSM time table since we reconcile which sets index 0
|
|
|
|
s1.fsm.timetable.table = make([]TimeTableEntry, 1, 10)
|
|
|
|
|
2015-08-15 23:07:50 +00:00
|
|
|
// Insert "dead" eval
|
2022-04-01 19:17:58 +00:00
|
|
|
store := s1.fsm.State()
|
2015-08-15 23:07:50 +00:00
|
|
|
eval := mock.Eval()
|
|
|
|
eval.Status = structs.EvalStatusFailed
|
2022-04-01 19:17:58 +00:00
|
|
|
store.UpsertJobSummary(999, mock.JobSummary(eval.JobID))
|
|
|
|
err := store.UpsertEvals(structs.MsgTypeTestSetup, 1000, []*structs.Evaluation{eval})
|
|
|
|
require.Nil(t, err)
|
2018-01-22 22:31:38 +00:00
|
|
|
|
|
|
|
// Insert mock job with rescheduling disabled
|
|
|
|
job := mock.Job()
|
|
|
|
job.ID = eval.JobID
|
|
|
|
job.TaskGroups[0].ReschedulePolicy = &structs.ReschedulePolicy{
|
|
|
|
Attempts: 0,
|
|
|
|
Interval: 0 * time.Second,
|
2015-08-15 23:07:50 +00:00
|
|
|
}
|
2022-04-01 19:17:58 +00:00
|
|
|
err = store.UpsertJob(structs.MsgTypeTestSetup, 1001, job)
|
|
|
|
require.Nil(t, err)
|
2015-08-15 23:07:50 +00:00
|
|
|
|
|
|
|
// Insert "dead" alloc
|
|
|
|
alloc := mock.Alloc()
|
|
|
|
alloc.EvalID = eval.ID
|
2016-07-13 19:20:46 +00:00
|
|
|
alloc.DesiredStatus = structs.AllocDesiredStatusStop
|
2016-07-25 21:11:32 +00:00
|
|
|
alloc.JobID = eval.JobID
|
2018-01-22 22:31:38 +00:00
|
|
|
alloc.TaskGroup = job.TaskGroups[0].Name
|
2016-08-04 18:24:17 +00:00
|
|
|
|
|
|
|
// Insert "lost" alloc
|
|
|
|
alloc2 := mock.Alloc()
|
|
|
|
alloc2.EvalID = eval.ID
|
|
|
|
alloc2.DesiredStatus = structs.AllocDesiredStatusRun
|
|
|
|
alloc2.ClientStatus = structs.AllocClientStatusLost
|
|
|
|
alloc2.JobID = eval.JobID
|
2018-01-22 22:31:38 +00:00
|
|
|
alloc2.TaskGroup = job.TaskGroups[0].Name
|
2022-04-01 19:17:58 +00:00
|
|
|
err = store.UpsertAllocs(structs.MsgTypeTestSetup, 1001, []*structs.Allocation{alloc, alloc2})
|
2015-08-15 23:07:50 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
2015-08-16 00:42:51 +00:00
|
|
|
// Update the time tables to make this work
|
|
|
|
tt := s1.fsm.TimeTable()
|
|
|
|
tt.Witness(2000, time.Now().UTC().Add(-1*s1.config.EvalGCThreshold))
|
|
|
|
|
2015-08-15 23:07:50 +00:00
|
|
|
// Create a core scheduler
|
2022-04-01 19:17:58 +00:00
|
|
|
snap, err := store.Snapshot()
|
2015-08-15 23:07:50 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
core := NewCoreScheduler(s1, snap)
|
|
|
|
|
|
|
|
// Attempt the GC
|
2016-06-22 16:04:22 +00:00
|
|
|
gc := s1.coreJobEval(structs.CoreJobEvalGC, 2000)
|
2015-08-15 23:07:50 +00:00
|
|
|
err = core.Process(gc)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Should be gone
|
2017-02-08 05:22:48 +00:00
|
|
|
ws := memdb.NewWatchSet()
|
2022-04-01 19:17:58 +00:00
|
|
|
out, err := store.EvalByID(ws, eval.ID)
|
2015-08-15 23:07:50 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if out != nil {
|
|
|
|
t.Fatalf("bad: %v", out)
|
|
|
|
}
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
outA, err := store.AllocByID(ws, alloc.ID)
|
2015-08-15 23:07:50 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if outA != nil {
|
|
|
|
t.Fatalf("bad: %v", outA)
|
|
|
|
}
|
2016-08-04 18:24:17 +00:00
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
outA2, err := store.AllocByID(ws, alloc2.ID)
|
2016-08-04 18:24:17 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if outA2 != nil {
|
|
|
|
t.Fatalf("bad: %v", outA2)
|
|
|
|
}
|
2016-03-25 23:46:48 +00:00
|
|
|
}
|
|
|
|
|
2018-01-22 22:31:38 +00:00
|
|
|
// Tests GC behavior on allocations being rescheduled
|
2018-03-11 18:40:32 +00:00
|
|
|
func TestCoreScheduler_EvalGC_ReschedulingAllocs(t *testing.T) {
|
2022-03-15 12:42:43 +00:00
|
|
|
ci.Parallel(t)
|
2019-12-04 00:15:11 +00:00
|
|
|
|
|
|
|
s1, cleanupS1 := TestServer(t, nil)
|
|
|
|
defer cleanupS1()
|
2018-01-22 22:31:38 +00:00
|
|
|
testutil.WaitForLeader(t, s1.RPC)
|
|
|
|
|
|
|
|
// COMPAT Remove in 0.6: Reset the FSM time table since we reconcile which sets index 0
|
|
|
|
s1.fsm.timetable.table = make([]TimeTableEntry, 1, 10)
|
|
|
|
|
|
|
|
// Insert "dead" eval
|
2022-04-01 19:17:58 +00:00
|
|
|
store := s1.fsm.State()
|
2018-01-22 22:31:38 +00:00
|
|
|
eval := mock.Eval()
|
|
|
|
eval.Status = structs.EvalStatusFailed
|
2022-04-01 19:17:58 +00:00
|
|
|
store.UpsertJobSummary(999, mock.JobSummary(eval.JobID))
|
|
|
|
err := store.UpsertEvals(structs.MsgTypeTestSetup, 1000, []*structs.Evaluation{eval})
|
|
|
|
require.Nil(t, err)
|
2018-01-22 22:31:38 +00:00
|
|
|
|
2018-01-30 20:45:59 +00:00
|
|
|
// Insert "pending" eval for same job
|
|
|
|
eval2 := mock.Eval()
|
|
|
|
eval2.JobID = eval.JobID
|
2022-04-01 19:17:58 +00:00
|
|
|
store.UpsertJobSummary(999, mock.JobSummary(eval2.JobID))
|
|
|
|
err = store.UpsertEvals(structs.MsgTypeTestSetup, 1003, []*structs.Evaluation{eval2})
|
|
|
|
require.Nil(t, err)
|
2018-01-30 20:45:59 +00:00
|
|
|
|
2018-01-22 22:31:38 +00:00
|
|
|
// Insert mock job with default reschedule policy of 2 in 10 minutes
|
|
|
|
job := mock.Job()
|
|
|
|
job.ID = eval.JobID
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
err = store.UpsertJob(structs.MsgTypeTestSetup, 1001, job)
|
|
|
|
require.Nil(t, err)
|
2018-01-22 22:31:38 +00:00
|
|
|
|
|
|
|
// Insert failed alloc with an old reschedule attempt, can be GCed
|
|
|
|
alloc := mock.Alloc()
|
2018-11-01 05:02:26 +00:00
|
|
|
alloc.Job = job
|
2018-01-22 22:31:38 +00:00
|
|
|
alloc.EvalID = eval.ID
|
|
|
|
alloc.DesiredStatus = structs.AllocDesiredStatusRun
|
|
|
|
alloc.ClientStatus = structs.AllocClientStatusFailed
|
|
|
|
alloc.JobID = eval.JobID
|
|
|
|
alloc.TaskGroup = job.TaskGroups[0].Name
|
2018-04-11 18:58:02 +00:00
|
|
|
alloc.NextAllocation = uuid.Generate()
|
2018-01-22 22:31:38 +00:00
|
|
|
alloc.RescheduleTracker = &structs.RescheduleTracker{
|
|
|
|
Events: []*structs.RescheduleEvent{
|
|
|
|
{
|
|
|
|
RescheduleTime: time.Now().Add(-1 * time.Hour).UTC().UnixNano(),
|
|
|
|
PrevNodeID: uuid.Generate(),
|
|
|
|
PrevAllocID: uuid.Generate(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
alloc2 := mock.Alloc()
|
2018-11-01 05:02:26 +00:00
|
|
|
alloc2.Job = job
|
2018-01-22 22:31:38 +00:00
|
|
|
alloc2.EvalID = eval.ID
|
|
|
|
alloc2.DesiredStatus = structs.AllocDesiredStatusRun
|
2018-04-11 18:58:02 +00:00
|
|
|
alloc2.ClientStatus = structs.AllocClientStatusFailed
|
2018-01-22 22:31:38 +00:00
|
|
|
alloc2.JobID = eval.JobID
|
|
|
|
alloc2.TaskGroup = job.TaskGroups[0].Name
|
|
|
|
alloc2.RescheduleTracker = &structs.RescheduleTracker{
|
|
|
|
Events: []*structs.RescheduleEvent{
|
|
|
|
{
|
|
|
|
RescheduleTime: time.Now().Add(-3 * time.Minute).UTC().UnixNano(),
|
|
|
|
PrevNodeID: uuid.Generate(),
|
|
|
|
PrevAllocID: uuid.Generate(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2022-04-01 19:17:58 +00:00
|
|
|
err = store.UpsertAllocs(structs.MsgTypeTestSetup, 1001, []*structs.Allocation{alloc, alloc2})
|
|
|
|
require.Nil(t, err)
|
2018-01-22 22:31:38 +00:00
|
|
|
|
|
|
|
// Update the time tables to make this work
|
|
|
|
tt := s1.fsm.TimeTable()
|
|
|
|
tt.Witness(2000, time.Now().UTC().Add(-1*s1.config.EvalGCThreshold))
|
|
|
|
|
|
|
|
// Create a core scheduler
|
2022-04-01 19:17:58 +00:00
|
|
|
snap, err := store.Snapshot()
|
2018-01-22 22:31:38 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
core := NewCoreScheduler(s1, snap)
|
|
|
|
|
2018-01-30 20:45:59 +00:00
|
|
|
// Attempt the GC, job has all terminal allocs and one pending eval
|
2018-01-22 22:31:38 +00:00
|
|
|
gc := s1.coreJobEval(structs.CoreJobEvalGC, 2000)
|
|
|
|
err = core.Process(gc)
|
2022-04-01 19:17:58 +00:00
|
|
|
require.Nil(t, err)
|
2018-01-22 22:31:38 +00:00
|
|
|
|
|
|
|
// Eval should still exist
|
|
|
|
ws := memdb.NewWatchSet()
|
2022-04-01 19:17:58 +00:00
|
|
|
out, err := store.EvalByID(ws, eval.ID)
|
|
|
|
require.Nil(t, err)
|
|
|
|
require.NotNil(t, out)
|
|
|
|
require.Equal(t, eval.ID, out.ID)
|
2018-01-22 22:31:38 +00:00
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
outA, err := store.AllocByID(ws, alloc.ID)
|
|
|
|
require.Nil(t, err)
|
|
|
|
require.Nil(t, outA)
|
2018-01-22 22:31:38 +00:00
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
outA2, err := store.AllocByID(ws, alloc2.ID)
|
|
|
|
require.Nil(t, err)
|
|
|
|
require.Equal(t, alloc2.ID, outA2.ID)
|
2018-01-22 22:31:38 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-01-30 15:12:14 +00:00
|
|
|
// Tests GC behavior on stopped job with reschedulable allocs
|
|
|
|
func TestCoreScheduler_EvalGC_StoppedJob_Reschedulable(t *testing.T) {
|
2022-03-15 12:42:43 +00:00
|
|
|
ci.Parallel(t)
|
2019-12-04 00:15:11 +00:00
|
|
|
|
|
|
|
s1, cleanupS1 := TestServer(t, nil)
|
|
|
|
defer cleanupS1()
|
2018-01-30 15:12:14 +00:00
|
|
|
testutil.WaitForLeader(t, s1.RPC)
|
|
|
|
|
|
|
|
// COMPAT Remove in 0.6: Reset the FSM time table since we reconcile which sets index 0
|
|
|
|
s1.fsm.timetable.table = make([]TimeTableEntry, 1, 10)
|
|
|
|
|
|
|
|
// Insert "dead" eval
|
2022-04-01 19:17:58 +00:00
|
|
|
store := s1.fsm.State()
|
2018-01-30 15:12:14 +00:00
|
|
|
eval := mock.Eval()
|
|
|
|
eval.Status = structs.EvalStatusFailed
|
2022-04-01 19:17:58 +00:00
|
|
|
store.UpsertJobSummary(999, mock.JobSummary(eval.JobID))
|
|
|
|
err := store.UpsertEvals(structs.MsgTypeTestSetup, 1000, []*structs.Evaluation{eval})
|
|
|
|
require.Nil(t, err)
|
2018-01-30 15:12:14 +00:00
|
|
|
|
|
|
|
// Insert mock stopped job with default reschedule policy of 2 in 10 minutes
|
|
|
|
job := mock.Job()
|
|
|
|
job.ID = eval.JobID
|
|
|
|
job.Stop = true
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
err = store.UpsertJob(structs.MsgTypeTestSetup, 1001, job)
|
|
|
|
require.Nil(t, err)
|
2018-01-30 15:12:14 +00:00
|
|
|
|
|
|
|
// Insert failed alloc with a recent reschedule attempt
|
|
|
|
alloc := mock.Alloc()
|
|
|
|
alloc.EvalID = eval.ID
|
|
|
|
alloc.DesiredStatus = structs.AllocDesiredStatusRun
|
|
|
|
alloc.ClientStatus = structs.AllocClientStatusLost
|
|
|
|
alloc.JobID = eval.JobID
|
|
|
|
alloc.TaskGroup = job.TaskGroups[0].Name
|
|
|
|
alloc.RescheduleTracker = &structs.RescheduleTracker{
|
|
|
|
Events: []*structs.RescheduleEvent{
|
|
|
|
{
|
|
|
|
RescheduleTime: time.Now().Add(-3 * time.Minute).UTC().UnixNano(),
|
|
|
|
PrevNodeID: uuid.Generate(),
|
|
|
|
PrevAllocID: uuid.Generate(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2022-04-01 19:17:58 +00:00
|
|
|
err = store.UpsertAllocs(structs.MsgTypeTestSetup, 1001, []*structs.Allocation{alloc})
|
|
|
|
require.Nil(t, err)
|
2018-01-30 15:12:14 +00:00
|
|
|
|
|
|
|
// Update the time tables to make this work
|
|
|
|
tt := s1.fsm.TimeTable()
|
|
|
|
tt.Witness(2000, time.Now().UTC().Add(-1*s1.config.EvalGCThreshold))
|
|
|
|
|
|
|
|
// Create a core scheduler
|
2022-04-01 19:17:58 +00:00
|
|
|
snap, err := store.Snapshot()
|
2018-01-30 15:12:14 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
core := NewCoreScheduler(s1, snap)
|
|
|
|
|
|
|
|
// Attempt the GC
|
|
|
|
gc := s1.coreJobEval(structs.CoreJobEvalGC, 2000)
|
|
|
|
err = core.Process(gc)
|
2022-04-01 19:17:58 +00:00
|
|
|
require.Nil(t, err)
|
2018-01-30 15:12:14 +00:00
|
|
|
|
|
|
|
// Eval should not exist
|
|
|
|
ws := memdb.NewWatchSet()
|
2022-04-01 19:17:58 +00:00
|
|
|
out, err := store.EvalByID(ws, eval.ID)
|
|
|
|
require.Nil(t, err)
|
|
|
|
require.Nil(t, out)
|
2018-01-30 15:12:14 +00:00
|
|
|
|
|
|
|
// Alloc should not exist
|
2022-04-01 19:17:58 +00:00
|
|
|
outA, err := store.AllocByID(ws, alloc.ID)
|
|
|
|
require.Nil(t, err)
|
|
|
|
require.Nil(t, outA)
|
2018-01-30 15:12:14 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-03-11 23:48:57 +00:00
|
|
|
// An EvalGC should never reap a batch job that has not been stopped
|
2016-06-27 22:47:49 +00:00
|
|
|
func TestCoreScheduler_EvalGC_Batch(t *testing.T) {
|
2022-03-15 12:42:43 +00:00
|
|
|
ci.Parallel(t)
|
2019-12-04 00:15:11 +00:00
|
|
|
|
|
|
|
s1, cleanupS1 := TestServer(t, nil)
|
|
|
|
defer cleanupS1()
|
2016-06-11 01:32:37 +00:00
|
|
|
testutil.WaitForLeader(t, s1.RPC)
|
|
|
|
|
2016-08-11 21:36:22 +00:00
|
|
|
// COMPAT Remove in 0.6: Reset the FSM time table since we reconcile which sets index 0
|
|
|
|
s1.fsm.timetable.table = make([]TimeTableEntry, 1, 10)
|
|
|
|
|
2016-06-27 22:47:49 +00:00
|
|
|
// Insert a "dead" job
|
2022-04-01 19:17:58 +00:00
|
|
|
store := s1.fsm.State()
|
2016-06-27 22:47:49 +00:00
|
|
|
job := mock.Job()
|
|
|
|
job.Type = structs.JobTypeBatch
|
|
|
|
job.Status = structs.JobStatusDead
|
2022-04-01 19:17:58 +00:00
|
|
|
err := store.UpsertJob(structs.MsgTypeTestSetup, 1000, job)
|
2016-06-27 22:47:49 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
2016-06-28 17:02:06 +00:00
|
|
|
// Insert "complete" eval
|
2016-06-11 01:32:37 +00:00
|
|
|
eval := mock.Eval()
|
|
|
|
eval.Status = structs.EvalStatusComplete
|
2016-06-27 22:47:49 +00:00
|
|
|
eval.Type = structs.JobTypeBatch
|
|
|
|
eval.JobID = job.ID
|
2022-04-01 19:17:58 +00:00
|
|
|
err = store.UpsertEvals(structs.MsgTypeTestSetup, 1001, []*structs.Evaluation{eval})
|
2016-06-11 01:32:37 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
2016-06-28 17:02:06 +00:00
|
|
|
// Insert "failed" alloc
|
2016-06-11 01:32:37 +00:00
|
|
|
alloc := mock.Alloc()
|
2018-11-01 05:02:26 +00:00
|
|
|
alloc.Job = job
|
2016-06-27 22:47:49 +00:00
|
|
|
alloc.JobID = job.ID
|
2016-06-11 01:32:37 +00:00
|
|
|
alloc.EvalID = eval.ID
|
2016-07-13 19:20:46 +00:00
|
|
|
alloc.DesiredStatus = structs.AllocDesiredStatusStop
|
2016-08-04 18:24:17 +00:00
|
|
|
|
|
|
|
// Insert "lost" alloc
|
|
|
|
alloc2 := mock.Alloc()
|
2018-11-01 05:02:26 +00:00
|
|
|
alloc2.Job = job
|
2016-08-04 18:24:17 +00:00
|
|
|
alloc2.JobID = job.ID
|
|
|
|
alloc2.EvalID = eval.ID
|
|
|
|
alloc2.DesiredStatus = structs.AllocDesiredStatusRun
|
|
|
|
alloc2.ClientStatus = structs.AllocClientStatusLost
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
err = store.UpsertAllocs(structs.MsgTypeTestSetup, 1002, []*structs.Allocation{alloc, alloc2})
|
2016-06-11 01:32:37 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update the time tables to make this work
|
|
|
|
tt := s1.fsm.TimeTable()
|
|
|
|
tt.Witness(2000, time.Now().UTC().Add(-1*s1.config.EvalGCThreshold))
|
|
|
|
|
|
|
|
// Create a core scheduler
|
2022-04-01 19:17:58 +00:00
|
|
|
snap, err := store.Snapshot()
|
2016-06-11 01:32:37 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
core := NewCoreScheduler(s1, snap)
|
|
|
|
|
|
|
|
// Attempt the GC
|
2016-06-22 16:04:22 +00:00
|
|
|
gc := s1.coreJobEval(structs.CoreJobEvalGC, 2000)
|
2016-06-11 01:32:37 +00:00
|
|
|
err = core.Process(gc)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
2016-06-27 22:47:49 +00:00
|
|
|
// Nothing should be gone
|
2017-02-08 05:22:48 +00:00
|
|
|
ws := memdb.NewWatchSet()
|
2022-04-01 19:17:58 +00:00
|
|
|
out, err := store.EvalByID(ws, eval.ID)
|
2016-06-11 01:32:37 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if out == nil {
|
|
|
|
t.Fatalf("bad: %v", out)
|
|
|
|
}
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
outA, err := store.AllocByID(ws, alloc.ID)
|
2016-06-11 01:32:37 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if outA == nil {
|
|
|
|
t.Fatalf("bad: %v", outA)
|
|
|
|
}
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
outA2, err := store.AllocByID(ws, alloc2.ID)
|
2016-08-04 18:24:17 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if outA2 == nil {
|
|
|
|
t.Fatalf("bad: %v", outA2)
|
|
|
|
}
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
outB, err := store.JobByID(ws, job.Namespace, job.ID)
|
2016-06-11 01:32:37 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
2016-06-27 22:47:49 +00:00
|
|
|
if outB == nil {
|
2016-06-11 01:32:37 +00:00
|
|
|
t.Fatalf("bad: %v", outB)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-01 05:02:26 +00:00
|
|
|
// An EvalGC should reap allocations from jobs with an older modify index
|
|
|
|
func TestCoreScheduler_EvalGC_Batch_OldVersion(t *testing.T) {
|
2022-03-15 12:42:43 +00:00
|
|
|
ci.Parallel(t)
|
2019-12-04 00:15:11 +00:00
|
|
|
|
|
|
|
s1, cleanupS1 := TestServer(t, nil)
|
|
|
|
defer cleanupS1()
|
2018-11-01 05:02:26 +00:00
|
|
|
testutil.WaitForLeader(t, s1.RPC)
|
|
|
|
|
|
|
|
// COMPAT Remove in 0.6: Reset the FSM time table since we reconcile which sets index 0
|
|
|
|
s1.fsm.timetable.table = make([]TimeTableEntry, 1, 10)
|
|
|
|
|
|
|
|
// Insert a "dead" job
|
2022-04-01 19:17:58 +00:00
|
|
|
store := s1.fsm.State()
|
2018-11-01 05:02:26 +00:00
|
|
|
job := mock.Job()
|
|
|
|
job.Type = structs.JobTypeBatch
|
|
|
|
job.Status = structs.JobStatusDead
|
2022-04-01 19:17:58 +00:00
|
|
|
err := store.UpsertJob(structs.MsgTypeTestSetup, 1000, job)
|
2018-11-01 05:02:26 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Insert "complete" eval
|
|
|
|
eval := mock.Eval()
|
|
|
|
eval.Status = structs.EvalStatusComplete
|
|
|
|
eval.Type = structs.JobTypeBatch
|
|
|
|
eval.JobID = job.ID
|
2022-04-01 19:17:58 +00:00
|
|
|
err = store.UpsertEvals(structs.MsgTypeTestSetup, 1001, []*structs.Evaluation{eval})
|
2018-11-01 05:02:26 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Insert "failed" alloc
|
|
|
|
alloc := mock.Alloc()
|
|
|
|
alloc.Job = job
|
|
|
|
alloc.JobID = job.ID
|
|
|
|
alloc.EvalID = eval.ID
|
|
|
|
alloc.DesiredStatus = structs.AllocDesiredStatusStop
|
|
|
|
|
|
|
|
// Insert "lost" alloc
|
|
|
|
alloc2 := mock.Alloc()
|
|
|
|
alloc2.Job = job
|
|
|
|
alloc2.JobID = job.ID
|
|
|
|
alloc2.EvalID = eval.ID
|
|
|
|
alloc2.DesiredStatus = structs.AllocDesiredStatusRun
|
|
|
|
alloc2.ClientStatus = structs.AllocClientStatusLost
|
|
|
|
|
|
|
|
// Insert alloc with older job modifyindex
|
|
|
|
alloc3 := mock.Alloc()
|
|
|
|
job2 := job.Copy()
|
|
|
|
|
|
|
|
alloc3.Job = job2
|
|
|
|
alloc3.JobID = job2.ID
|
|
|
|
alloc3.EvalID = eval.ID
|
2018-11-09 17:44:21 +00:00
|
|
|
job2.CreateIndex = 500
|
2018-11-01 05:02:26 +00:00
|
|
|
alloc3.DesiredStatus = structs.AllocDesiredStatusRun
|
|
|
|
alloc3.ClientStatus = structs.AllocClientStatusLost
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
err = store.UpsertAllocs(structs.MsgTypeTestSetup, 1002, []*structs.Allocation{alloc, alloc2, alloc3})
|
2018-11-01 05:02:26 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update the time tables to make this work
|
|
|
|
tt := s1.fsm.TimeTable()
|
|
|
|
tt.Witness(2000, time.Now().UTC().Add(-1*s1.config.EvalGCThreshold))
|
|
|
|
|
|
|
|
// Create a core scheduler
|
2022-04-01 19:17:58 +00:00
|
|
|
snap, err := store.Snapshot()
|
2018-11-01 05:02:26 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
core := NewCoreScheduler(s1, snap)
|
|
|
|
|
|
|
|
// Attempt the GC
|
|
|
|
gc := s1.coreJobEval(structs.CoreJobEvalGC, 2000)
|
|
|
|
err = core.Process(gc)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Alloc1 and 2 should be there, and alloc3 should be gone
|
|
|
|
ws := memdb.NewWatchSet()
|
2022-04-01 19:17:58 +00:00
|
|
|
out, err := store.EvalByID(ws, eval.ID)
|
2018-11-01 05:02:26 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if out == nil {
|
|
|
|
t.Fatalf("bad: %v", out)
|
|
|
|
}
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
outA, err := store.AllocByID(ws, alloc.ID)
|
2018-11-01 05:02:26 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if outA == nil {
|
|
|
|
t.Fatalf("bad: %v", outA)
|
|
|
|
}
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
outA2, err := store.AllocByID(ws, alloc2.ID)
|
2018-11-01 05:02:26 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if outA2 == nil {
|
|
|
|
t.Fatalf("bad: %v", outA2)
|
|
|
|
}
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
outA3, err := store.AllocByID(ws, alloc3.ID)
|
2018-11-01 05:02:26 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if outA3 != nil {
|
|
|
|
t.Fatalf("expected alloc to be nil:%v", outA2)
|
|
|
|
}
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
outB, err := store.JobByID(ws, job.Namespace, job.ID)
|
2018-11-01 05:02:26 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if outB == nil {
|
|
|
|
t.Fatalf("bad: %v", outB)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-11 23:48:57 +00:00
|
|
|
// An EvalGC should reap a batch job that has been stopped
|
|
|
|
func TestCoreScheduler_EvalGC_BatchStopped(t *testing.T) {
|
2022-03-15 12:42:43 +00:00
|
|
|
ci.Parallel(t)
|
2019-12-04 00:15:11 +00:00
|
|
|
|
|
|
|
s1, cleanupS1 := TestServer(t, nil)
|
|
|
|
defer cleanupS1()
|
2017-03-11 23:48:57 +00:00
|
|
|
testutil.WaitForLeader(t, s1.RPC)
|
|
|
|
|
|
|
|
// COMPAT Remove in 0.6: Reset the FSM time table since we reconcile which sets index 0
|
|
|
|
s1.fsm.timetable.table = make([]TimeTableEntry, 1, 10)
|
|
|
|
|
|
|
|
// Create a "dead" job
|
2022-04-01 19:17:58 +00:00
|
|
|
store := s1.fsm.State()
|
2017-03-11 23:48:57 +00:00
|
|
|
job := mock.Job()
|
|
|
|
job.Type = structs.JobTypeBatch
|
|
|
|
job.Status = structs.JobStatusDead
|
2018-01-22 22:31:38 +00:00
|
|
|
job.Stop = true
|
|
|
|
job.TaskGroups[0].ReschedulePolicy = &structs.ReschedulePolicy{
|
|
|
|
Attempts: 0,
|
|
|
|
Interval: 0 * time.Second,
|
|
|
|
}
|
2022-04-01 19:17:58 +00:00
|
|
|
err := store.UpsertJob(structs.MsgTypeTestSetup, 1001, job)
|
|
|
|
require.Nil(t, err)
|
2017-03-11 23:48:57 +00:00
|
|
|
|
|
|
|
// Insert "complete" eval
|
|
|
|
eval := mock.Eval()
|
|
|
|
eval.Status = structs.EvalStatusComplete
|
|
|
|
eval.Type = structs.JobTypeBatch
|
|
|
|
eval.JobID = job.ID
|
2022-04-01 19:17:58 +00:00
|
|
|
err = store.UpsertEvals(structs.MsgTypeTestSetup, 1002, []*structs.Evaluation{eval})
|
|
|
|
require.Nil(t, err)
|
2017-03-11 23:48:57 +00:00
|
|
|
|
|
|
|
// Insert "failed" alloc
|
|
|
|
alloc := mock.Alloc()
|
|
|
|
alloc.JobID = job.ID
|
|
|
|
alloc.EvalID = eval.ID
|
2018-01-22 22:31:38 +00:00
|
|
|
alloc.TaskGroup = job.TaskGroups[0].Name
|
2017-03-11 23:48:57 +00:00
|
|
|
alloc.DesiredStatus = structs.AllocDesiredStatusStop
|
|
|
|
|
|
|
|
// Insert "lost" alloc
|
|
|
|
alloc2 := mock.Alloc()
|
|
|
|
alloc2.JobID = job.ID
|
|
|
|
alloc2.EvalID = eval.ID
|
|
|
|
alloc2.DesiredStatus = structs.AllocDesiredStatusRun
|
|
|
|
alloc2.ClientStatus = structs.AllocClientStatusLost
|
2018-01-22 22:31:38 +00:00
|
|
|
alloc2.TaskGroup = job.TaskGroups[0].Name
|
2017-03-11 23:48:57 +00:00
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
err = store.UpsertAllocs(structs.MsgTypeTestSetup, 1003, []*structs.Allocation{alloc, alloc2})
|
2017-03-11 23:48:57 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update the time tables to make this work
|
|
|
|
tt := s1.fsm.TimeTable()
|
|
|
|
tt.Witness(2000, time.Now().UTC().Add(-1*s1.config.EvalGCThreshold))
|
|
|
|
|
|
|
|
// Create a core scheduler
|
2022-04-01 19:17:58 +00:00
|
|
|
snap, err := store.Snapshot()
|
2017-03-11 23:48:57 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
core := NewCoreScheduler(s1, snap)
|
|
|
|
|
|
|
|
// Attempt the GC
|
|
|
|
gc := s1.coreJobEval(structs.CoreJobEvalGC, 2000)
|
|
|
|
err = core.Process(gc)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Everything should be gone
|
|
|
|
ws := memdb.NewWatchSet()
|
2022-04-01 19:17:58 +00:00
|
|
|
out, err := store.EvalByID(ws, eval.ID)
|
2017-03-11 23:48:57 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if out != nil {
|
|
|
|
t.Fatalf("bad: %v", out)
|
|
|
|
}
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
outA, err := store.AllocByID(ws, alloc.ID)
|
2017-03-11 23:48:57 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if outA != nil {
|
|
|
|
t.Fatalf("bad: %v", outA)
|
|
|
|
}
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
outA2, err := store.AllocByID(ws, alloc2.ID)
|
2017-03-11 23:48:57 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if outA2 != nil {
|
|
|
|
t.Fatalf("bad: %v", outA2)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-27 22:47:49 +00:00
|
|
|
func TestCoreScheduler_EvalGC_Partial(t *testing.T) {
|
2022-03-15 12:42:43 +00:00
|
|
|
ci.Parallel(t)
|
2019-12-04 00:15:11 +00:00
|
|
|
|
|
|
|
s1, cleanupS1 := TestServer(t, nil)
|
|
|
|
defer cleanupS1()
|
2016-03-25 23:46:48 +00:00
|
|
|
testutil.WaitForLeader(t, s1.RPC)
|
2022-04-01 19:17:58 +00:00
|
|
|
|
2016-08-11 21:36:22 +00:00
|
|
|
// COMPAT Remove in 0.6: Reset the FSM time table since we reconcile which sets index 0
|
|
|
|
s1.fsm.timetable.table = make([]TimeTableEntry, 1, 10)
|
|
|
|
|
2016-03-25 23:46:48 +00:00
|
|
|
// Insert "dead" eval
|
2022-04-01 19:17:58 +00:00
|
|
|
store := s1.fsm.State()
|
2016-03-25 23:46:48 +00:00
|
|
|
eval := mock.Eval()
|
2016-06-27 22:47:49 +00:00
|
|
|
eval.Status = structs.EvalStatusComplete
|
2022-04-01 19:17:58 +00:00
|
|
|
store.UpsertJobSummary(999, mock.JobSummary(eval.JobID))
|
|
|
|
err := store.UpsertEvals(structs.MsgTypeTestSetup, 1000, []*structs.Evaluation{eval})
|
2016-03-25 23:46:48 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
2018-01-30 20:45:59 +00:00
|
|
|
// Create mock job with id same as eval
|
2018-01-22 22:31:38 +00:00
|
|
|
job := mock.Job()
|
|
|
|
job.ID = eval.JobID
|
|
|
|
|
2016-06-27 22:47:49 +00:00
|
|
|
// Insert "dead" alloc
|
2016-03-25 23:46:48 +00:00
|
|
|
alloc := mock.Alloc()
|
2018-01-30 20:45:59 +00:00
|
|
|
alloc.JobID = job.ID
|
2016-03-25 23:46:48 +00:00
|
|
|
alloc.EvalID = eval.ID
|
2016-07-13 19:20:46 +00:00
|
|
|
alloc.DesiredStatus = structs.AllocDesiredStatusStop
|
2018-01-22 22:31:38 +00:00
|
|
|
alloc.TaskGroup = job.TaskGroups[0].Name
|
2022-04-01 19:17:58 +00:00
|
|
|
store.UpsertJobSummary(1001, mock.JobSummary(alloc.JobID))
|
2016-08-04 18:24:17 +00:00
|
|
|
|
|
|
|
// Insert "lost" alloc
|
|
|
|
alloc2 := mock.Alloc()
|
2018-01-30 20:45:59 +00:00
|
|
|
alloc2.JobID = job.ID
|
2016-08-04 18:24:17 +00:00
|
|
|
alloc2.EvalID = eval.ID
|
2018-01-22 22:31:38 +00:00
|
|
|
alloc2.TaskGroup = job.TaskGroups[0].Name
|
2016-08-04 18:24:17 +00:00
|
|
|
alloc2.DesiredStatus = structs.AllocDesiredStatusRun
|
|
|
|
alloc2.ClientStatus = structs.AllocClientStatusLost
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
err = store.UpsertAllocs(structs.MsgTypeTestSetup, 1002, []*structs.Allocation{alloc, alloc2})
|
2016-06-27 22:47:49 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
2016-06-22 18:40:27 +00:00
|
|
|
|
|
|
|
// Insert "running" alloc
|
2016-08-04 18:24:17 +00:00
|
|
|
alloc3 := mock.Alloc()
|
|
|
|
alloc3.EvalID = eval.ID
|
2018-01-30 20:45:59 +00:00
|
|
|
alloc3.JobID = job.ID
|
2022-04-01 19:17:58 +00:00
|
|
|
store.UpsertJobSummary(1003, mock.JobSummary(alloc3.JobID))
|
|
|
|
err = store.UpsertAllocs(structs.MsgTypeTestSetup, 1004, []*structs.Allocation{alloc3})
|
2016-03-25 23:46:48 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
2018-01-30 20:45:59 +00:00
|
|
|
// Insert mock job with rescheduling disabled
|
|
|
|
job.TaskGroups[0].ReschedulePolicy = &structs.ReschedulePolicy{
|
|
|
|
Attempts: 0,
|
|
|
|
Interval: 0 * time.Second,
|
|
|
|
}
|
2022-04-01 19:17:58 +00:00
|
|
|
err = store.UpsertJob(structs.MsgTypeTestSetup, 1001, job)
|
|
|
|
require.Nil(t, err)
|
2018-01-30 20:45:59 +00:00
|
|
|
|
2016-03-25 23:46:48 +00:00
|
|
|
// Update the time tables to make this work
|
|
|
|
tt := s1.fsm.TimeTable()
|
|
|
|
tt.Witness(2000, time.Now().UTC().Add(-1*s1.config.EvalGCThreshold))
|
|
|
|
|
|
|
|
// Create a core scheduler
|
2022-04-01 19:17:58 +00:00
|
|
|
snap, err := store.Snapshot()
|
2016-03-25 23:46:48 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
core := NewCoreScheduler(s1, snap)
|
|
|
|
|
|
|
|
// Attempt the GC
|
2016-06-22 16:04:22 +00:00
|
|
|
gc := s1.coreJobEval(structs.CoreJobEvalGC, 2000)
|
2016-03-25 23:46:48 +00:00
|
|
|
err = core.Process(gc)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
2016-06-27 22:47:49 +00:00
|
|
|
// Should not be gone
|
2017-02-08 05:22:48 +00:00
|
|
|
ws := memdb.NewWatchSet()
|
2022-04-01 19:17:58 +00:00
|
|
|
out, err := store.EvalByID(ws, eval.ID)
|
2016-03-25 23:46:48 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if out == nil {
|
|
|
|
t.Fatalf("bad: %v", out)
|
|
|
|
}
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
outA, err := store.AllocByID(ws, alloc3.ID)
|
2016-03-25 23:46:48 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if outA == nil {
|
|
|
|
t.Fatalf("bad: %v", outA)
|
|
|
|
}
|
2016-04-08 18:42:02 +00:00
|
|
|
|
2016-06-27 22:47:49 +00:00
|
|
|
// Should be gone
|
2022-04-01 19:17:58 +00:00
|
|
|
outB, err := store.AllocByID(ws, alloc.ID)
|
2016-04-08 18:42:02 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
2016-06-27 22:47:49 +00:00
|
|
|
if outB != nil {
|
|
|
|
t.Fatalf("bad: %v", outB)
|
2016-04-08 18:42:02 +00:00
|
|
|
}
|
2016-08-04 18:24:17 +00:00
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
outC, err := store.AllocByID(ws, alloc2.ID)
|
2016-08-04 18:24:17 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if outC != nil {
|
|
|
|
t.Fatalf("bad: %v", outC)
|
|
|
|
}
|
2016-04-08 18:42:02 +00:00
|
|
|
}
|
|
|
|
|
2016-02-20 23:50:41 +00:00
|
|
|
func TestCoreScheduler_EvalGC_Force(t *testing.T) {
|
2022-03-15 12:42:43 +00:00
|
|
|
ci.Parallel(t)
|
2017-10-23 22:04:00 +00:00
|
|
|
for _, withAcl := range []bool{false, true} {
|
|
|
|
t.Run(fmt.Sprintf("with acl %v", withAcl), func(t *testing.T) {
|
|
|
|
var server *Server
|
2019-12-04 00:15:11 +00:00
|
|
|
var cleanup func()
|
2017-10-23 22:04:00 +00:00
|
|
|
if withAcl {
|
2019-12-04 00:15:11 +00:00
|
|
|
server, _, cleanup = TestACLServer(t, nil)
|
2017-10-23 22:04:00 +00:00
|
|
|
} else {
|
2019-12-04 00:15:11 +00:00
|
|
|
server, cleanup = TestServer(t, nil)
|
2017-10-23 22:04:00 +00:00
|
|
|
}
|
2019-12-04 00:15:11 +00:00
|
|
|
defer cleanup()
|
2017-10-23 22:04:00 +00:00
|
|
|
testutil.WaitForLeader(t, server.RPC)
|
|
|
|
|
|
|
|
// COMPAT Remove in 0.6: Reset the FSM time table since we reconcile which sets index 0
|
|
|
|
server.fsm.timetable.table = make([]TimeTableEntry, 1, 10)
|
|
|
|
|
|
|
|
// Insert "dead" eval
|
2022-04-01 19:17:58 +00:00
|
|
|
store := server.fsm.State()
|
2017-10-23 22:04:00 +00:00
|
|
|
eval := mock.Eval()
|
|
|
|
eval.Status = structs.EvalStatusFailed
|
2022-04-01 19:17:58 +00:00
|
|
|
store.UpsertJobSummary(999, mock.JobSummary(eval.JobID))
|
|
|
|
err := store.UpsertEvals(structs.MsgTypeTestSetup, 1000, []*structs.Evaluation{eval})
|
2017-10-23 22:04:00 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
2018-01-22 22:31:38 +00:00
|
|
|
// Insert mock job with rescheduling disabled
|
|
|
|
job := mock.Job()
|
|
|
|
job.ID = eval.JobID
|
|
|
|
job.TaskGroups[0].ReschedulePolicy = &structs.ReschedulePolicy{
|
|
|
|
Attempts: 0,
|
|
|
|
Interval: 0 * time.Second,
|
|
|
|
}
|
2022-04-01 19:17:58 +00:00
|
|
|
err = store.UpsertJob(structs.MsgTypeTestSetup, 1001, job)
|
|
|
|
require.Nil(t, err)
|
2018-01-22 22:31:38 +00:00
|
|
|
|
2017-10-23 22:04:00 +00:00
|
|
|
// Insert "dead" alloc
|
|
|
|
alloc := mock.Alloc()
|
|
|
|
alloc.EvalID = eval.ID
|
|
|
|
alloc.DesiredStatus = structs.AllocDesiredStatusStop
|
2018-01-22 22:31:38 +00:00
|
|
|
alloc.TaskGroup = job.TaskGroups[0].Name
|
2022-04-01 19:17:58 +00:00
|
|
|
store.UpsertJobSummary(1001, mock.JobSummary(alloc.JobID))
|
|
|
|
err = store.UpsertAllocs(structs.MsgTypeTestSetup, 1002, []*structs.Allocation{alloc})
|
2017-10-23 22:04:00 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a core scheduler
|
2022-04-01 19:17:58 +00:00
|
|
|
snap, err := store.Snapshot()
|
2017-10-23 22:04:00 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
core := NewCoreScheduler(server, snap)
|
|
|
|
|
|
|
|
// Attempt the GC
|
|
|
|
gc := server.coreJobEval(structs.CoreJobForceGC, 1002)
|
|
|
|
err = core.Process(gc)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Should be gone
|
|
|
|
ws := memdb.NewWatchSet()
|
2022-04-01 19:17:58 +00:00
|
|
|
out, err := store.EvalByID(ws, eval.ID)
|
2017-10-23 22:04:00 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if out != nil {
|
|
|
|
t.Fatalf("bad: %v", out)
|
|
|
|
}
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
outA, err := store.AllocByID(ws, alloc.ID)
|
2017-10-23 22:04:00 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if outA != nil {
|
|
|
|
t.Fatalf("bad: %v", outA)
|
|
|
|
}
|
|
|
|
})
|
2016-02-20 23:50:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-07 18:01:29 +00:00
|
|
|
func TestCoreScheduler_NodeGC(t *testing.T) {
|
2022-03-15 12:42:43 +00:00
|
|
|
ci.Parallel(t)
|
2017-10-23 22:04:00 +00:00
|
|
|
for _, withAcl := range []bool{false, true} {
|
|
|
|
t.Run(fmt.Sprintf("with acl %v", withAcl), func(t *testing.T) {
|
|
|
|
var server *Server
|
2019-12-04 00:15:11 +00:00
|
|
|
var cleanup func()
|
2017-10-23 22:04:00 +00:00
|
|
|
if withAcl {
|
2019-12-04 00:15:11 +00:00
|
|
|
server, _, cleanup = TestACLServer(t, nil)
|
2017-10-23 22:04:00 +00:00
|
|
|
} else {
|
2019-12-04 00:15:11 +00:00
|
|
|
server, cleanup = TestServer(t, nil)
|
2017-10-23 22:04:00 +00:00
|
|
|
}
|
2019-12-04 00:15:11 +00:00
|
|
|
defer cleanup()
|
2017-10-23 22:04:00 +00:00
|
|
|
testutil.WaitForLeader(t, server.RPC)
|
|
|
|
|
|
|
|
// COMPAT Remove in 0.6: Reset the FSM time table since we reconcile which sets index 0
|
|
|
|
server.fsm.timetable.table = make([]TimeTableEntry, 1, 10)
|
|
|
|
|
|
|
|
// Insert "dead" node
|
2022-04-01 19:17:58 +00:00
|
|
|
store := server.fsm.State()
|
2017-10-23 22:04:00 +00:00
|
|
|
node := mock.Node()
|
|
|
|
node.Status = structs.NodeStatusDown
|
2022-04-01 19:17:58 +00:00
|
|
|
err := store.UpsertNode(structs.MsgTypeTestSetup, 1000, node)
|
2017-10-23 22:04:00 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update the time tables to make this work
|
|
|
|
tt := server.fsm.TimeTable()
|
|
|
|
tt.Witness(2000, time.Now().UTC().Add(-1*server.config.NodeGCThreshold))
|
|
|
|
|
|
|
|
// Create a core scheduler
|
2022-04-01 19:17:58 +00:00
|
|
|
snap, err := store.Snapshot()
|
2017-10-23 22:04:00 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
core := NewCoreScheduler(server, snap)
|
|
|
|
|
|
|
|
// Attempt the GC
|
|
|
|
gc := server.coreJobEval(structs.CoreJobNodeGC, 2000)
|
|
|
|
err = core.Process(gc)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Should be gone
|
|
|
|
ws := memdb.NewWatchSet()
|
2022-04-01 19:17:58 +00:00
|
|
|
out, err := store.NodeByID(ws, node.ID)
|
2017-10-23 22:04:00 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if out != nil {
|
|
|
|
t.Fatalf("bad: %v", out)
|
|
|
|
}
|
|
|
|
})
|
2015-09-07 18:01:29 +00:00
|
|
|
}
|
|
|
|
}
|
2015-12-15 03:20:57 +00:00
|
|
|
|
2016-06-03 23:24:41 +00:00
|
|
|
func TestCoreScheduler_NodeGC_TerminalAllocs(t *testing.T) {
|
2022-03-15 12:42:43 +00:00
|
|
|
ci.Parallel(t)
|
2019-12-04 00:15:11 +00:00
|
|
|
|
|
|
|
s1, cleanupS1 := TestServer(t, nil)
|
|
|
|
defer cleanupS1()
|
2016-06-03 23:24:41 +00:00
|
|
|
testutil.WaitForLeader(t, s1.RPC)
|
|
|
|
|
2016-08-11 21:36:22 +00:00
|
|
|
// COMPAT Remove in 0.6: Reset the FSM time table since we reconcile which sets index 0
|
|
|
|
s1.fsm.timetable.table = make([]TimeTableEntry, 1, 10)
|
|
|
|
|
2016-06-03 23:24:41 +00:00
|
|
|
// Insert "dead" node
|
2022-04-01 19:17:58 +00:00
|
|
|
store := s1.fsm.State()
|
2016-06-03 23:24:41 +00:00
|
|
|
node := mock.Node()
|
|
|
|
node.Status = structs.NodeStatusDown
|
2022-04-01 19:17:58 +00:00
|
|
|
err := store.UpsertNode(structs.MsgTypeTestSetup, 1000, node)
|
2016-06-03 23:24:41 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Insert a terminal alloc on that node
|
|
|
|
alloc := mock.Alloc()
|
|
|
|
alloc.DesiredStatus = structs.AllocDesiredStatusStop
|
2022-04-01 19:17:58 +00:00
|
|
|
store.UpsertJobSummary(1001, mock.JobSummary(alloc.JobID))
|
|
|
|
if err := store.UpsertAllocs(structs.MsgTypeTestSetup, 1002, []*structs.Allocation{alloc}); err != nil {
|
2016-06-03 23:24:41 +00:00
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update the time tables to make this work
|
|
|
|
tt := s1.fsm.TimeTable()
|
|
|
|
tt.Witness(2000, time.Now().UTC().Add(-1*s1.config.NodeGCThreshold))
|
|
|
|
|
|
|
|
// Create a core scheduler
|
2022-04-01 19:17:58 +00:00
|
|
|
snap, err := store.Snapshot()
|
2016-06-03 23:24:41 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
core := NewCoreScheduler(s1, snap)
|
|
|
|
|
|
|
|
// Attempt the GC
|
2016-06-22 16:04:22 +00:00
|
|
|
gc := s1.coreJobEval(structs.CoreJobNodeGC, 2000)
|
2016-06-03 23:24:41 +00:00
|
|
|
err = core.Process(gc)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Should be gone
|
2017-02-08 05:22:48 +00:00
|
|
|
ws := memdb.NewWatchSet()
|
2022-04-01 19:17:58 +00:00
|
|
|
out, err := store.NodeByID(ws, node.ID)
|
2016-06-03 23:24:41 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if out != nil {
|
|
|
|
t.Fatalf("bad: %v", out)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCoreScheduler_NodeGC_RunningAllocs(t *testing.T) {
|
2022-03-15 12:42:43 +00:00
|
|
|
ci.Parallel(t)
|
2019-12-04 00:15:11 +00:00
|
|
|
|
|
|
|
s1, cleanupS1 := TestServer(t, nil)
|
|
|
|
defer cleanupS1()
|
2016-06-03 23:24:41 +00:00
|
|
|
testutil.WaitForLeader(t, s1.RPC)
|
|
|
|
|
2016-08-11 21:36:22 +00:00
|
|
|
// COMPAT Remove in 0.6: Reset the FSM time table since we reconcile which sets index 0
|
|
|
|
s1.fsm.timetable.table = make([]TimeTableEntry, 1, 10)
|
|
|
|
|
2016-06-03 23:24:41 +00:00
|
|
|
// Insert "dead" node
|
2022-04-01 19:17:58 +00:00
|
|
|
store := s1.fsm.State()
|
2016-06-03 23:24:41 +00:00
|
|
|
node := mock.Node()
|
|
|
|
node.Status = structs.NodeStatusDown
|
2022-04-01 19:17:58 +00:00
|
|
|
err := store.UpsertNode(structs.MsgTypeTestSetup, 1000, node)
|
2016-06-03 23:24:41 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Insert a running alloc on that node
|
|
|
|
alloc := mock.Alloc()
|
|
|
|
alloc.NodeID = node.ID
|
|
|
|
alloc.DesiredStatus = structs.AllocDesiredStatusRun
|
|
|
|
alloc.ClientStatus = structs.AllocClientStatusRunning
|
2022-04-01 19:17:58 +00:00
|
|
|
store.UpsertJobSummary(1001, mock.JobSummary(alloc.JobID))
|
|
|
|
if err := store.UpsertAllocs(structs.MsgTypeTestSetup, 1002, []*structs.Allocation{alloc}); err != nil {
|
2016-06-03 23:24:41 +00:00
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update the time tables to make this work
|
|
|
|
tt := s1.fsm.TimeTable()
|
|
|
|
tt.Witness(2000, time.Now().UTC().Add(-1*s1.config.NodeGCThreshold))
|
|
|
|
|
|
|
|
// Create a core scheduler
|
2022-04-01 19:17:58 +00:00
|
|
|
snap, err := store.Snapshot()
|
2016-06-03 23:24:41 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
core := NewCoreScheduler(s1, snap)
|
|
|
|
|
|
|
|
// Attempt the GC
|
2016-06-22 16:04:22 +00:00
|
|
|
gc := s1.coreJobEval(structs.CoreJobNodeGC, 2000)
|
2016-06-03 23:24:41 +00:00
|
|
|
err = core.Process(gc)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Should still be here
|
2017-02-08 05:22:48 +00:00
|
|
|
ws := memdb.NewWatchSet()
|
2022-04-01 19:17:58 +00:00
|
|
|
out, err := store.NodeByID(ws, node.ID)
|
2016-06-03 23:24:41 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if out == nil {
|
|
|
|
t.Fatalf("bad: %v", out)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-20 23:50:41 +00:00
|
|
|
func TestCoreScheduler_NodeGC_Force(t *testing.T) {
|
2022-03-15 12:42:43 +00:00
|
|
|
ci.Parallel(t)
|
2019-12-04 00:15:11 +00:00
|
|
|
|
|
|
|
s1, cleanupS1 := TestServer(t, nil)
|
|
|
|
defer cleanupS1()
|
2016-02-20 23:50:41 +00:00
|
|
|
testutil.WaitForLeader(t, s1.RPC)
|
|
|
|
|
2016-08-11 21:36:22 +00:00
|
|
|
// COMPAT Remove in 0.6: Reset the FSM time table since we reconcile which sets index 0
|
|
|
|
s1.fsm.timetable.table = make([]TimeTableEntry, 1, 10)
|
|
|
|
|
2016-02-20 23:50:41 +00:00
|
|
|
// Insert "dead" node
|
2022-04-01 19:17:58 +00:00
|
|
|
store := s1.fsm.State()
|
2016-02-20 23:50:41 +00:00
|
|
|
node := mock.Node()
|
|
|
|
node.Status = structs.NodeStatusDown
|
2022-04-01 19:17:58 +00:00
|
|
|
err := store.UpsertNode(structs.MsgTypeTestSetup, 1000, node)
|
2016-02-20 23:50:41 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a core scheduler
|
2022-04-01 19:17:58 +00:00
|
|
|
snap, err := store.Snapshot()
|
2016-02-20 23:50:41 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
core := NewCoreScheduler(s1, snap)
|
|
|
|
|
|
|
|
// Attempt the GC
|
2016-06-22 16:04:22 +00:00
|
|
|
gc := s1.coreJobEval(structs.CoreJobForceGC, 1000)
|
2016-02-20 23:50:41 +00:00
|
|
|
err = core.Process(gc)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Should be gone
|
2017-02-08 05:22:48 +00:00
|
|
|
ws := memdb.NewWatchSet()
|
2022-04-01 19:17:58 +00:00
|
|
|
out, err := store.NodeByID(ws, node.ID)
|
2016-02-20 23:50:41 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if out != nil {
|
|
|
|
t.Fatalf("bad: %v", out)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-25 21:56:23 +00:00
|
|
|
func TestCoreScheduler_JobGC_OutstandingEvals(t *testing.T) {
|
2022-03-15 12:42:43 +00:00
|
|
|
ci.Parallel(t)
|
2019-12-04 00:15:11 +00:00
|
|
|
|
|
|
|
s1, cleanupS1 := TestServer(t, nil)
|
|
|
|
defer cleanupS1()
|
2016-07-25 21:56:23 +00:00
|
|
|
testutil.WaitForLeader(t, s1.RPC)
|
|
|
|
|
2016-08-11 21:36:22 +00:00
|
|
|
// COMPAT Remove in 0.6: Reset the FSM time table since we reconcile which sets index 0
|
|
|
|
s1.fsm.timetable.table = make([]TimeTableEntry, 1, 10)
|
|
|
|
|
2016-07-25 21:56:23 +00:00
|
|
|
// Insert job.
|
2022-04-01 19:17:58 +00:00
|
|
|
store := s1.fsm.State()
|
2016-07-25 21:56:23 +00:00
|
|
|
job := mock.Job()
|
|
|
|
job.Type = structs.JobTypeBatch
|
|
|
|
job.Status = structs.JobStatusDead
|
2022-04-01 19:17:58 +00:00
|
|
|
err := store.UpsertJob(structs.MsgTypeTestSetup, 1000, job)
|
2016-07-25 21:56:23 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Insert two evals, one terminal and one not
|
|
|
|
eval := mock.Eval()
|
|
|
|
eval.JobID = job.ID
|
|
|
|
eval.Status = structs.EvalStatusComplete
|
|
|
|
|
|
|
|
eval2 := mock.Eval()
|
|
|
|
eval2.JobID = job.ID
|
|
|
|
eval2.Status = structs.EvalStatusPending
|
2022-04-01 19:17:58 +00:00
|
|
|
err = store.UpsertEvals(structs.MsgTypeTestSetup, 1001, []*structs.Evaluation{eval, eval2})
|
2016-07-25 21:56:23 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update the time tables to make this work
|
|
|
|
tt := s1.fsm.TimeTable()
|
|
|
|
tt.Witness(2000, time.Now().UTC().Add(-1*s1.config.JobGCThreshold))
|
|
|
|
|
|
|
|
// Create a core scheduler
|
2022-04-01 19:17:58 +00:00
|
|
|
snap, err := store.Snapshot()
|
2016-07-25 21:56:23 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
core := NewCoreScheduler(s1, snap)
|
|
|
|
|
|
|
|
// Attempt the GC
|
|
|
|
gc := s1.coreJobEval(structs.CoreJobJobGC, 2000)
|
|
|
|
err = core.Process(gc)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Should still exist
|
2017-02-08 05:22:48 +00:00
|
|
|
ws := memdb.NewWatchSet()
|
2022-04-01 19:17:58 +00:00
|
|
|
out, err := store.JobByID(ws, job.Namespace, job.ID)
|
2016-07-25 21:56:23 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if out == nil {
|
|
|
|
t.Fatalf("bad: %v", out)
|
|
|
|
}
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
outE, err := store.EvalByID(ws, eval.ID)
|
2016-07-25 21:56:23 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if outE == nil {
|
|
|
|
t.Fatalf("bad: %v", outE)
|
|
|
|
}
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
outE2, err := store.EvalByID(ws, eval2.ID)
|
2016-07-25 21:56:23 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if outE2 == nil {
|
|
|
|
t.Fatalf("bad: %v", outE2)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update the second eval to be terminal
|
|
|
|
eval2.Status = structs.EvalStatusComplete
|
2022-04-01 19:17:58 +00:00
|
|
|
err = store.UpsertEvals(structs.MsgTypeTestSetup, 1003, []*structs.Evaluation{eval2})
|
2016-07-25 21:56:23 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a core scheduler
|
2022-04-01 19:17:58 +00:00
|
|
|
snap, err = store.Snapshot()
|
2016-07-25 21:56:23 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
core = NewCoreScheduler(s1, snap)
|
|
|
|
|
|
|
|
// Attempt the GC
|
|
|
|
gc = s1.coreJobEval(structs.CoreJobJobGC, 2000)
|
|
|
|
err = core.Process(gc)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Should not still exist
|
2022-04-01 19:17:58 +00:00
|
|
|
out, err = store.JobByID(ws, job.Namespace, job.ID)
|
2016-07-25 21:56:23 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if out != nil {
|
|
|
|
t.Fatalf("bad: %v", out)
|
|
|
|
}
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
outE, err = store.EvalByID(ws, eval.ID)
|
2016-07-25 21:56:23 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if outE != nil {
|
|
|
|
t.Fatalf("bad: %v", outE)
|
|
|
|
}
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
outE2, err = store.EvalByID(ws, eval2.ID)
|
2016-07-25 21:56:23 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if outE2 != nil {
|
|
|
|
t.Fatalf("bad: %v", outE2)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCoreScheduler_JobGC_OutstandingAllocs(t *testing.T) {
|
2022-03-15 12:42:43 +00:00
|
|
|
ci.Parallel(t)
|
2019-12-04 00:15:11 +00:00
|
|
|
|
|
|
|
s1, cleanupS1 := TestServer(t, nil)
|
|
|
|
defer cleanupS1()
|
2016-07-25 21:56:23 +00:00
|
|
|
testutil.WaitForLeader(t, s1.RPC)
|
|
|
|
|
2016-08-11 21:36:22 +00:00
|
|
|
// COMPAT Remove in 0.6: Reset the FSM time table since we reconcile which sets index 0
|
|
|
|
s1.fsm.timetable.table = make([]TimeTableEntry, 1, 10)
|
|
|
|
|
2016-07-25 21:56:23 +00:00
|
|
|
// Insert job.
|
2022-04-01 19:17:58 +00:00
|
|
|
store := s1.fsm.State()
|
2016-07-25 21:56:23 +00:00
|
|
|
job := mock.Job()
|
|
|
|
job.Type = structs.JobTypeBatch
|
|
|
|
job.Status = structs.JobStatusDead
|
2018-01-22 22:31:38 +00:00
|
|
|
job.TaskGroups[0].ReschedulePolicy = &structs.ReschedulePolicy{
|
|
|
|
Attempts: 0,
|
|
|
|
Interval: 0 * time.Second,
|
|
|
|
}
|
2022-04-01 19:17:58 +00:00
|
|
|
err := store.UpsertJob(structs.MsgTypeTestSetup, 1000, job)
|
2016-07-25 21:56:23 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Insert an eval
|
|
|
|
eval := mock.Eval()
|
|
|
|
eval.JobID = job.ID
|
|
|
|
eval.Status = structs.EvalStatusComplete
|
2022-04-01 19:17:58 +00:00
|
|
|
err = store.UpsertEvals(structs.MsgTypeTestSetup, 1001, []*structs.Evaluation{eval})
|
2016-07-25 21:56:23 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Insert two allocs, one terminal and one not
|
|
|
|
alloc := mock.Alloc()
|
|
|
|
alloc.JobID = job.ID
|
|
|
|
alloc.EvalID = eval.ID
|
|
|
|
alloc.DesiredStatus = structs.AllocDesiredStatusRun
|
|
|
|
alloc.ClientStatus = structs.AllocClientStatusComplete
|
2018-01-22 22:31:38 +00:00
|
|
|
alloc.TaskGroup = job.TaskGroups[0].Name
|
2016-07-25 21:56:23 +00:00
|
|
|
|
|
|
|
alloc2 := mock.Alloc()
|
|
|
|
alloc2.JobID = job.ID
|
|
|
|
alloc2.EvalID = eval.ID
|
|
|
|
alloc2.DesiredStatus = structs.AllocDesiredStatusRun
|
|
|
|
alloc2.ClientStatus = structs.AllocClientStatusRunning
|
2018-01-22 22:31:38 +00:00
|
|
|
alloc2.TaskGroup = job.TaskGroups[0].Name
|
2016-07-25 21:56:23 +00:00
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
err = store.UpsertAllocs(structs.MsgTypeTestSetup, 1002, []*structs.Allocation{alloc, alloc2})
|
2016-07-25 21:56:23 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update the time tables to make this work
|
|
|
|
tt := s1.fsm.TimeTable()
|
|
|
|
tt.Witness(2000, time.Now().UTC().Add(-1*s1.config.JobGCThreshold))
|
|
|
|
|
|
|
|
// Create a core scheduler
|
2022-04-01 19:17:58 +00:00
|
|
|
snap, err := store.Snapshot()
|
2016-07-25 21:56:23 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
core := NewCoreScheduler(s1, snap)
|
|
|
|
|
|
|
|
// Attempt the GC
|
|
|
|
gc := s1.coreJobEval(structs.CoreJobJobGC, 2000)
|
|
|
|
err = core.Process(gc)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Should still exist
|
2017-02-08 05:22:48 +00:00
|
|
|
ws := memdb.NewWatchSet()
|
2022-04-01 19:17:58 +00:00
|
|
|
out, err := store.JobByID(ws, job.Namespace, job.ID)
|
2016-07-25 21:56:23 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if out == nil {
|
|
|
|
t.Fatalf("bad: %v", out)
|
|
|
|
}
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
outA, err := store.AllocByID(ws, alloc.ID)
|
2016-07-25 21:56:23 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if outA == nil {
|
|
|
|
t.Fatalf("bad: %v", outA)
|
|
|
|
}
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
outA2, err := store.AllocByID(ws, alloc2.ID)
|
2016-07-25 21:56:23 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if outA2 == nil {
|
|
|
|
t.Fatalf("bad: %v", outA2)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update the second alloc to be terminal
|
|
|
|
alloc2.ClientStatus = structs.AllocClientStatusComplete
|
2022-04-01 19:17:58 +00:00
|
|
|
err = store.UpsertAllocs(structs.MsgTypeTestSetup, 1003, []*structs.Allocation{alloc2})
|
2016-07-25 21:56:23 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a core scheduler
|
2022-04-01 19:17:58 +00:00
|
|
|
snap, err = store.Snapshot()
|
2016-07-25 21:56:23 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
core = NewCoreScheduler(s1, snap)
|
|
|
|
|
|
|
|
// Attempt the GC
|
|
|
|
gc = s1.coreJobEval(structs.CoreJobJobGC, 2000)
|
|
|
|
err = core.Process(gc)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Should not still exist
|
2022-04-01 19:17:58 +00:00
|
|
|
out, err = store.JobByID(ws, job.Namespace, job.ID)
|
2016-07-25 21:56:23 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if out != nil {
|
|
|
|
t.Fatalf("bad: %v", out)
|
|
|
|
}
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
outA, err = store.AllocByID(ws, alloc.ID)
|
2016-07-25 21:56:23 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if outA != nil {
|
|
|
|
t.Fatalf("bad: %v", outA)
|
|
|
|
}
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
outA2, err = store.AllocByID(ws, alloc2.ID)
|
2016-07-25 21:56:23 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if outA2 != nil {
|
|
|
|
t.Fatalf("bad: %v", outA2)
|
2015-12-15 03:20:57 +00:00
|
|
|
}
|
|
|
|
}
|
2016-02-20 23:50:41 +00:00
|
|
|
|
2016-06-27 22:47:49 +00:00
|
|
|
// This test ensures that batch jobs are GC'd in one shot, meaning it all
|
|
|
|
// allocs/evals and job or nothing
|
|
|
|
func TestCoreScheduler_JobGC_OneShot(t *testing.T) {
|
2022-03-15 12:42:43 +00:00
|
|
|
ci.Parallel(t)
|
2019-12-04 00:15:11 +00:00
|
|
|
|
|
|
|
s1, cleanupS1 := TestServer(t, nil)
|
|
|
|
defer cleanupS1()
|
2016-06-27 22:47:49 +00:00
|
|
|
testutil.WaitForLeader(t, s1.RPC)
|
|
|
|
|
2016-08-11 21:36:22 +00:00
|
|
|
// COMPAT Remove in 0.6: Reset the FSM time table since we reconcile which sets index 0
|
|
|
|
s1.fsm.timetable.table = make([]TimeTableEntry, 1, 10)
|
|
|
|
|
2016-06-27 22:47:49 +00:00
|
|
|
// Insert job.
|
2022-04-01 19:17:58 +00:00
|
|
|
store := s1.fsm.State()
|
2016-06-27 22:47:49 +00:00
|
|
|
job := mock.Job()
|
|
|
|
job.Type = structs.JobTypeBatch
|
2022-04-01 19:17:58 +00:00
|
|
|
err := store.UpsertJob(structs.MsgTypeTestSetup, 1000, job)
|
2016-06-27 22:47:49 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Insert two complete evals
|
|
|
|
eval := mock.Eval()
|
|
|
|
eval.JobID = job.ID
|
|
|
|
eval.Status = structs.EvalStatusComplete
|
|
|
|
|
|
|
|
eval2 := mock.Eval()
|
|
|
|
eval2.JobID = job.ID
|
|
|
|
eval2.Status = structs.EvalStatusComplete
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
err = store.UpsertEvals(structs.MsgTypeTestSetup, 1001, []*structs.Evaluation{eval, eval2})
|
2016-06-27 22:47:49 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Insert one complete alloc and one running on distinct evals
|
|
|
|
alloc := mock.Alloc()
|
|
|
|
alloc.JobID = job.ID
|
|
|
|
alloc.EvalID = eval.ID
|
|
|
|
alloc.DesiredStatus = structs.AllocDesiredStatusStop
|
|
|
|
|
|
|
|
alloc2 := mock.Alloc()
|
|
|
|
alloc2.JobID = job.ID
|
|
|
|
alloc2.EvalID = eval2.ID
|
|
|
|
alloc2.DesiredStatus = structs.AllocDesiredStatusRun
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
err = store.UpsertAllocs(structs.MsgTypeTestSetup, 1002, []*structs.Allocation{alloc, alloc2})
|
2016-06-27 22:47:49 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Force the jobs state to dead
|
|
|
|
job.Status = structs.JobStatusDead
|
|
|
|
|
|
|
|
// Update the time tables to make this work
|
|
|
|
tt := s1.fsm.TimeTable()
|
|
|
|
tt.Witness(2000, time.Now().UTC().Add(-1*s1.config.JobGCThreshold))
|
|
|
|
|
|
|
|
// Create a core scheduler
|
2022-04-01 19:17:58 +00:00
|
|
|
snap, err := store.Snapshot()
|
2016-06-27 22:47:49 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
core := NewCoreScheduler(s1, snap)
|
|
|
|
|
|
|
|
// Attempt the GC
|
|
|
|
gc := s1.coreJobEval(structs.CoreJobJobGC, 2000)
|
|
|
|
err = core.Process(gc)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Should still exist
|
2017-02-08 05:22:48 +00:00
|
|
|
ws := memdb.NewWatchSet()
|
2022-04-01 19:17:58 +00:00
|
|
|
out, err := store.JobByID(ws, job.Namespace, job.ID)
|
2016-06-27 22:47:49 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if out == nil {
|
|
|
|
t.Fatalf("bad: %v", out)
|
|
|
|
}
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
outE, err := store.EvalByID(ws, eval.ID)
|
2016-06-27 22:47:49 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if outE == nil {
|
|
|
|
t.Fatalf("bad: %v", outE)
|
|
|
|
}
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
outE2, err := store.EvalByID(ws, eval2.ID)
|
2016-06-27 22:47:49 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if outE2 == nil {
|
|
|
|
t.Fatalf("bad: %v", outE2)
|
|
|
|
}
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
outA, err := store.AllocByID(ws, alloc.ID)
|
2016-06-27 22:47:49 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if outA == nil {
|
|
|
|
t.Fatalf("bad: %v", outA)
|
|
|
|
}
|
2022-04-01 19:17:58 +00:00
|
|
|
outA2, err := store.AllocByID(ws, alloc2.ID)
|
2016-06-27 22:47:49 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if outA2 == nil {
|
|
|
|
t.Fatalf("bad: %v", outA2)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-15 23:47:19 +00:00
|
|
|
// This test ensures that stopped jobs are GCd
|
|
|
|
func TestCoreScheduler_JobGC_Stopped(t *testing.T) {
|
2022-03-15 12:42:43 +00:00
|
|
|
ci.Parallel(t)
|
2019-12-04 00:15:11 +00:00
|
|
|
|
|
|
|
s1, cleanupS1 := TestServer(t, nil)
|
|
|
|
defer cleanupS1()
|
2017-04-15 23:47:19 +00:00
|
|
|
testutil.WaitForLeader(t, s1.RPC)
|
|
|
|
|
|
|
|
// COMPAT Remove in 0.6: Reset the FSM time table since we reconcile which sets index 0
|
|
|
|
s1.fsm.timetable.table = make([]TimeTableEntry, 1, 10)
|
|
|
|
|
|
|
|
// Insert job.
|
2022-04-01 19:17:58 +00:00
|
|
|
store := s1.fsm.State()
|
2017-04-15 23:47:19 +00:00
|
|
|
job := mock.Job()
|
|
|
|
job.Stop = true
|
2018-01-22 22:31:38 +00:00
|
|
|
job.TaskGroups[0].ReschedulePolicy = &structs.ReschedulePolicy{
|
|
|
|
Attempts: 0,
|
|
|
|
Interval: 0 * time.Second,
|
|
|
|
}
|
2022-04-01 19:17:58 +00:00
|
|
|
err := store.UpsertJob(structs.MsgTypeTestSetup, 1000, job)
|
2017-04-15 23:47:19 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Insert two complete evals
|
|
|
|
eval := mock.Eval()
|
|
|
|
eval.JobID = job.ID
|
|
|
|
eval.Status = structs.EvalStatusComplete
|
|
|
|
|
|
|
|
eval2 := mock.Eval()
|
|
|
|
eval2.JobID = job.ID
|
|
|
|
eval2.Status = structs.EvalStatusComplete
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
err = store.UpsertEvals(structs.MsgTypeTestSetup, 1001, []*structs.Evaluation{eval, eval2})
|
2017-04-15 23:47:19 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Insert one complete alloc
|
|
|
|
alloc := mock.Alloc()
|
|
|
|
alloc.JobID = job.ID
|
|
|
|
alloc.EvalID = eval.ID
|
|
|
|
alloc.DesiredStatus = structs.AllocDesiredStatusStop
|
2018-01-22 22:31:38 +00:00
|
|
|
alloc.TaskGroup = job.TaskGroups[0].Name
|
2022-04-01 19:17:58 +00:00
|
|
|
err = store.UpsertAllocs(structs.MsgTypeTestSetup, 1002, []*structs.Allocation{alloc})
|
2017-04-15 23:47:19 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update the time tables to make this work
|
|
|
|
tt := s1.fsm.TimeTable()
|
|
|
|
tt.Witness(2000, time.Now().UTC().Add(-1*s1.config.JobGCThreshold))
|
|
|
|
|
|
|
|
// Create a core scheduler
|
2022-04-01 19:17:58 +00:00
|
|
|
snap, err := store.Snapshot()
|
2017-04-15 23:47:19 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
core := NewCoreScheduler(s1, snap)
|
|
|
|
|
|
|
|
// Attempt the GC
|
|
|
|
gc := s1.coreJobEval(structs.CoreJobJobGC, 2000)
|
|
|
|
err = core.Process(gc)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Shouldn't still exist
|
|
|
|
ws := memdb.NewWatchSet()
|
2022-04-01 19:17:58 +00:00
|
|
|
out, err := store.JobByID(ws, job.Namespace, job.ID)
|
2017-04-15 23:47:19 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if out != nil {
|
|
|
|
t.Fatalf("bad: %v", out)
|
|
|
|
}
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
outE, err := store.EvalByID(ws, eval.ID)
|
2017-04-15 23:47:19 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if outE != nil {
|
|
|
|
t.Fatalf("bad: %v", outE)
|
|
|
|
}
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
outE2, err := store.EvalByID(ws, eval2.ID)
|
2017-04-15 23:47:19 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if outE2 != nil {
|
|
|
|
t.Fatalf("bad: %v", outE2)
|
|
|
|
}
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
outA, err := store.AllocByID(ws, alloc.ID)
|
2017-04-15 23:47:19 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if outA != nil {
|
|
|
|
t.Fatalf("bad: %v", outA)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-20 23:50:41 +00:00
|
|
|
func TestCoreScheduler_JobGC_Force(t *testing.T) {
|
2022-03-15 12:42:43 +00:00
|
|
|
ci.Parallel(t)
|
2017-10-23 22:04:00 +00:00
|
|
|
for _, withAcl := range []bool{false, true} {
|
|
|
|
t.Run(fmt.Sprintf("with acl %v", withAcl), func(t *testing.T) {
|
|
|
|
var server *Server
|
2019-12-04 00:15:11 +00:00
|
|
|
var cleanup func()
|
2017-10-23 22:04:00 +00:00
|
|
|
if withAcl {
|
2019-12-04 00:15:11 +00:00
|
|
|
server, _, cleanup = TestACLServer(t, nil)
|
2017-10-23 22:04:00 +00:00
|
|
|
} else {
|
2019-12-04 00:15:11 +00:00
|
|
|
server, cleanup = TestServer(t, nil)
|
2017-10-23 22:04:00 +00:00
|
|
|
}
|
2019-12-04 00:15:11 +00:00
|
|
|
defer cleanup()
|
2017-10-23 22:04:00 +00:00
|
|
|
testutil.WaitForLeader(t, server.RPC)
|
|
|
|
|
|
|
|
// COMPAT Remove in 0.6: Reset the FSM time table since we reconcile which sets index 0
|
|
|
|
server.fsm.timetable.table = make([]TimeTableEntry, 1, 10)
|
|
|
|
|
|
|
|
// Insert job.
|
2022-04-01 19:17:58 +00:00
|
|
|
store := server.fsm.State()
|
2017-10-23 22:04:00 +00:00
|
|
|
job := mock.Job()
|
|
|
|
job.Type = structs.JobTypeBatch
|
|
|
|
job.Status = structs.JobStatusDead
|
2022-04-01 19:17:58 +00:00
|
|
|
err := store.UpsertJob(structs.MsgTypeTestSetup, 1000, job)
|
2017-10-23 22:04:00 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Insert a terminal eval
|
|
|
|
eval := mock.Eval()
|
|
|
|
eval.JobID = job.ID
|
|
|
|
eval.Status = structs.EvalStatusComplete
|
2022-04-01 19:17:58 +00:00
|
|
|
err = store.UpsertEvals(structs.MsgTypeTestSetup, 1001, []*structs.Evaluation{eval})
|
2017-10-23 22:04:00 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a core scheduler
|
2022-04-01 19:17:58 +00:00
|
|
|
snap, err := store.Snapshot()
|
2017-10-23 22:04:00 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
core := NewCoreScheduler(server, snap)
|
|
|
|
|
|
|
|
// Attempt the GC
|
|
|
|
gc := server.coreJobEval(structs.CoreJobForceGC, 1002)
|
|
|
|
err = core.Process(gc)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Shouldn't still exist
|
|
|
|
ws := memdb.NewWatchSet()
|
2022-04-01 19:17:58 +00:00
|
|
|
out, err := store.JobByID(ws, job.Namespace, job.ID)
|
2017-10-23 22:04:00 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if out != nil {
|
|
|
|
t.Fatalf("bad: %v", out)
|
|
|
|
}
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
outE, err := store.EvalByID(ws, eval.ID)
|
2017-10-23 22:04:00 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if outE != nil {
|
|
|
|
t.Fatalf("bad: %v", outE)
|
|
|
|
}
|
|
|
|
})
|
2016-02-20 23:50:41 +00:00
|
|
|
}
|
|
|
|
}
|
2016-03-30 22:17:13 +00:00
|
|
|
|
2017-04-15 23:47:19 +00:00
|
|
|
// This test ensures parameterized jobs only get gc'd when stopped
|
|
|
|
func TestCoreScheduler_JobGC_Parameterized(t *testing.T) {
|
2022-03-15 12:42:43 +00:00
|
|
|
ci.Parallel(t)
|
2019-12-04 00:15:11 +00:00
|
|
|
|
|
|
|
s1, cleanupS1 := TestServer(t, nil)
|
|
|
|
defer cleanupS1()
|
2017-01-26 19:57:32 +00:00
|
|
|
testutil.WaitForLeader(t, s1.RPC)
|
|
|
|
|
|
|
|
// COMPAT Remove in 0.6: Reset the FSM time table since we reconcile which sets index 0
|
|
|
|
s1.fsm.timetable.table = make([]TimeTableEntry, 1, 10)
|
|
|
|
|
|
|
|
// Insert a parameterized job.
|
2022-04-01 19:17:58 +00:00
|
|
|
store := s1.fsm.State()
|
2017-01-26 19:57:32 +00:00
|
|
|
job := mock.Job()
|
|
|
|
job.Type = structs.JobTypeBatch
|
|
|
|
job.Status = structs.JobStatusRunning
|
|
|
|
job.ParameterizedJob = &structs.ParameterizedJobConfig{
|
|
|
|
Payload: structs.DispatchPayloadRequired,
|
|
|
|
}
|
2022-04-01 19:17:58 +00:00
|
|
|
err := store.UpsertJob(structs.MsgTypeTestSetup, 1000, job)
|
2017-01-26 19:57:32 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
2017-04-15 23:47:19 +00:00
|
|
|
// Create a core scheduler
|
2022-04-01 19:17:58 +00:00
|
|
|
snap, err := store.Snapshot()
|
2017-04-15 23:47:19 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
core := NewCoreScheduler(s1, snap)
|
|
|
|
|
|
|
|
// Attempt the GC
|
|
|
|
gc := s1.coreJobEval(structs.CoreJobForceGC, 1002)
|
|
|
|
err = core.Process(gc)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Should still exist
|
|
|
|
ws := memdb.NewWatchSet()
|
2022-04-01 19:17:58 +00:00
|
|
|
out, err := store.JobByID(ws, job.Namespace, job.ID)
|
2017-04-15 23:47:19 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if out == nil {
|
|
|
|
t.Fatalf("bad: %v", out)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Mark the job as stopped and try again
|
|
|
|
job2 := job.Copy()
|
|
|
|
job2.Stop = true
|
2022-04-01 19:17:58 +00:00
|
|
|
err = store.UpsertJob(structs.MsgTypeTestSetup, 2000, job2)
|
2017-04-15 23:47:19 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a core scheduler
|
2022-04-01 19:17:58 +00:00
|
|
|
snap, err = store.Snapshot()
|
2017-04-15 23:47:19 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
core = NewCoreScheduler(s1, snap)
|
|
|
|
|
|
|
|
// Attempt the GC
|
|
|
|
gc = s1.coreJobEval(structs.CoreJobForceGC, 2002)
|
|
|
|
err = core.Process(gc)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Should not exist
|
2022-04-01 19:17:58 +00:00
|
|
|
out, err = store.JobByID(ws, job.Namespace, job.ID)
|
2017-04-15 23:47:19 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if out != nil {
|
|
|
|
t.Fatalf("bad: %+v", out)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-11 17:36:28 +00:00
|
|
|
// This test ensures periodic jobs don't get GCd until they are stopped
|
2017-04-15 23:47:19 +00:00
|
|
|
func TestCoreScheduler_JobGC_Periodic(t *testing.T) {
|
2022-03-15 12:42:43 +00:00
|
|
|
ci.Parallel(t)
|
2017-04-15 23:47:19 +00:00
|
|
|
|
2019-12-04 00:15:11 +00:00
|
|
|
s1, cleanupS1 := TestServer(t, nil)
|
|
|
|
defer cleanupS1()
|
2017-04-15 23:47:19 +00:00
|
|
|
testutil.WaitForLeader(t, s1.RPC)
|
|
|
|
|
|
|
|
// COMPAT Remove in 0.6: Reset the FSM time table since we reconcile which sets index 0
|
|
|
|
s1.fsm.timetable.table = make([]TimeTableEntry, 1, 10)
|
|
|
|
|
|
|
|
// Insert a parameterized job.
|
2022-04-01 19:17:58 +00:00
|
|
|
store := s1.fsm.State()
|
2017-04-15 23:47:19 +00:00
|
|
|
job := mock.PeriodicJob()
|
2022-04-01 19:17:58 +00:00
|
|
|
err := store.UpsertJob(structs.MsgTypeTestSetup, 1000, job)
|
2017-04-15 23:47:19 +00:00
|
|
|
if err != nil {
|
2017-01-26 19:57:32 +00:00
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a core scheduler
|
2022-04-01 19:17:58 +00:00
|
|
|
snap, err := store.Snapshot()
|
2017-01-26 19:57:32 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
core := NewCoreScheduler(s1, snap)
|
|
|
|
|
|
|
|
// Attempt the GC
|
|
|
|
gc := s1.coreJobEval(structs.CoreJobForceGC, 1002)
|
|
|
|
err = core.Process(gc)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Should still exist
|
2017-02-08 05:22:48 +00:00
|
|
|
ws := memdb.NewWatchSet()
|
2022-04-01 19:17:58 +00:00
|
|
|
out, err := store.JobByID(ws, job.Namespace, job.ID)
|
2017-01-26 19:57:32 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if out == nil {
|
|
|
|
t.Fatalf("bad: %v", out)
|
|
|
|
}
|
|
|
|
|
2017-04-15 23:47:19 +00:00
|
|
|
// Mark the job as stopped and try again
|
|
|
|
job2 := job.Copy()
|
|
|
|
job2.Stop = true
|
2022-04-01 19:17:58 +00:00
|
|
|
err = store.UpsertJob(structs.MsgTypeTestSetup, 2000, job2)
|
2017-01-26 19:57:32 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
2017-04-15 23:47:19 +00:00
|
|
|
|
|
|
|
// Create a core scheduler
|
2022-04-01 19:17:58 +00:00
|
|
|
snap, err = store.Snapshot()
|
2017-04-15 23:47:19 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
core = NewCoreScheduler(s1, snap)
|
|
|
|
|
|
|
|
// Attempt the GC
|
|
|
|
gc = s1.coreJobEval(structs.CoreJobForceGC, 2002)
|
|
|
|
err = core.Process(gc)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Should not exist
|
2022-04-01 19:17:58 +00:00
|
|
|
out, err = store.JobByID(ws, job.Namespace, job.ID)
|
2017-04-15 23:47:19 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if out != nil {
|
|
|
|
t.Fatalf("bad: %+v", out)
|
2017-01-26 19:57:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-29 19:32:37 +00:00
|
|
|
func TestCoreScheduler_DeploymentGC(t *testing.T) {
|
2022-03-15 12:42:43 +00:00
|
|
|
ci.Parallel(t)
|
2019-12-04 00:15:11 +00:00
|
|
|
|
|
|
|
s1, cleanupS1 := TestServer(t, nil)
|
|
|
|
defer cleanupS1()
|
2017-06-29 19:32:37 +00:00
|
|
|
testutil.WaitForLeader(t, s1.RPC)
|
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
// COMPAT Remove in 0.6: Reset the FSM time table since we reconcile which sets index 0
|
|
|
|
s1.fsm.timetable.table = make([]TimeTableEntry, 1, 10)
|
|
|
|
|
2018-03-11 17:57:49 +00:00
|
|
|
// Insert an active, terminal, and terminal with allocations deployment
|
2022-04-01 19:17:58 +00:00
|
|
|
store := s1.fsm.State()
|
2017-07-14 20:02:39 +00:00
|
|
|
d1, d2, d3 := mock.Deployment(), mock.Deployment(), mock.Deployment()
|
2017-06-29 19:32:37 +00:00
|
|
|
d1.Status = structs.DeploymentStatusFailed
|
2017-07-14 20:02:39 +00:00
|
|
|
d3.Status = structs.DeploymentStatusSuccessful
|
2022-04-01 19:17:58 +00:00
|
|
|
assert.Nil(store.UpsertDeployment(1000, d1), "UpsertDeployment")
|
|
|
|
assert.Nil(store.UpsertDeployment(1001, d2), "UpsertDeployment")
|
|
|
|
assert.Nil(store.UpsertDeployment(1002, d3), "UpsertDeployment")
|
2017-07-14 20:02:39 +00:00
|
|
|
|
|
|
|
a := mock.Alloc()
|
|
|
|
a.JobID = d3.JobID
|
|
|
|
a.DeploymentID = d3.ID
|
2022-04-01 19:17:58 +00:00
|
|
|
assert.Nil(store.UpsertAllocs(structs.MsgTypeTestSetup, 1003, []*structs.Allocation{a}), "UpsertAllocs")
|
2017-06-29 19:32:37 +00:00
|
|
|
|
|
|
|
// Update the time tables to make this work
|
|
|
|
tt := s1.fsm.TimeTable()
|
|
|
|
tt.Witness(2000, time.Now().UTC().Add(-1*s1.config.DeploymentGCThreshold))
|
|
|
|
|
|
|
|
// Create a core scheduler
|
2022-04-01 19:17:58 +00:00
|
|
|
snap, err := store.Snapshot()
|
2017-06-29 19:32:37 +00:00
|
|
|
assert.Nil(err, "Snapshot")
|
|
|
|
core := NewCoreScheduler(s1, snap)
|
|
|
|
|
|
|
|
// Attempt the GC
|
|
|
|
gc := s1.coreJobEval(structs.CoreJobDeploymentGC, 2000)
|
|
|
|
assert.Nil(core.Process(gc), "Process GC")
|
|
|
|
|
|
|
|
// Should be gone
|
|
|
|
ws := memdb.NewWatchSet()
|
2022-04-01 19:17:58 +00:00
|
|
|
out, err := store.DeploymentByID(ws, d1.ID)
|
2017-06-29 19:32:37 +00:00
|
|
|
assert.Nil(err, "DeploymentByID")
|
|
|
|
assert.Nil(out, "Terminal Deployment")
|
2022-04-01 19:17:58 +00:00
|
|
|
out2, err := store.DeploymentByID(ws, d2.ID)
|
2017-06-29 19:32:37 +00:00
|
|
|
assert.Nil(err, "DeploymentByID")
|
|
|
|
assert.NotNil(out2, "Active Deployment")
|
2022-04-01 19:17:58 +00:00
|
|
|
out3, err := store.DeploymentByID(ws, d3.ID)
|
2017-07-14 20:02:39 +00:00
|
|
|
assert.Nil(err, "DeploymentByID")
|
|
|
|
assert.NotNil(out3, "Terminal Deployment With Allocs")
|
2017-06-29 19:32:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestCoreScheduler_DeploymentGC_Force(t *testing.T) {
|
2022-03-15 12:42:43 +00:00
|
|
|
ci.Parallel(t)
|
2017-10-23 22:04:00 +00:00
|
|
|
for _, withAcl := range []bool{false, true} {
|
|
|
|
t.Run(fmt.Sprintf("with acl %v", withAcl), func(t *testing.T) {
|
|
|
|
var server *Server
|
2019-12-04 00:15:11 +00:00
|
|
|
var cleanup func()
|
2017-10-23 22:04:00 +00:00
|
|
|
if withAcl {
|
2019-12-04 00:15:11 +00:00
|
|
|
server, _, cleanup = TestACLServer(t, nil)
|
2017-10-23 22:04:00 +00:00
|
|
|
} else {
|
2019-12-04 00:15:11 +00:00
|
|
|
server, cleanup = TestServer(t, nil)
|
2017-10-23 22:04:00 +00:00
|
|
|
}
|
2019-12-04 00:15:11 +00:00
|
|
|
defer cleanup()
|
2017-10-23 22:04:00 +00:00
|
|
|
testutil.WaitForLeader(t, server.RPC)
|
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
// COMPAT Remove in 0.6: Reset the FSM time table since we reconcile which sets index 0
|
|
|
|
server.fsm.timetable.table = make([]TimeTableEntry, 1, 10)
|
|
|
|
|
|
|
|
// Insert terminal and active deployment
|
2022-04-01 19:17:58 +00:00
|
|
|
store := server.fsm.State()
|
2017-10-23 22:04:00 +00:00
|
|
|
d1, d2 := mock.Deployment(), mock.Deployment()
|
|
|
|
d1.Status = structs.DeploymentStatusFailed
|
2022-04-01 19:17:58 +00:00
|
|
|
assert.Nil(store.UpsertDeployment(1000, d1), "UpsertDeployment")
|
|
|
|
assert.Nil(store.UpsertDeployment(1001, d2), "UpsertDeployment")
|
2017-10-23 22:04:00 +00:00
|
|
|
|
|
|
|
// Create a core scheduler
|
2022-04-01 19:17:58 +00:00
|
|
|
snap, err := store.Snapshot()
|
2017-10-23 22:04:00 +00:00
|
|
|
assert.Nil(err, "Snapshot")
|
|
|
|
core := NewCoreScheduler(server, snap)
|
|
|
|
|
|
|
|
// Attempt the GC
|
|
|
|
gc := server.coreJobEval(structs.CoreJobForceGC, 1000)
|
|
|
|
assert.Nil(core.Process(gc), "Process Force GC")
|
|
|
|
|
|
|
|
// Should be gone
|
|
|
|
ws := memdb.NewWatchSet()
|
2022-04-01 19:17:58 +00:00
|
|
|
out, err := store.DeploymentByID(ws, d1.ID)
|
2017-10-23 22:04:00 +00:00
|
|
|
assert.Nil(err, "DeploymentByID")
|
|
|
|
assert.Nil(out, "Terminal Deployment")
|
2022-04-01 19:17:58 +00:00
|
|
|
out2, err := store.DeploymentByID(ws, d2.ID)
|
2017-10-23 22:04:00 +00:00
|
|
|
assert.Nil(err, "DeploymentByID")
|
|
|
|
assert.NotNil(out2, "Active Deployment")
|
|
|
|
})
|
|
|
|
}
|
2017-06-29 19:32:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestCoreScheduler_PartitionEvalReap(t *testing.T) {
|
2022-03-15 12:42:43 +00:00
|
|
|
ci.Parallel(t)
|
2019-12-04 00:15:11 +00:00
|
|
|
|
|
|
|
s1, cleanupS1 := TestServer(t, nil)
|
|
|
|
defer cleanupS1()
|
2016-03-30 22:17:13 +00:00
|
|
|
testutil.WaitForLeader(t, s1.RPC)
|
|
|
|
|
2016-08-11 21:36:22 +00:00
|
|
|
// COMPAT Remove in 0.6: Reset the FSM time table since we reconcile which sets index 0
|
|
|
|
s1.fsm.timetable.table = make([]TimeTableEntry, 1, 10)
|
|
|
|
|
2016-03-30 22:17:13 +00:00
|
|
|
// Create a core scheduler
|
|
|
|
snap, err := s1.fsm.State().Snapshot()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
core := NewCoreScheduler(s1, snap)
|
|
|
|
|
|
|
|
// Set the max ids per reap to something lower.
|
2022-07-06 14:30:11 +00:00
|
|
|
structs.MaxUUIDsPerWriteRequest = 2
|
2016-03-30 22:17:13 +00:00
|
|
|
|
|
|
|
evals := []string{"a", "b", "c"}
|
|
|
|
allocs := []string{"1", "2", "3"}
|
2017-06-29 19:32:37 +00:00
|
|
|
requests := core.(*CoreScheduler).partitionEvalReap(evals, allocs)
|
2016-03-30 22:17:13 +00:00
|
|
|
if len(requests) != 3 {
|
|
|
|
t.Fatalf("Expected 3 requests got: %v", requests)
|
|
|
|
}
|
|
|
|
|
|
|
|
first := requests[0]
|
2016-04-14 18:41:04 +00:00
|
|
|
if len(first.Allocs) != 2 && len(first.Evals) != 0 {
|
2016-03-30 22:17:13 +00:00
|
|
|
t.Fatalf("Unexpected first request: %v", first)
|
|
|
|
}
|
|
|
|
|
|
|
|
second := requests[1]
|
2016-04-14 18:41:04 +00:00
|
|
|
if len(second.Allocs) != 1 && len(second.Evals) != 1 {
|
2016-03-30 22:17:13 +00:00
|
|
|
t.Fatalf("Unexpected second request: %v", second)
|
|
|
|
}
|
|
|
|
|
|
|
|
third := requests[2]
|
2016-04-14 18:41:04 +00:00
|
|
|
if len(third.Allocs) != 0 && len(third.Evals) != 2 {
|
2016-03-30 22:17:13 +00:00
|
|
|
t.Fatalf("Unexpected third request: %v", third)
|
|
|
|
}
|
|
|
|
}
|
2017-06-29 19:32:37 +00:00
|
|
|
|
|
|
|
func TestCoreScheduler_PartitionDeploymentReap(t *testing.T) {
|
2022-03-15 12:42:43 +00:00
|
|
|
ci.Parallel(t)
|
2019-12-04 00:15:11 +00:00
|
|
|
|
|
|
|
s1, cleanupS1 := TestServer(t, nil)
|
|
|
|
defer cleanupS1()
|
2017-06-29 19:32:37 +00:00
|
|
|
testutil.WaitForLeader(t, s1.RPC)
|
|
|
|
|
|
|
|
// COMPAT Remove in 0.6: Reset the FSM time table since we reconcile which sets index 0
|
|
|
|
s1.fsm.timetable.table = make([]TimeTableEntry, 1, 10)
|
|
|
|
|
|
|
|
// Create a core scheduler
|
|
|
|
snap, err := s1.fsm.State().Snapshot()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
core := NewCoreScheduler(s1, snap)
|
|
|
|
|
|
|
|
// Set the max ids per reap to something lower.
|
2022-07-06 14:30:11 +00:00
|
|
|
structs.MaxUUIDsPerWriteRequest = 2
|
2017-06-29 19:32:37 +00:00
|
|
|
|
|
|
|
deployments := []string{"a", "b", "c"}
|
|
|
|
requests := core.(*CoreScheduler).partitionDeploymentReap(deployments)
|
|
|
|
if len(requests) != 2 {
|
|
|
|
t.Fatalf("Expected 2 requests got: %v", requests)
|
|
|
|
}
|
|
|
|
|
|
|
|
first := requests[0]
|
|
|
|
if len(first.Deployments) != 2 {
|
|
|
|
t.Fatalf("Unexpected first request: %v", first)
|
|
|
|
}
|
|
|
|
|
|
|
|
second := requests[1]
|
|
|
|
if len(second.Deployments) != 1 {
|
|
|
|
t.Fatalf("Unexpected second request: %v", second)
|
|
|
|
}
|
|
|
|
}
|
2018-01-30 15:12:14 +00:00
|
|
|
|
2018-03-14 23:06:37 +00:00
|
|
|
func TestCoreScheduler_PartitionJobReap(t *testing.T) {
|
2019-12-04 00:15:11 +00:00
|
|
|
|
|
|
|
s1, cleanupS1 := TestServer(t, nil)
|
|
|
|
defer cleanupS1()
|
2018-03-14 23:06:37 +00:00
|
|
|
testutil.WaitForLeader(t, s1.RPC)
|
|
|
|
|
|
|
|
// Create a core scheduler
|
|
|
|
snap, err := s1.fsm.State().Snapshot()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
core := NewCoreScheduler(s1, snap)
|
|
|
|
|
|
|
|
// Set the max ids per reap to something lower.
|
2022-07-06 14:30:11 +00:00
|
|
|
originalMaxUUIDsPerWriteRequest := structs.MaxUUIDsPerWriteRequest
|
|
|
|
structs.MaxUUIDsPerWriteRequest = 2
|
|
|
|
defer func() {
|
|
|
|
structs.MaxUUIDsPerWriteRequest = originalMaxUUIDsPerWriteRequest
|
|
|
|
}()
|
2018-03-14 23:06:37 +00:00
|
|
|
|
|
|
|
jobs := []*structs.Job{mock.Job(), mock.Job(), mock.Job()}
|
|
|
|
requests := core.(*CoreScheduler).partitionJobReap(jobs, "")
|
2022-04-01 19:17:58 +00:00
|
|
|
require.Len(t, requests, 2)
|
2018-03-14 23:06:37 +00:00
|
|
|
|
|
|
|
first := requests[0]
|
|
|
|
second := requests[1]
|
2022-04-01 19:17:58 +00:00
|
|
|
require.Len(t, first.Jobs, 2)
|
|
|
|
require.Len(t, second.Jobs, 1)
|
2018-03-14 23:06:37 +00:00
|
|
|
}
|
|
|
|
|
2018-01-30 15:12:14 +00:00
|
|
|
// Tests various scenarios when allocations are eligible to be GCed
|
|
|
|
func TestAllocation_GCEligible(t *testing.T) {
|
|
|
|
type testCase struct {
|
2018-11-01 05:02:26 +00:00
|
|
|
Desc string
|
|
|
|
GCTime time.Time
|
|
|
|
ClientStatus string
|
|
|
|
DesiredStatus string
|
|
|
|
JobStatus string
|
|
|
|
JobStop bool
|
|
|
|
AllocJobModifyIndex uint64
|
|
|
|
JobModifyIndex uint64
|
|
|
|
ModifyIndex uint64
|
|
|
|
NextAllocID string
|
|
|
|
ReschedulePolicy *structs.ReschedulePolicy
|
|
|
|
RescheduleTrackers []*structs.RescheduleEvent
|
|
|
|
ThresholdIndex uint64
|
|
|
|
ShouldGC bool
|
2018-01-30 15:12:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fail := time.Now()
|
|
|
|
|
|
|
|
harness := []testCase{
|
|
|
|
{
|
2018-04-11 20:12:23 +00:00
|
|
|
Desc: "Don't GC when non terminal",
|
2018-01-30 15:12:14 +00:00
|
|
|
ClientStatus: structs.AllocClientStatusPending,
|
|
|
|
DesiredStatus: structs.AllocDesiredStatusRun,
|
|
|
|
GCTime: fail,
|
|
|
|
ModifyIndex: 90,
|
|
|
|
ThresholdIndex: 90,
|
|
|
|
ShouldGC: false,
|
|
|
|
},
|
2018-01-30 22:14:53 +00:00
|
|
|
{
|
2018-04-11 20:12:23 +00:00
|
|
|
Desc: "Don't GC when non terminal and job stopped",
|
2018-01-30 22:14:53 +00:00
|
|
|
ClientStatus: structs.AllocClientStatusPending,
|
|
|
|
DesiredStatus: structs.AllocDesiredStatusRun,
|
|
|
|
JobStop: true,
|
|
|
|
GCTime: fail,
|
|
|
|
ModifyIndex: 90,
|
|
|
|
ThresholdIndex: 90,
|
|
|
|
ShouldGC: false,
|
|
|
|
},
|
|
|
|
{
|
2018-04-11 20:12:23 +00:00
|
|
|
Desc: "Don't GC when non terminal and job dead",
|
2018-01-30 22:14:53 +00:00
|
|
|
ClientStatus: structs.AllocClientStatusPending,
|
|
|
|
DesiredStatus: structs.AllocDesiredStatusRun,
|
|
|
|
JobStatus: structs.JobStatusDead,
|
|
|
|
GCTime: fail,
|
|
|
|
ModifyIndex: 90,
|
|
|
|
ThresholdIndex: 90,
|
|
|
|
ShouldGC: false,
|
|
|
|
},
|
2018-12-05 21:01:12 +00:00
|
|
|
{
|
|
|
|
Desc: "Don't GC when non terminal on client and job dead",
|
|
|
|
ClientStatus: structs.AllocClientStatusRunning,
|
|
|
|
DesiredStatus: structs.AllocDesiredStatusStop,
|
|
|
|
JobStatus: structs.JobStatusDead,
|
|
|
|
GCTime: fail,
|
|
|
|
ModifyIndex: 90,
|
|
|
|
ThresholdIndex: 90,
|
|
|
|
ShouldGC: false,
|
|
|
|
},
|
2018-01-30 15:12:14 +00:00
|
|
|
{
|
2018-04-11 18:58:02 +00:00
|
|
|
Desc: "GC when terminal but not failed ",
|
|
|
|
ClientStatus: structs.AllocClientStatusComplete,
|
|
|
|
DesiredStatus: structs.AllocDesiredStatusRun,
|
|
|
|
GCTime: fail,
|
2018-04-11 20:12:23 +00:00
|
|
|
ModifyIndex: 90,
|
2018-04-11 18:58:02 +00:00
|
|
|
ThresholdIndex: 90,
|
|
|
|
ReschedulePolicy: nil,
|
2018-04-11 20:12:23 +00:00
|
|
|
ShouldGC: true,
|
2018-04-11 18:58:02 +00:00
|
|
|
},
|
2018-01-30 15:12:14 +00:00
|
|
|
{
|
2018-04-11 20:12:23 +00:00
|
|
|
Desc: "Don't GC when threshold not met",
|
2018-01-30 15:12:14 +00:00
|
|
|
ClientStatus: structs.AllocClientStatusComplete,
|
|
|
|
DesiredStatus: structs.AllocDesiredStatusStop,
|
|
|
|
GCTime: fail,
|
|
|
|
ModifyIndex: 100,
|
|
|
|
ThresholdIndex: 90,
|
|
|
|
ReschedulePolicy: nil,
|
|
|
|
ShouldGC: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Desc: "GC when no reschedule policy",
|
|
|
|
ClientStatus: structs.AllocClientStatusFailed,
|
|
|
|
DesiredStatus: structs.AllocDesiredStatusRun,
|
|
|
|
GCTime: fail,
|
|
|
|
ReschedulePolicy: nil,
|
|
|
|
ModifyIndex: 90,
|
|
|
|
ThresholdIndex: 90,
|
|
|
|
ShouldGC: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Desc: "GC when empty policy",
|
|
|
|
ClientStatus: structs.AllocClientStatusFailed,
|
|
|
|
DesiredStatus: structs.AllocDesiredStatusRun,
|
|
|
|
GCTime: fail,
|
2018-02-28 18:21:27 +00:00
|
|
|
ReschedulePolicy: &structs.ReschedulePolicy{Attempts: 0, Interval: 0 * time.Minute},
|
2018-01-30 15:12:14 +00:00
|
|
|
ModifyIndex: 90,
|
|
|
|
ThresholdIndex: 90,
|
|
|
|
ShouldGC: true,
|
|
|
|
},
|
|
|
|
{
|
2018-04-11 20:12:23 +00:00
|
|
|
Desc: "Don't GC when no previous reschedule attempts",
|
2018-01-30 15:12:14 +00:00
|
|
|
ClientStatus: structs.AllocClientStatusFailed,
|
|
|
|
DesiredStatus: structs.AllocDesiredStatusRun,
|
|
|
|
GCTime: fail,
|
|
|
|
ModifyIndex: 90,
|
|
|
|
ThresholdIndex: 90,
|
2018-02-28 18:21:27 +00:00
|
|
|
ReschedulePolicy: &structs.ReschedulePolicy{Attempts: 1, Interval: 1 * time.Minute},
|
2018-01-30 15:12:14 +00:00
|
|
|
ShouldGC: false,
|
|
|
|
},
|
|
|
|
{
|
2018-04-11 20:12:23 +00:00
|
|
|
Desc: "Don't GC when prev reschedule attempt within interval",
|
2018-01-30 15:12:14 +00:00
|
|
|
ClientStatus: structs.AllocClientStatusFailed,
|
|
|
|
DesiredStatus: structs.AllocDesiredStatusRun,
|
2018-02-28 18:21:27 +00:00
|
|
|
ReschedulePolicy: &structs.ReschedulePolicy{Attempts: 2, Interval: 30 * time.Minute},
|
2018-01-30 15:12:14 +00:00
|
|
|
GCTime: fail,
|
|
|
|
ModifyIndex: 90,
|
|
|
|
ThresholdIndex: 90,
|
|
|
|
RescheduleTrackers: []*structs.RescheduleEvent{
|
|
|
|
{
|
|
|
|
RescheduleTime: fail.Add(-5 * time.Minute).UTC().UnixNano(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
ShouldGC: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Desc: "GC with prev reschedule attempt outside interval",
|
|
|
|
ClientStatus: structs.AllocClientStatusFailed,
|
|
|
|
DesiredStatus: structs.AllocDesiredStatusRun,
|
|
|
|
GCTime: fail,
|
2018-02-28 18:21:27 +00:00
|
|
|
ReschedulePolicy: &structs.ReschedulePolicy{Attempts: 5, Interval: 30 * time.Minute},
|
2018-01-30 15:12:14 +00:00
|
|
|
RescheduleTrackers: []*structs.RescheduleEvent{
|
|
|
|
{
|
|
|
|
RescheduleTime: fail.Add(-45 * time.Minute).UTC().UnixNano(),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
RescheduleTime: fail.Add(-60 * time.Minute).UTC().UnixNano(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
ShouldGC: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Desc: "GC when next alloc id is set",
|
|
|
|
ClientStatus: structs.AllocClientStatusFailed,
|
|
|
|
DesiredStatus: structs.AllocDesiredStatusRun,
|
|
|
|
GCTime: fail,
|
2018-02-28 18:21:27 +00:00
|
|
|
ReschedulePolicy: &structs.ReschedulePolicy{Attempts: 5, Interval: 30 * time.Minute},
|
2018-01-30 15:12:14 +00:00
|
|
|
RescheduleTrackers: []*structs.RescheduleEvent{
|
|
|
|
{
|
|
|
|
RescheduleTime: fail.Add(-3 * time.Minute).UTC().UnixNano(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
NextAllocID: uuid.Generate(),
|
|
|
|
ShouldGC: true,
|
|
|
|
},
|
2018-04-11 18:58:02 +00:00
|
|
|
{
|
2018-04-11 20:12:23 +00:00
|
|
|
Desc: "Don't GC when next alloc id is not set and unlimited restarts",
|
2018-04-11 18:58:02 +00:00
|
|
|
ClientStatus: structs.AllocClientStatusFailed,
|
|
|
|
DesiredStatus: structs.AllocDesiredStatusRun,
|
|
|
|
GCTime: fail,
|
|
|
|
ReschedulePolicy: &structs.ReschedulePolicy{Unlimited: true, Delay: 5 * time.Second, DelayFunction: "constant"},
|
|
|
|
RescheduleTrackers: []*structs.RescheduleEvent{
|
|
|
|
{
|
|
|
|
RescheduleTime: fail.Add(-3 * time.Minute).UTC().UnixNano(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
ShouldGC: false,
|
2018-01-30 15:12:14 +00:00
|
|
|
},
|
2018-01-30 22:14:53 +00:00
|
|
|
{
|
|
|
|
Desc: "GC when job is stopped",
|
|
|
|
ClientStatus: structs.AllocClientStatusFailed,
|
|
|
|
DesiredStatus: structs.AllocDesiredStatusRun,
|
|
|
|
GCTime: fail,
|
2018-02-28 18:21:27 +00:00
|
|
|
ReschedulePolicy: &structs.ReschedulePolicy{Attempts: 5, Interval: 30 * time.Minute},
|
2018-01-30 22:14:53 +00:00
|
|
|
RescheduleTrackers: []*structs.RescheduleEvent{
|
|
|
|
{
|
|
|
|
RescheduleTime: fail.Add(-3 * time.Minute).UTC().UnixNano(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
JobStop: true,
|
|
|
|
ShouldGC: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Desc: "GC when job status is dead",
|
|
|
|
ClientStatus: structs.AllocClientStatusFailed,
|
|
|
|
DesiredStatus: structs.AllocDesiredStatusRun,
|
|
|
|
GCTime: fail,
|
2018-02-28 18:21:27 +00:00
|
|
|
ReschedulePolicy: &structs.ReschedulePolicy{Attempts: 5, Interval: 30 * time.Minute},
|
2018-01-30 22:14:53 +00:00
|
|
|
RescheduleTrackers: []*structs.RescheduleEvent{
|
|
|
|
{
|
|
|
|
RescheduleTime: fail.Add(-3 * time.Minute).UTC().UnixNano(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
JobStatus: structs.JobStatusDead,
|
|
|
|
ShouldGC: true,
|
|
|
|
},
|
2018-05-21 18:28:31 +00:00
|
|
|
{
|
|
|
|
Desc: "GC when desired status is stop, unlimited reschedule policy, no previous reschedule events",
|
|
|
|
ClientStatus: structs.AllocClientStatusFailed,
|
|
|
|
DesiredStatus: structs.AllocDesiredStatusStop,
|
|
|
|
GCTime: fail,
|
|
|
|
ReschedulePolicy: &structs.ReschedulePolicy{Unlimited: true, Delay: 5 * time.Second, DelayFunction: "constant"},
|
|
|
|
ShouldGC: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Desc: "GC when desired status is stop, limited reschedule policy, some previous reschedule events",
|
|
|
|
ClientStatus: structs.AllocClientStatusFailed,
|
|
|
|
DesiredStatus: structs.AllocDesiredStatusStop,
|
|
|
|
GCTime: fail,
|
|
|
|
ReschedulePolicy: &structs.ReschedulePolicy{Attempts: 5, Interval: 30 * time.Minute},
|
|
|
|
RescheduleTrackers: []*structs.RescheduleEvent{
|
|
|
|
{
|
|
|
|
RescheduleTime: fail.Add(-3 * time.Minute).UTC().UnixNano(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
ShouldGC: true,
|
|
|
|
},
|
2018-01-30 15:12:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range harness {
|
|
|
|
alloc := &structs.Allocation{}
|
|
|
|
alloc.ModifyIndex = tc.ModifyIndex
|
|
|
|
alloc.DesiredStatus = tc.DesiredStatus
|
|
|
|
alloc.ClientStatus = tc.ClientStatus
|
2018-02-28 18:21:27 +00:00
|
|
|
alloc.RescheduleTracker = &structs.RescheduleTracker{Events: tc.RescheduleTrackers}
|
2018-01-30 22:14:53 +00:00
|
|
|
alloc.NextAllocation = tc.NextAllocID
|
|
|
|
job := mock.Job()
|
|
|
|
alloc.TaskGroup = job.TaskGroups[0].Name
|
|
|
|
job.TaskGroups[0].ReschedulePolicy = tc.ReschedulePolicy
|
|
|
|
if tc.JobStatus != "" {
|
|
|
|
job.Status = tc.JobStatus
|
|
|
|
}
|
|
|
|
job.Stop = tc.JobStop
|
2018-01-30 15:12:14 +00:00
|
|
|
|
|
|
|
t.Run(tc.Desc, func(t *testing.T) {
|
2018-01-30 22:14:53 +00:00
|
|
|
if got := allocGCEligible(alloc, job, tc.GCTime, tc.ThresholdIndex); got != tc.ShouldGC {
|
2018-01-30 15:12:14 +00:00
|
|
|
t.Fatalf("expected %v but got %v", tc.ShouldGC, got)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
2018-01-30 22:14:53 +00:00
|
|
|
|
|
|
|
// Verify nil job
|
|
|
|
alloc := mock.Alloc()
|
|
|
|
alloc.ClientStatus = structs.AllocClientStatusComplete
|
2022-04-01 19:17:58 +00:00
|
|
|
require.True(t, allocGCEligible(alloc, nil, time.Now(), 1000))
|
2018-01-30 15:12:14 +00:00
|
|
|
}
|
2020-05-06 20:49:12 +00:00
|
|
|
|
|
|
|
func TestCoreScheduler_CSIPluginGC(t *testing.T) {
|
2022-03-15 12:42:43 +00:00
|
|
|
ci.Parallel(t)
|
2020-05-06 20:49:12 +00:00
|
|
|
|
|
|
|
srv, cleanupSRV := TestServer(t, nil)
|
|
|
|
defer cleanupSRV()
|
|
|
|
testutil.WaitForLeader(t, srv.RPC)
|
|
|
|
|
|
|
|
srv.fsm.timetable.table = make([]TimeTableEntry, 1, 10)
|
|
|
|
|
|
|
|
deleteNodes := state.CreateTestCSIPlugin(srv.fsm.State(), "foo")
|
|
|
|
defer deleteNodes()
|
2022-04-01 19:17:58 +00:00
|
|
|
store := srv.fsm.State()
|
2020-05-06 20:49:12 +00:00
|
|
|
|
|
|
|
// Update the time tables to make this work
|
|
|
|
tt := srv.fsm.TimeTable()
|
|
|
|
index := uint64(2000)
|
2020-05-11 12:20:50 +00:00
|
|
|
tt.Witness(index, time.Now().UTC().Add(-1*srv.config.CSIPluginGCThreshold))
|
2020-05-06 20:49:12 +00:00
|
|
|
|
|
|
|
// Create a core scheduler
|
2022-04-01 19:17:58 +00:00
|
|
|
snap, err := store.Snapshot()
|
|
|
|
require.NoError(t, err)
|
2020-05-06 20:49:12 +00:00
|
|
|
core := NewCoreScheduler(srv, snap)
|
|
|
|
|
|
|
|
// Attempt the GC
|
|
|
|
index++
|
|
|
|
gc := srv.coreJobEval(structs.CoreJobCSIPluginGC, index)
|
2022-04-01 19:17:58 +00:00
|
|
|
require.NoError(t, core.Process(gc))
|
2020-05-06 20:49:12 +00:00
|
|
|
|
|
|
|
// Should not be gone (plugin in use)
|
|
|
|
ws := memdb.NewWatchSet()
|
2022-04-01 19:17:58 +00:00
|
|
|
plug, err := store.CSIPluginByID(ws, "foo")
|
|
|
|
require.NotNil(t, plug)
|
|
|
|
require.NoError(t, err)
|
2020-05-06 20:49:12 +00:00
|
|
|
|
|
|
|
// Empty the plugin
|
|
|
|
plug.Controllers = map[string]*structs.CSIInfo{}
|
|
|
|
plug.Nodes = map[string]*structs.CSIInfo{}
|
|
|
|
|
|
|
|
index++
|
2022-04-01 19:17:58 +00:00
|
|
|
err = store.UpsertCSIPlugin(index, plug)
|
|
|
|
require.NoError(t, err)
|
2020-05-06 20:49:12 +00:00
|
|
|
|
|
|
|
// Retry
|
|
|
|
index++
|
|
|
|
gc = srv.coreJobEval(structs.CoreJobCSIPluginGC, index)
|
2022-04-01 19:17:58 +00:00
|
|
|
require.NoError(t, core.Process(gc))
|
2020-05-06 20:49:12 +00:00
|
|
|
|
|
|
|
// Should be gone
|
2022-04-01 19:17:58 +00:00
|
|
|
plug, err = store.CSIPluginByID(ws, "foo")
|
|
|
|
require.Nil(t, plug)
|
|
|
|
require.NoError(t, err)
|
2020-05-06 20:49:12 +00:00
|
|
|
}
|
2020-05-11 12:20:50 +00:00
|
|
|
|
|
|
|
func TestCoreScheduler_CSIVolumeClaimGC(t *testing.T) {
|
|
|
|
srv, shutdown := TestServer(t, func(c *Config) {
|
|
|
|
c.NumSchedulers = 0 // Prevent automatic dequeue
|
|
|
|
})
|
|
|
|
|
|
|
|
defer shutdown()
|
|
|
|
testutil.WaitForLeader(t, srv.RPC)
|
|
|
|
codec := rpcClient(t, srv)
|
|
|
|
|
|
|
|
index := uint64(1)
|
|
|
|
volID := uuid.Generate()
|
|
|
|
ns := structs.DefaultNamespace
|
|
|
|
pluginID := "foo"
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
store := srv.fsm.State()
|
2020-05-11 12:20:50 +00:00
|
|
|
ws := memdb.NewWatchSet()
|
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
index, _ = store.LatestIndex()
|
2020-05-11 12:20:50 +00:00
|
|
|
|
|
|
|
// Create client node and plugin
|
|
|
|
node := mock.Node()
|
|
|
|
node.Attributes["nomad.version"] = "0.11.0" // needs client RPCs
|
|
|
|
node.CSINodePlugins = map[string]*structs.CSIInfo{
|
|
|
|
pluginID: {
|
|
|
|
PluginID: pluginID,
|
|
|
|
Healthy: true,
|
|
|
|
NodeInfo: &structs.CSINodeInfo{},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
index++
|
2022-04-01 19:17:58 +00:00
|
|
|
err := store.UpsertNode(structs.MsgTypeTestSetup, index, node)
|
|
|
|
require.NoError(t, err)
|
2020-05-11 12:20:50 +00:00
|
|
|
|
2022-04-04 14:46:45 +00:00
|
|
|
// *Important*: for volume writes in this test we must use RPCs
|
|
|
|
// rather than StateStore methods directly, or the blocking query
|
|
|
|
// in volumewatcher won't get the final update for GC because it's
|
|
|
|
// watching on a different store at that point
|
2020-05-11 12:20:50 +00:00
|
|
|
|
|
|
|
// Register a volume
|
|
|
|
vols := []*structs.CSIVolume{{
|
2021-04-08 14:42:19 +00:00
|
|
|
ID: volID,
|
|
|
|
Namespace: ns,
|
|
|
|
PluginID: pluginID,
|
|
|
|
Topologies: []*structs.CSITopology{},
|
|
|
|
RequestedCapabilities: []*structs.CSIVolumeCapability{{
|
|
|
|
AccessMode: structs.CSIVolumeAccessModeMultiNodeSingleWriter,
|
|
|
|
AttachmentMode: structs.CSIVolumeAttachmentModeFilesystem,
|
|
|
|
}},
|
2020-05-11 12:20:50 +00:00
|
|
|
}}
|
|
|
|
volReq := &structs.CSIVolumeRegisterRequest{Volumes: vols}
|
|
|
|
volReq.Namespace = ns
|
|
|
|
volReq.Region = srv.config.Region
|
|
|
|
|
|
|
|
err = msgpackrpc.CallWithCodec(codec, "CSIVolume.Register",
|
|
|
|
volReq, &structs.CSIVolumeRegisterResponse{})
|
2022-04-01 19:17:58 +00:00
|
|
|
require.NoError(t, err)
|
2020-05-11 12:20:50 +00:00
|
|
|
|
2022-04-04 14:46:45 +00:00
|
|
|
// Create a job with two allocs that claim the volume.
|
2020-05-11 12:20:50 +00:00
|
|
|
// We use two allocs here, one of which is not running, so
|
2022-04-04 14:46:45 +00:00
|
|
|
// that we can assert the volumewatcher has made one
|
|
|
|
// complete pass (and removed the 2nd alloc) before we
|
|
|
|
// run the GC
|
2020-05-11 12:20:50 +00:00
|
|
|
eval := mock.Eval()
|
|
|
|
eval.Status = structs.EvalStatusFailed
|
|
|
|
index++
|
2022-04-01 19:17:58 +00:00
|
|
|
store.UpsertJobSummary(index, mock.JobSummary(eval.JobID))
|
2020-05-11 12:20:50 +00:00
|
|
|
index++
|
2022-04-01 19:17:58 +00:00
|
|
|
err = store.UpsertEvals(structs.MsgTypeTestSetup, index, []*structs.Evaluation{eval})
|
|
|
|
require.Nil(t, err)
|
2020-05-11 12:20:50 +00:00
|
|
|
|
|
|
|
job := mock.Job()
|
|
|
|
job.ID = eval.JobID
|
|
|
|
job.Status = structs.JobStatusRunning
|
|
|
|
index++
|
2022-04-01 19:17:58 +00:00
|
|
|
err = store.UpsertJob(structs.MsgTypeTestSetup, index, job)
|
|
|
|
require.NoError(t, err)
|
2020-05-11 12:20:50 +00:00
|
|
|
|
|
|
|
alloc1, alloc2 := mock.Alloc(), mock.Alloc()
|
|
|
|
alloc1.NodeID = node.ID
|
|
|
|
alloc1.ClientStatus = structs.AllocClientStatusRunning
|
|
|
|
alloc1.Job = job
|
|
|
|
alloc1.JobID = job.ID
|
|
|
|
alloc1.EvalID = eval.ID
|
|
|
|
|
|
|
|
alloc2.NodeID = node.ID
|
|
|
|
alloc2.ClientStatus = structs.AllocClientStatusComplete
|
2022-04-04 14:46:45 +00:00
|
|
|
alloc2.DesiredStatus = structs.AllocDesiredStatusStop
|
2020-05-11 12:20:50 +00:00
|
|
|
alloc2.Job = job
|
|
|
|
alloc2.JobID = job.ID
|
|
|
|
alloc2.EvalID = eval.ID
|
|
|
|
|
|
|
|
summary := mock.JobSummary(alloc1.JobID)
|
|
|
|
index++
|
2022-04-01 19:17:58 +00:00
|
|
|
require.NoError(t, store.UpsertJobSummary(index, summary))
|
2020-05-11 12:20:50 +00:00
|
|
|
summary = mock.JobSummary(alloc2.JobID)
|
|
|
|
index++
|
2022-04-01 19:17:58 +00:00
|
|
|
require.NoError(t, store.UpsertJobSummary(index, summary))
|
2020-05-11 12:20:50 +00:00
|
|
|
index++
|
2022-04-01 19:17:58 +00:00
|
|
|
require.NoError(t, store.UpsertAllocs(structs.MsgTypeTestSetup, index, []*structs.Allocation{alloc1, alloc2}))
|
2020-05-11 12:20:50 +00:00
|
|
|
|
|
|
|
req := &structs.CSIVolumeClaimRequest{
|
2022-04-04 14:46:45 +00:00
|
|
|
VolumeID: volID,
|
|
|
|
AllocationID: alloc1.ID,
|
|
|
|
NodeID: uuid.Generate(), // doesn't exist so we don't get errors trying to unmount volumes from it
|
|
|
|
Claim: structs.CSIVolumeClaimWrite,
|
|
|
|
AccessMode: structs.CSIVolumeAccessModeMultiNodeMultiWriter,
|
|
|
|
AttachmentMode: structs.CSIVolumeAttachmentModeFilesystem,
|
|
|
|
State: structs.CSIVolumeClaimStateTaken,
|
|
|
|
WriteRequest: structs.WriteRequest{
|
|
|
|
Namespace: ns,
|
|
|
|
Region: srv.config.Region,
|
|
|
|
},
|
2020-05-11 12:20:50 +00:00
|
|
|
}
|
|
|
|
err = msgpackrpc.CallWithCodec(codec, "CSIVolume.Claim",
|
|
|
|
req, &structs.CSIVolumeClaimResponse{})
|
2022-04-04 14:46:45 +00:00
|
|
|
require.NoError(t, err, "write claim should succeed")
|
|
|
|
|
|
|
|
req.AllocationID = alloc2.ID
|
|
|
|
req.State = structs.CSIVolumeClaimStateUnpublishing
|
|
|
|
|
|
|
|
err = msgpackrpc.CallWithCodec(codec, "CSIVolume.Claim",
|
|
|
|
req, &structs.CSIVolumeClaimResponse{})
|
|
|
|
require.NoError(t, err, "unpublishing claim should succeed")
|
2020-05-11 12:20:50 +00:00
|
|
|
|
2022-04-04 14:46:45 +00:00
|
|
|
require.Eventually(t, func() bool {
|
|
|
|
vol, err := store.CSIVolumeByID(ws, ns, volID)
|
|
|
|
require.NoError(t, err)
|
|
|
|
return len(vol.WriteClaims) == 1 &&
|
|
|
|
len(vol.WriteAllocs) == 1 &&
|
|
|
|
len(vol.PastClaims) == 0
|
|
|
|
}, time.Second*1, 100*time.Millisecond,
|
|
|
|
"volumewatcher should have released unpublishing claim without GC")
|
|
|
|
|
|
|
|
// At this point we can guarantee that volumewatcher is waiting
|
|
|
|
// for new work. Delete allocation and job so that the next pass
|
|
|
|
// thru volumewatcher has more work to do
|
|
|
|
index, _ = store.LatestIndex()
|
2020-05-11 12:20:50 +00:00
|
|
|
index++
|
2022-04-01 19:17:58 +00:00
|
|
|
err = store.DeleteJob(index, ns, job.ID)
|
|
|
|
require.NoError(t, err)
|
2022-04-04 14:46:45 +00:00
|
|
|
index, _ = store.LatestIndex()
|
2020-05-11 12:20:50 +00:00
|
|
|
index++
|
2022-07-06 14:30:11 +00:00
|
|
|
err = store.DeleteEval(index, []string{eval.ID}, []string{alloc1.ID}, false)
|
2022-04-01 19:17:58 +00:00
|
|
|
require.NoError(t, err)
|
2020-05-11 12:20:50 +00:00
|
|
|
|
|
|
|
// Create a core scheduler and attempt the volume claim GC
|
2022-04-01 19:17:58 +00:00
|
|
|
snap, err := store.Snapshot()
|
|
|
|
require.NoError(t, err)
|
2022-04-04 14:46:45 +00:00
|
|
|
|
2020-05-11 12:20:50 +00:00
|
|
|
core := NewCoreScheduler(srv, snap)
|
|
|
|
|
2022-04-04 14:46:45 +00:00
|
|
|
index, _ = snap.LatestIndex()
|
2020-05-11 12:20:50 +00:00
|
|
|
index++
|
|
|
|
gc := srv.coreJobEval(structs.CoreJobForceGC, index)
|
|
|
|
c := core.(*CoreScheduler)
|
2022-04-01 19:17:58 +00:00
|
|
|
require.NoError(t, c.csiVolumeClaimGC(gc))
|
2020-05-11 12:20:50 +00:00
|
|
|
|
2022-04-04 14:46:45 +00:00
|
|
|
// the only remaining claim is for a deleted alloc with no path to
|
|
|
|
// the non-existent node, so volumewatcher will release the
|
|
|
|
// remaining claim
|
2022-04-01 19:17:58 +00:00
|
|
|
require.Eventually(t, func() bool {
|
|
|
|
vol, _ := store.CSIVolumeByID(ws, ns, volID)
|
2022-03-29 13:44:00 +00:00
|
|
|
return len(vol.WriteClaims) == 0 &&
|
|
|
|
len(vol.WriteAllocs) == 0 &&
|
|
|
|
len(vol.PastClaims) == 0
|
|
|
|
}, time.Second*2, 10*time.Millisecond, "claims were not released")
|
2020-05-11 12:20:50 +00:00
|
|
|
|
|
|
|
}
|
2020-08-18 20:48:43 +00:00
|
|
|
|
2022-01-27 14:30:03 +00:00
|
|
|
func TestCoreScheduler_CSIBadState_ClaimGC(t *testing.T) {
|
2022-03-15 12:42:43 +00:00
|
|
|
ci.Parallel(t)
|
2022-01-27 14:30:03 +00:00
|
|
|
|
|
|
|
srv, shutdown := TestServer(t, func(c *Config) {
|
|
|
|
c.NumSchedulers = 0 // Prevent automatic dequeue
|
|
|
|
})
|
|
|
|
|
|
|
|
defer shutdown()
|
|
|
|
testutil.WaitForLeader(t, srv.RPC)
|
|
|
|
|
|
|
|
err := state.TestBadCSIState(t, srv.State())
|
2022-04-01 19:17:58 +00:00
|
|
|
require.NoError(t, err)
|
2022-01-27 14:30:03 +00:00
|
|
|
|
|
|
|
snap, err := srv.State().Snapshot()
|
2022-04-01 19:17:58 +00:00
|
|
|
require.NoError(t, err)
|
2022-01-27 14:30:03 +00:00
|
|
|
core := NewCoreScheduler(srv, snap)
|
|
|
|
|
|
|
|
index, _ := srv.State().LatestIndex()
|
|
|
|
index++
|
|
|
|
gc := srv.coreJobEval(structs.CoreJobForceGC, index)
|
|
|
|
c := core.(*CoreScheduler)
|
2022-04-01 19:17:58 +00:00
|
|
|
require.NoError(t, c.csiVolumeClaimGC(gc))
|
2022-01-27 14:30:03 +00:00
|
|
|
|
2022-04-01 19:17:58 +00:00
|
|
|
require.Eventually(t, func() bool {
|
2022-01-27 14:30:03 +00:00
|
|
|
vol, _ := srv.State().CSIVolumeByID(nil,
|
|
|
|
structs.DefaultNamespace, "csi-volume-nfs0")
|
|
|
|
if len(vol.PastClaims) != 2 {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
for _, claim := range vol.PastClaims {
|
|
|
|
if claim.State != structs.CSIVolumeClaimStateUnpublishing {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}, time.Second*1, 10*time.Millisecond, "invalid claims should be marked for GC")
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-06-02 19:48:17 +00:00
|
|
|
// TestCoreScheduler_RootKeyGC exercises root key GC
|
|
|
|
func TestCoreScheduler_RootKeyGC(t *testing.T) {
|
|
|
|
ci.Parallel(t)
|
|
|
|
|
|
|
|
srv, cleanup := TestServer(t, nil)
|
|
|
|
defer cleanup()
|
|
|
|
testutil.WaitForLeader(t, srv.RPC)
|
|
|
|
|
|
|
|
// reset the time table
|
|
|
|
srv.fsm.timetable.table = make([]TimeTableEntry, 1, 10)
|
|
|
|
|
|
|
|
store := srv.fsm.State()
|
|
|
|
key0, err := store.GetActiveRootKeyMeta(nil)
|
|
|
|
require.NotNil(t, key0, "expected keyring to be bootstapped")
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
// insert an "old" and inactive key
|
|
|
|
key1 := structs.NewRootKeyMeta()
|
|
|
|
key1.Active = false
|
|
|
|
require.NoError(t, store.UpsertRootKeyMeta(500, key1))
|
|
|
|
|
|
|
|
// insert an "old" and inactive key with a variable that's using it
|
|
|
|
key2 := structs.NewRootKeyMeta()
|
|
|
|
key2.Active = false
|
|
|
|
require.NoError(t, store.UpsertRootKeyMeta(600, key2))
|
|
|
|
|
2022-06-14 17:28:10 +00:00
|
|
|
variable := mock.SecureVariableEncrypted()
|
|
|
|
variable.KeyID = key2.KeyID
|
2022-06-02 19:48:17 +00:00
|
|
|
require.NoError(t, store.UpsertSecureVariables(
|
2022-06-14 17:28:10 +00:00
|
|
|
structs.MsgTypeTestSetup, 601, []*structs.SecureVariableEncrypted{variable}))
|
2022-06-02 19:48:17 +00:00
|
|
|
|
2022-06-20 20:26:05 +00:00
|
|
|
// insert an allocation
|
|
|
|
alloc := mock.Alloc()
|
|
|
|
alloc.ClientStatus = structs.AllocClientStatusRunning
|
|
|
|
require.NoError(t, store.UpsertAllocs(
|
|
|
|
structs.MsgTypeTestSetup, 700, []*structs.Allocation{alloc}))
|
|
|
|
|
|
|
|
// insert an "old" key that's newer than oldest alloc
|
|
|
|
key3 := structs.NewRootKeyMeta()
|
|
|
|
key3.Active = false
|
|
|
|
require.NoError(t, store.UpsertRootKeyMeta(750, key3))
|
|
|
|
|
|
|
|
// insert a time table index before the last key
|
2022-06-02 19:48:17 +00:00
|
|
|
tt := srv.fsm.TimeTable()
|
|
|
|
tt.Witness(1000, time.Now().UTC().Add(-1*srv.config.RootKeyGCThreshold))
|
|
|
|
|
|
|
|
// insert a "new" but inactive key
|
2022-06-20 20:26:05 +00:00
|
|
|
key4 := structs.NewRootKeyMeta()
|
|
|
|
key4.Active = false
|
|
|
|
require.NoError(t, store.UpsertRootKeyMeta(1500, key4))
|
2022-06-02 19:48:17 +00:00
|
|
|
|
|
|
|
// run the core job
|
|
|
|
snap, err := store.Snapshot()
|
|
|
|
require.NoError(t, err)
|
|
|
|
core := NewCoreScheduler(srv, snap)
|
2022-06-20 20:26:05 +00:00
|
|
|
eval := srv.coreJobEval(structs.CoreJobRootKeyRotateOrGC, 2000)
|
2022-06-02 19:48:17 +00:00
|
|
|
c := core.(*CoreScheduler)
|
2022-06-20 20:26:05 +00:00
|
|
|
require.NoError(t, c.rootKeyRotateOrGC(eval))
|
2022-06-02 19:48:17 +00:00
|
|
|
|
|
|
|
ws := memdb.NewWatchSet()
|
|
|
|
key, err := store.RootKeyMetaByID(ws, key0.KeyID)
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, key, "active key should not have been GCd")
|
|
|
|
|
|
|
|
key, err = store.RootKeyMetaByID(ws, key1.KeyID)
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.Nil(t, key, "old key should have been GCd")
|
|
|
|
|
|
|
|
key, err = store.RootKeyMetaByID(ws, key2.KeyID)
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, key, "old key should not have been GCd if still in use")
|
|
|
|
|
|
|
|
key, err = store.RootKeyMetaByID(ws, key3.KeyID)
|
|
|
|
require.NoError(t, err)
|
2022-06-20 20:26:05 +00:00
|
|
|
require.NotNil(t, key, "old key newer than oldest alloc should not have been GCd")
|
|
|
|
|
|
|
|
key, err = store.RootKeyMetaByID(ws, key4.KeyID)
|
|
|
|
require.NoError(t, err)
|
2022-06-02 19:48:17 +00:00
|
|
|
require.NotNil(t, key, "new key should not have been GCd")
|
|
|
|
}
|
|
|
|
|
2020-08-18 20:48:43 +00:00
|
|
|
func TestCoreScheduler_FailLoop(t *testing.T) {
|
2022-03-15 12:42:43 +00:00
|
|
|
ci.Parallel(t)
|
2020-08-18 20:48:43 +00:00
|
|
|
|
|
|
|
srv, cleanupSrv := TestServer(t, func(c *Config) {
|
|
|
|
c.NumSchedulers = 0 // Prevent automatic dequeue
|
|
|
|
c.EvalDeliveryLimit = 2
|
|
|
|
c.EvalFailedFollowupBaselineDelay = time.Duration(50 * time.Millisecond)
|
|
|
|
c.EvalFailedFollowupDelayRange = time.Duration(1 * time.Millisecond)
|
|
|
|
})
|
|
|
|
defer cleanupSrv()
|
|
|
|
codec := rpcClient(t, srv)
|
|
|
|
sched := []string{structs.JobTypeCore}
|
|
|
|
|
|
|
|
testutil.WaitForResult(func() (bool, error) {
|
|
|
|
return srv.evalBroker.Enabled(), nil
|
|
|
|
}, func(err error) {
|
|
|
|
t.Fatalf("should enable eval broker")
|
|
|
|
})
|
|
|
|
|
|
|
|
// Enqueue a core job eval that can never succeed because it was enqueued
|
|
|
|
// by another leader that's now gone
|
|
|
|
expected := srv.coreJobEval(structs.CoreJobCSIPluginGC, 100)
|
|
|
|
expected.LeaderACL = "nonsense"
|
|
|
|
srv.evalBroker.Enqueue(expected)
|
|
|
|
|
|
|
|
nack := func(evalID, token string) error {
|
|
|
|
req := &structs.EvalAckRequest{
|
|
|
|
EvalID: evalID,
|
|
|
|
Token: token,
|
|
|
|
WriteRequest: structs.WriteRequest{Region: "global"},
|
|
|
|
}
|
|
|
|
var resp structs.GenericResponse
|
|
|
|
return msgpackrpc.CallWithCodec(codec, "Eval.Nack", req, &resp)
|
|
|
|
}
|
|
|
|
|
|
|
|
out, token, err := srv.evalBroker.Dequeue(sched, time.Second*5)
|
2022-04-01 19:17:58 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, out)
|
|
|
|
require.Equal(t, expected, out)
|
2020-08-18 20:48:43 +00:00
|
|
|
|
|
|
|
// first fail
|
2022-04-01 19:17:58 +00:00
|
|
|
require.NoError(t, nack(out.ID, token))
|
2020-08-18 20:48:43 +00:00
|
|
|
|
|
|
|
out, token, err = srv.evalBroker.Dequeue(sched, time.Second*5)
|
2022-04-01 19:17:58 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, out)
|
|
|
|
require.Equal(t, expected, out)
|
2020-08-18 20:48:43 +00:00
|
|
|
|
|
|
|
// second fail, should not result in failed-follow-up
|
2022-04-01 19:17:58 +00:00
|
|
|
require.NoError(t, nack(out.ID, token))
|
2020-08-18 20:48:43 +00:00
|
|
|
|
|
|
|
out, token, err = srv.evalBroker.Dequeue(sched, time.Second*5)
|
2022-04-01 19:17:58 +00:00
|
|
|
require.NoError(t, err)
|
2020-08-18 20:48:43 +00:00
|
|
|
if out != nil {
|
|
|
|
t.Fatalf(
|
|
|
|
"failed core jobs should not result in follow-up. TriggeredBy: %v",
|
|
|
|
out.TriggeredBy)
|
|
|
|
}
|
|
|
|
}
|