2015-08-11 21:27:14 +00:00
|
|
|
package state
|
2015-07-03 21:46:30 +00:00
|
|
|
|
2015-07-03 23:57:48 +00:00
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/hashicorp/go-memdb"
|
2015-12-15 03:20:57 +00:00
|
|
|
"github.com/hashicorp/nomad/nomad/structs"
|
2015-07-03 23:57:48 +00:00
|
|
|
)
|
2015-07-03 21:46:30 +00:00
|
|
|
|
|
|
|
// stateStoreSchema is used to return the schema for the state store
|
|
|
|
func stateStoreSchema() *memdb.DBSchema {
|
2015-07-03 23:04:24 +00:00
|
|
|
// Create the root DB schema
|
|
|
|
db := &memdb.DBSchema{
|
|
|
|
Tables: make(map[string]*memdb.TableSchema),
|
|
|
|
}
|
|
|
|
|
2015-07-03 23:57:48 +00:00
|
|
|
// Collect all the schemas that are needed
|
|
|
|
schemas := []func() *memdb.TableSchema{
|
2015-07-06 21:30:43 +00:00
|
|
|
indexTableSchema,
|
2015-07-03 23:57:48 +00:00
|
|
|
nodeTableSchema,
|
|
|
|
jobTableSchema,
|
2016-06-29 00:42:02 +00:00
|
|
|
jobSummarySchema,
|
2017-04-24 21:49:23 +00:00
|
|
|
jobVersionSchema,
|
|
|
|
deploymentSchema,
|
2015-12-19 01:51:30 +00:00
|
|
|
periodicLaunchTableSchema,
|
2015-07-23 22:27:13 +00:00
|
|
|
evalTableSchema,
|
2015-07-04 00:11:53 +00:00
|
|
|
allocTableSchema,
|
2016-08-19 01:14:58 +00:00
|
|
|
vaultAccessorTableSchema,
|
2015-07-03 23:57:48 +00:00
|
|
|
}
|
2015-07-03 23:04:24 +00:00
|
|
|
|
2015-07-03 23:57:48 +00:00
|
|
|
// Add each of the tables
|
|
|
|
for _, schemaFn := range schemas {
|
|
|
|
schema := schemaFn()
|
|
|
|
if _, ok := db.Tables[schema.Name]; ok {
|
|
|
|
panic(fmt.Sprintf("duplicate table name: %s", schema.Name))
|
|
|
|
}
|
|
|
|
db.Tables[schema.Name] = schema
|
|
|
|
}
|
2015-07-03 23:04:24 +00:00
|
|
|
return db
|
|
|
|
}
|
|
|
|
|
2015-07-06 21:30:43 +00:00
|
|
|
// indexTableSchema is used for
|
|
|
|
func indexTableSchema() *memdb.TableSchema {
|
|
|
|
return &memdb.TableSchema{
|
|
|
|
Name: "index",
|
|
|
|
Indexes: map[string]*memdb.IndexSchema{
|
|
|
|
"id": &memdb.IndexSchema{
|
|
|
|
Name: "id",
|
|
|
|
AllowMissing: false,
|
|
|
|
Unique: true,
|
|
|
|
Indexer: &memdb.StringFieldIndex{
|
|
|
|
Field: "Key",
|
|
|
|
Lowercase: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-03 23:04:24 +00:00
|
|
|
// nodeTableSchema returns the MemDB schema for the nodes table.
|
|
|
|
// This table is used to store all the client nodes that are registered.
|
|
|
|
func nodeTableSchema() *memdb.TableSchema {
|
2015-07-03 23:57:48 +00:00
|
|
|
return &memdb.TableSchema{
|
2015-07-03 23:04:24 +00:00
|
|
|
Name: "nodes",
|
|
|
|
Indexes: map[string]*memdb.IndexSchema{
|
|
|
|
// Primary index is used for node management
|
|
|
|
// and simple direct lookup. ID is required to be
|
|
|
|
// unique.
|
|
|
|
"id": &memdb.IndexSchema{
|
|
|
|
Name: "id",
|
|
|
|
AllowMissing: false,
|
|
|
|
Unique: true,
|
2016-01-14 20:57:43 +00:00
|
|
|
Indexer: &memdb.UUIDFieldIndex{
|
|
|
|
Field: "ID",
|
2015-07-03 23:04:24 +00:00
|
|
|
},
|
|
|
|
},
|
2015-07-03 23:57:48 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// jobTableSchema returns the MemDB schema for the jobs table.
|
|
|
|
// This table is used to store all the jobs that have been submitted.
|
|
|
|
func jobTableSchema() *memdb.TableSchema {
|
|
|
|
return &memdb.TableSchema{
|
|
|
|
Name: "jobs",
|
|
|
|
Indexes: map[string]*memdb.IndexSchema{
|
|
|
|
// Primary index is used for job management
|
|
|
|
// and simple direct lookup. ID is required to be
|
|
|
|
// unique.
|
|
|
|
"id": &memdb.IndexSchema{
|
|
|
|
Name: "id",
|
|
|
|
AllowMissing: false,
|
|
|
|
Unique: true,
|
|
|
|
Indexer: &memdb.StringFieldIndex{
|
2015-07-23 22:15:48 +00:00
|
|
|
Field: "ID",
|
2015-07-03 23:57:48 +00:00
|
|
|
Lowercase: true,
|
|
|
|
},
|
|
|
|
},
|
2015-10-20 17:57:53 +00:00
|
|
|
"type": &memdb.IndexSchema{
|
|
|
|
Name: "type",
|
|
|
|
AllowMissing: false,
|
|
|
|
Unique: false,
|
|
|
|
Indexer: &memdb.StringFieldIndex{
|
|
|
|
Field: "Type",
|
|
|
|
Lowercase: false,
|
|
|
|
},
|
|
|
|
},
|
2015-12-15 03:20:57 +00:00
|
|
|
"gc": &memdb.IndexSchema{
|
|
|
|
Name: "gc",
|
|
|
|
AllowMissing: false,
|
|
|
|
Unique: false,
|
|
|
|
Indexer: &memdb.ConditionalIndex{
|
|
|
|
Conditional: jobIsGCable,
|
|
|
|
},
|
|
|
|
},
|
2015-12-04 17:49:42 +00:00
|
|
|
"periodic": &memdb.IndexSchema{
|
|
|
|
Name: "periodic",
|
|
|
|
AllowMissing: false,
|
|
|
|
Unique: false,
|
2015-12-24 00:31:54 +00:00
|
|
|
Indexer: &memdb.ConditionalIndex{
|
|
|
|
Conditional: jobIsPeriodic,
|
2015-12-04 17:49:42 +00:00
|
|
|
},
|
|
|
|
},
|
2015-07-03 23:57:48 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-29 00:42:02 +00:00
|
|
|
// jobSummarySchema returns the memdb schema for the job summary table
|
|
|
|
func jobSummarySchema() *memdb.TableSchema {
|
|
|
|
return &memdb.TableSchema{
|
2016-07-12 22:00:35 +00:00
|
|
|
Name: "job_summary",
|
2016-06-29 00:42:02 +00:00
|
|
|
Indexes: map[string]*memdb.IndexSchema{
|
|
|
|
"id": &memdb.IndexSchema{
|
|
|
|
Name: "id",
|
|
|
|
AllowMissing: false,
|
|
|
|
Unique: true,
|
|
|
|
Indexer: &memdb.StringFieldIndex{
|
2016-06-30 19:04:22 +00:00
|
|
|
Field: "JobID",
|
2016-06-29 00:42:02 +00:00
|
|
|
Lowercase: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-24 21:49:23 +00:00
|
|
|
// jobVersionSchema returns the memdb schema for the job version table which
|
2017-04-13 21:54:22 +00:00
|
|
|
// keeps a historical view of job versions.
|
2017-04-24 21:49:23 +00:00
|
|
|
func jobVersionSchema() *memdb.TableSchema {
|
2017-04-12 22:44:30 +00:00
|
|
|
return &memdb.TableSchema{
|
2017-04-24 21:49:23 +00:00
|
|
|
Name: "job_version",
|
2017-04-12 22:44:30 +00:00
|
|
|
Indexes: map[string]*memdb.IndexSchema{
|
|
|
|
"id": &memdb.IndexSchema{
|
|
|
|
Name: "id",
|
|
|
|
AllowMissing: false,
|
|
|
|
Unique: true,
|
|
|
|
|
|
|
|
// Use a compound index so the tuple of (JobID, Version) is
|
|
|
|
// uniquely identifying
|
|
|
|
Indexer: &memdb.CompoundIndex{
|
|
|
|
Indexes: []memdb.Indexer{
|
|
|
|
&memdb.StringFieldIndex{
|
2017-04-13 20:54:57 +00:00
|
|
|
Field: "ID",
|
2017-04-12 22:44:30 +00:00
|
|
|
Lowercase: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
// Will need to create a new indexer
|
|
|
|
&memdb.UintFieldIndex{
|
|
|
|
Field: "Version",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-15 03:20:57 +00:00
|
|
|
// jobIsGCable satisfies the ConditionalIndexFunc interface and creates an index
|
|
|
|
// on whether a job is eligible for garbage collection.
|
|
|
|
func jobIsGCable(obj interface{}) (bool, error) {
|
|
|
|
j, ok := obj.(*structs.Job)
|
|
|
|
if !ok {
|
|
|
|
return false, fmt.Errorf("Unexpected type: %v", obj)
|
|
|
|
}
|
|
|
|
|
2017-04-15 23:47:19 +00:00
|
|
|
// If the job is periodic or parameterized it is only garbage collectable if
|
|
|
|
// it is stopped.
|
2016-03-24 01:02:01 +00:00
|
|
|
periodic := j.Periodic != nil && j.Periodic.Enabled
|
2017-04-15 23:47:19 +00:00
|
|
|
parameterized := j.IsParameterized()
|
|
|
|
if periodic || parameterized {
|
|
|
|
return j.Stop, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the job isn't dead it isn't eligible
|
|
|
|
if j.Status != structs.JobStatusDead {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Any job that is stopped is eligible for garbage collection
|
|
|
|
if j.Stop {
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, only batch jobs are eligible because they complete on their
|
|
|
|
// own without a user stopping them.
|
|
|
|
if j.Type != structs.JobTypeBatch {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return true, nil
|
2015-12-15 03:20:57 +00:00
|
|
|
}
|
|
|
|
|
2015-12-24 00:31:54 +00:00
|
|
|
// jobIsPeriodic satisfies the ConditionalIndexFunc interface and creates an index
|
|
|
|
// on whether a job is periodic.
|
|
|
|
func jobIsPeriodic(obj interface{}) (bool, error) {
|
|
|
|
j, ok := obj.(*structs.Job)
|
|
|
|
if !ok {
|
|
|
|
return false, fmt.Errorf("Unexpected type: %v", obj)
|
|
|
|
}
|
|
|
|
|
|
|
|
if j.Periodic != nil && j.Periodic.Enabled == true {
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
2017-04-24 21:49:23 +00:00
|
|
|
// deploymentSchema returns the MemDB schema tracking a job's deployments
|
|
|
|
func deploymentSchema() *memdb.TableSchema {
|
|
|
|
return &memdb.TableSchema{
|
|
|
|
Name: "deployment",
|
|
|
|
Indexes: map[string]*memdb.IndexSchema{
|
|
|
|
"id": &memdb.IndexSchema{
|
|
|
|
Name: "id",
|
|
|
|
AllowMissing: false,
|
|
|
|
Unique: true,
|
|
|
|
Indexer: &memdb.UUIDFieldIndex{
|
|
|
|
Field: "ID",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2017-05-10 22:26:00 +00:00
|
|
|
// Job index is used to lookup deployments by job
|
2017-04-24 21:49:23 +00:00
|
|
|
"job": &memdb.IndexSchema{
|
|
|
|
Name: "job",
|
|
|
|
AllowMissing: false,
|
|
|
|
Unique: false,
|
2017-05-10 22:26:00 +00:00
|
|
|
Indexer: &memdb.StringFieldIndex{
|
|
|
|
Field: "JobID",
|
|
|
|
Lowercase: true,
|
2017-04-24 21:49:23 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-19 01:51:30 +00:00
|
|
|
// periodicLaunchTableSchema returns the MemDB schema tracking the most recent
|
|
|
|
// launch time for a perioidic job.
|
|
|
|
func periodicLaunchTableSchema() *memdb.TableSchema {
|
|
|
|
return &memdb.TableSchema{
|
|
|
|
Name: "periodic_launch",
|
|
|
|
Indexes: map[string]*memdb.IndexSchema{
|
|
|
|
// Primary index is used for job management
|
|
|
|
// and simple direct lookup. ID is required to be
|
|
|
|
// unique.
|
|
|
|
"id": &memdb.IndexSchema{
|
|
|
|
Name: "id",
|
|
|
|
AllowMissing: false,
|
|
|
|
Unique: true,
|
|
|
|
Indexer: &memdb.StringFieldIndex{
|
|
|
|
Field: "ID",
|
|
|
|
Lowercase: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-23 22:27:13 +00:00
|
|
|
// evalTableSchema returns the MemDB schema for the eval table.
|
|
|
|
// This table is used to store all the evaluations that are pending
|
|
|
|
// or recently completed.
|
|
|
|
func evalTableSchema() *memdb.TableSchema {
|
2015-07-03 23:57:48 +00:00
|
|
|
return &memdb.TableSchema{
|
2015-07-23 22:27:13 +00:00
|
|
|
Name: "evals",
|
2015-07-03 23:57:48 +00:00
|
|
|
Indexes: map[string]*memdb.IndexSchema{
|
2015-07-23 22:27:13 +00:00
|
|
|
// Primary index is used for direct lookup.
|
2015-07-03 23:57:48 +00:00
|
|
|
"id": &memdb.IndexSchema{
|
|
|
|
Name: "id",
|
|
|
|
AllowMissing: false,
|
|
|
|
Unique: true,
|
2015-07-23 22:27:13 +00:00
|
|
|
Indexer: &memdb.UUIDFieldIndex{
|
|
|
|
Field: "ID",
|
2015-07-03 23:57:48 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2015-08-15 20:27:42 +00:00
|
|
|
// Job index is used to lookup allocations by job
|
|
|
|
"job": &memdb.IndexSchema{
|
|
|
|
Name: "job",
|
|
|
|
AllowMissing: false,
|
|
|
|
Unique: false,
|
2017-01-04 23:25:03 +00:00
|
|
|
Indexer: &memdb.CompoundIndex{
|
|
|
|
Indexes: []memdb.Indexer{
|
|
|
|
&memdb.StringFieldIndex{
|
|
|
|
Field: "JobID",
|
|
|
|
Lowercase: true,
|
|
|
|
},
|
|
|
|
&memdb.StringFieldIndex{
|
|
|
|
Field: "Status",
|
|
|
|
Lowercase: true,
|
|
|
|
},
|
|
|
|
},
|
2015-08-15 20:27:42 +00:00
|
|
|
},
|
|
|
|
},
|
2015-07-03 23:04:24 +00:00
|
|
|
},
|
|
|
|
}
|
2015-07-03 21:46:30 +00:00
|
|
|
}
|
2015-07-04 00:11:53 +00:00
|
|
|
|
|
|
|
// allocTableSchema returns the MemDB schema for the allocation table.
|
|
|
|
// This table is used to store all the task allocations between task groups
|
|
|
|
// and nodes.
|
|
|
|
func allocTableSchema() *memdb.TableSchema {
|
|
|
|
return &memdb.TableSchema{
|
|
|
|
Name: "allocs",
|
|
|
|
Indexes: map[string]*memdb.IndexSchema{
|
|
|
|
// Primary index is a UUID
|
|
|
|
"id": &memdb.IndexSchema{
|
2015-07-04 00:48:02 +00:00
|
|
|
Name: "id",
|
2015-07-04 00:11:53 +00:00
|
|
|
AllowMissing: false,
|
|
|
|
Unique: true,
|
|
|
|
Indexer: &memdb.UUIDFieldIndex{
|
|
|
|
Field: "ID",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// Node index is used to lookup allocations by node
|
|
|
|
"node": &memdb.IndexSchema{
|
|
|
|
Name: "node",
|
2015-08-15 20:27:42 +00:00
|
|
|
AllowMissing: true, // Missing is allow for failed allocations
|
2015-07-04 00:11:53 +00:00
|
|
|
Unique: false,
|
2016-02-20 19:24:06 +00:00
|
|
|
Indexer: &memdb.CompoundIndex{
|
|
|
|
Indexes: []memdb.Indexer{
|
|
|
|
&memdb.StringFieldIndex{
|
|
|
|
Field: "NodeID",
|
|
|
|
Lowercase: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
// Conditional indexer on if allocation is terminal
|
|
|
|
&memdb.ConditionalIndex{
|
|
|
|
Conditional: func(obj interface{}) (bool, error) {
|
|
|
|
// Cast to allocation
|
|
|
|
alloc, ok := obj.(*structs.Allocation)
|
|
|
|
if !ok {
|
|
|
|
return false, fmt.Errorf("wrong type, got %t should be Allocation", obj)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the allocation is terminal
|
|
|
|
return alloc.TerminalStatus(), nil
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2015-07-04 00:11:53 +00:00
|
|
|
},
|
|
|
|
},
|
2015-08-07 00:36:10 +00:00
|
|
|
|
|
|
|
// Job index is used to lookup allocations by job
|
|
|
|
"job": &memdb.IndexSchema{
|
|
|
|
Name: "job",
|
|
|
|
AllowMissing: false,
|
|
|
|
Unique: false,
|
|
|
|
Indexer: &memdb.StringFieldIndex{
|
|
|
|
Field: "JobID",
|
|
|
|
Lowercase: true,
|
|
|
|
},
|
|
|
|
},
|
2015-08-15 20:27:42 +00:00
|
|
|
|
|
|
|
// Eval index is used to lookup allocations by eval
|
|
|
|
"eval": &memdb.IndexSchema{
|
|
|
|
Name: "eval",
|
|
|
|
AllowMissing: false,
|
|
|
|
Unique: false,
|
|
|
|
Indexer: &memdb.UUIDFieldIndex{
|
|
|
|
Field: "EvalID",
|
|
|
|
},
|
|
|
|
},
|
2017-06-26 21:23:52 +00:00
|
|
|
|
|
|
|
// Deployment index is used to lookup allocations by deployment
|
|
|
|
"deployment": &memdb.IndexSchema{
|
|
|
|
Name: "deployment",
|
2017-06-28 23:14:50 +00:00
|
|
|
AllowMissing: true,
|
2017-06-26 21:23:52 +00:00
|
|
|
Unique: false,
|
|
|
|
Indexer: &memdb.UUIDFieldIndex{
|
|
|
|
Field: "DeploymentID",
|
|
|
|
},
|
|
|
|
},
|
2015-07-04 00:11:53 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
2016-08-19 01:14:58 +00:00
|
|
|
|
|
|
|
// vaultAccessorTableSchema returns the MemDB schema for the Vault Accessor
|
|
|
|
// Table. This table tracks Vault accessors for tokens created on behalf of
|
|
|
|
// allocations required Vault tokens.
|
|
|
|
func vaultAccessorTableSchema() *memdb.TableSchema {
|
|
|
|
return &memdb.TableSchema{
|
|
|
|
Name: "vault_accessors",
|
|
|
|
Indexes: map[string]*memdb.IndexSchema{
|
|
|
|
// The primary index is the accessor id
|
|
|
|
"id": &memdb.IndexSchema{
|
|
|
|
Name: "id",
|
|
|
|
AllowMissing: false,
|
|
|
|
Unique: true,
|
|
|
|
Indexer: &memdb.StringFieldIndex{
|
|
|
|
Field: "Accessor",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
"alloc_id": &memdb.IndexSchema{
|
|
|
|
Name: "alloc_id",
|
|
|
|
AllowMissing: false,
|
|
|
|
Unique: false,
|
|
|
|
Indexer: &memdb.StringFieldIndex{
|
|
|
|
Field: "AllocID",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
"node_id": &memdb.IndexSchema{
|
|
|
|
Name: "node_id",
|
|
|
|
AllowMissing: false,
|
|
|
|
Unique: false,
|
|
|
|
Indexer: &memdb.StringFieldIndex{
|
|
|
|
Field: "NodeID",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|