2015-09-06 22:34:28 +00:00
|
|
|
package nomad
|
|
|
|
|
|
|
|
import (
|
2015-12-19 20:05:17 +00:00
|
|
|
"fmt"
|
2015-09-06 22:34:28 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/armon/go-metrics"
|
|
|
|
"github.com/hashicorp/nomad/nomad/structs"
|
2015-10-29 21:47:39 +00:00
|
|
|
"github.com/hashicorp/nomad/nomad/watch"
|
2015-09-06 22:34:28 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Alloc endpoint is used for manipulating allocations
|
|
|
|
type Alloc struct {
|
|
|
|
srv *Server
|
|
|
|
}
|
|
|
|
|
|
|
|
// List is used to list the allocations in the system
|
|
|
|
func (a *Alloc) List(args *structs.AllocListRequest, reply *structs.AllocListResponse) error {
|
|
|
|
if done, err := a.srv.forward("Alloc.List", args, args, reply); done {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer metrics.MeasureSince([]string{"nomad", "alloc", "list"}, time.Now())
|
|
|
|
|
2015-10-29 02:25:39 +00:00
|
|
|
// Setup the blocking query
|
|
|
|
opts := blockingOptions{
|
2015-10-29 21:47:39 +00:00
|
|
|
queryOpts: &args.QueryOptions,
|
|
|
|
queryMeta: &reply.QueryMeta,
|
|
|
|
watch: watch.NewItems(watch.Item{Table: "allocs"}),
|
2015-10-29 02:25:39 +00:00
|
|
|
run: func() error {
|
|
|
|
// Capture all the allocations
|
|
|
|
snap, err := a.srv.fsm.State().Snapshot()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
iter, err := snap.Allocs()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-09-06 22:34:28 +00:00
|
|
|
|
2015-10-29 02:25:39 +00:00
|
|
|
var allocs []*structs.AllocListStub
|
|
|
|
for {
|
|
|
|
raw := iter.Next()
|
|
|
|
if raw == nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
alloc := raw.(*structs.Allocation)
|
|
|
|
allocs = append(allocs, alloc.Stub())
|
|
|
|
}
|
|
|
|
reply.Allocations = allocs
|
2015-09-06 22:34:28 +00:00
|
|
|
|
2015-10-29 02:25:39 +00:00
|
|
|
// Use the last index that affected the jobs table
|
|
|
|
index, err := snap.Index("allocs")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
reply.Index = index
|
2015-09-06 22:34:28 +00:00
|
|
|
|
2015-10-29 02:25:39 +00:00
|
|
|
// Set the query response
|
|
|
|
a.srv.setQueryMeta(&reply.QueryMeta)
|
|
|
|
return nil
|
|
|
|
}}
|
|
|
|
return a.srv.blockingRPC(&opts)
|
2015-09-06 22:34:28 +00:00
|
|
|
}
|
2015-09-06 22:46:45 +00:00
|
|
|
|
|
|
|
// GetAlloc is used to lookup a particular allocation
|
|
|
|
func (a *Alloc) GetAlloc(args *structs.AllocSpecificRequest,
|
|
|
|
reply *structs.SingleAllocResponse) error {
|
|
|
|
if done, err := a.srv.forward("Alloc.GetAlloc", args, args, reply); done {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer metrics.MeasureSince([]string{"nomad", "alloc", "get_alloc"}, time.Now())
|
|
|
|
|
2015-10-29 23:04:53 +00:00
|
|
|
// Setup the blocking query
|
|
|
|
opts := blockingOptions{
|
|
|
|
queryOpts: &args.QueryOptions,
|
|
|
|
queryMeta: &reply.QueryMeta,
|
|
|
|
watch: watch.NewItems(watch.Item{Alloc: args.AllocID}),
|
|
|
|
run: func() error {
|
|
|
|
// Lookup the allocation
|
|
|
|
snap, err := a.srv.fsm.State().Snapshot()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-12-19 20:05:17 +00:00
|
|
|
|
|
|
|
var out *structs.Allocation
|
|
|
|
|
|
|
|
// Exact lookup if the identifier length is 36 (full UUID)
|
|
|
|
if len(args.AllocID) == 36 {
|
|
|
|
out, err = snap.AllocByID(args.AllocID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
iter, err := snap.AllocByIDPrefix(args.AllocID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-12-20 17:10:48 +00:00
|
|
|
// Gather all matching allocations
|
2015-12-19 20:05:17 +00:00
|
|
|
var allocs []*structs.Allocation
|
|
|
|
var allocIds []string
|
|
|
|
for {
|
|
|
|
raw := iter.Next()
|
|
|
|
if raw == nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
alloc := raw.(*structs.Allocation)
|
|
|
|
allocIds = append(allocIds, alloc.ID)
|
|
|
|
allocs = append(allocs, alloc)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(allocs) == 1 {
|
|
|
|
// Return unique allocation
|
|
|
|
out = allocs[0]
|
|
|
|
} else if len(allocs) > 1 {
|
|
|
|
return fmt.Errorf("Ambiguous identifier: %+v", allocIds)
|
|
|
|
}
|
2015-10-29 23:04:53 +00:00
|
|
|
}
|
2015-09-06 22:46:45 +00:00
|
|
|
|
2015-10-29 23:04:53 +00:00
|
|
|
// Setup the output
|
2015-10-30 15:27:47 +00:00
|
|
|
reply.Alloc = out
|
2015-10-29 23:04:53 +00:00
|
|
|
if out != nil {
|
|
|
|
reply.Index = out.ModifyIndex
|
|
|
|
} else {
|
2015-12-20 17:10:48 +00:00
|
|
|
// Use the last index that affected the allocs table
|
2015-10-29 23:04:53 +00:00
|
|
|
index, err := snap.Index("allocs")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
reply.Index = index
|
|
|
|
}
|
2015-09-06 22:46:45 +00:00
|
|
|
|
2015-10-29 23:04:53 +00:00
|
|
|
// Set the query response
|
|
|
|
a.srv.setQueryMeta(&reply.QueryMeta)
|
|
|
|
return nil
|
|
|
|
}}
|
|
|
|
return a.srv.blockingRPC(&opts)
|
2015-09-06 22:46:45 +00:00
|
|
|
}
|