ganeti

Safe HaskellSafe-Infered

Ganeti.HTools.Loader

Contents

Description

Generic data loader.

This module holds the common code for parsing the input data after it has been loaded from external sources.

Synopsis

Types

data RqType Source

The iallocator request type.

This type denotes what request we got from Ganeti and also holds request-specific fields.

Constructors

Allocate Instance AllocDetails (Maybe [String])

A new instance allocation, maybe with allocation restrictions

AllocateSecondary Idx

Find a suitable secondary node for disk conversion

Relocate Idx Int [Ndx]

Choose a new secondary node

NodeEvacuate [Idx] EvacMode

node-evacuate mode

ChangeGroup [Gdx] [Idx]

Multi-relocate mode

MultiAllocate [(Instance, AllocDetails)]

Multi-allocate mode

Instances

Show RqType 

data Request Source

A complete request, as received from Ganeti.

Constructors

Request RqType ClusterData 

Instances

Show Request 

isAllocationRequest :: RqType -> Maybe (Maybe String)Source

Decide whether a request asks to allocate new instances; if so, also return the desired node group, if a unique node group is specified. That is, return Nothing if the request is not an allocation request, `Just Nothing`, if it is an Allocation request, but there is no unique group specified, and return `Just (Just g)` if it is an allocation request uniquely requesting Group g.

data ClusterData Source

The cluster state.

Constructors

ClusterData 

Fields

cdGroups :: List

The node group list

cdNodes :: List

The node list

cdInstances :: List

The instance list

cdTags :: [String]

The cluster tags

cdIPolicy :: IPolicy

The cluster instance policy

Instances

emptyCluster :: ClusterDataSource

An empty cluster.

Functions

lookupNode :: Monad m => NameAssoc -> String -> String -> m NdxSource

Lookups a node into an assoc list.

lookupInstance :: Monad m => NameAssoc -> String -> m IdxSource

Lookups an instance into an assoc list.

lookupGroup :: Monad m => NameAssoc -> String -> String -> m GdxSource

Lookups a group into an assoc list.

assignIndices :: Element a => [(String, a)] -> (NameAssoc, Container a)Source

Given a list of elements (and their names), assign indices to them.

setMaster :: Monad m => NameAssoc -> List -> String -> m ListSource

Given am indexed node list, and the name of the master, mark it as such.

updateExclTags :: [String] -> Instance -> InstanceSource

Update instance with exclusion tags list.

updateDesiredLocationTags :: [String] -> Instance -> InstanceSource

Update instance with desired location tags list.

updateMovable :: [String] -> [String] -> Instance -> InstanceSource

setArPolicy :: [String] -> List -> List -> List -> ClockTime -> ListSource

getArPolicy :: [String] -> ClockTime -> Maybe AutoRepairPolicySource

longestDomain :: [String] -> StringSource

extractExTags :: [String] -> [String]Source

Extracts the exclusion tags from the cluster configuration.

extractDesiredLocations :: [String] -> [String]Source

Extracts the desired locations from the instance tags.

commonSuffix :: List -> List -> StringSource

Extracts the common suffix from node/instance names.

addMigrationTags :: [String] -> Node -> NodeSource

addLocationTags :: [String] -> Node -> NodeSource

mergeDataSource

Arguments

:: [(String, DynUtil)]

Instance utilisation data

-> [String]

Exclusion tags

-> [String]

Selected instances (if not empty)

-> [String]

Excluded instances

-> ClockTime

The current timestamp

-> ClusterData

Data from backends

-> Result ClusterData

Fixed cluster data

Initializer function that loads the data from a node and instance list and massages it into the correct format.

clearDynU :: ClusterData -> Result ClusterDataSource

In a cluster description, clear dynamic utilisation information.

checkData :: List -> List -> ([String], List)Source

Checks the cluster data for consistency.

nodeImem :: Node -> List -> IntSource

nodeIdsk :: Node -> List -> IntSource

eitherLive :: Monad m => Bool -> a -> m a -> m aSource

Get live information or a default value

obtainNodeMemory :: FilledHvState -> Int -> IntSource

Obtains memory used by node. It's memory_dom0 for Xen and memNode otherwise because live data collector exists only for Xen