|
||||||||||||||||||||||||||||||||||||||||||
19.5 Trigger Variables
19.5.1 Trigger Variables OverviewTrigger variables can add greater flexibility and power to a site administrator who wants to automate certain tasks and system behaviors. Variables allow triggers to launch based on another trigger's behavior, state, and/or output. Example In this example the first trigger will assign a value to the variable Var1 if Var1 is included in the output of the script (meaning the script '/tmp/trigger1.sh' will produce the output "Var1=34.234l" and Moab will internally set the value of Var1 to 34.324l). The second trigger will look to make sure that Var1 has been set and then it will add its value to the launch script (referencing its value using the $ operator), effectively launching /tmp/trigger2.sh with the value of the variable Var1 as a parameter, which would be accessed in the script through $1. Any additional variables would be accessed through $2, $3, and so forth. Example In this example, the first trigger sets two variables (separated by a '.'), which are received in the second (separated by a ':'). As previously mentioned, those arguments could be accessed in the second trigger through the variables $1 and $2. It is also possible to have a trigger set a variable when it fails using the '!' symbol: Example In this example, the first trigger will set Var1 if it fails and Var2 if it succeeds. The second trigger will launch if Var1 has been set (the first trigger failed). The third trigger will launch if Var2 is set (the first trigger succeeded). Variable requirements can be further refined to allow for the evaluation and comparison of the variable's value. That is, triggers can have a dependency on a variable having (or not having) a certain value. The format for this is as follows: [*]<VARID>[:<TYPE>[:<VARVAL>]] The optional * specifies that the dependencies are satisified by an external source that must be previously registered. A number of valid comparison types exist:
Following is an example of how these comparitive dependencies can be expressed when creating a trigger. Example In this example, the first trigger will fire if Var1 exists and has a value of 45. The second trigger will only fire if Var2 is not the string failure1. 19.5.2 Default Internal Variables Available to Trigger ScriptsSeveral internal variables are available for use in trigger scripts. These can be accessed using $<VARNAME>:
Other unique variables are available to triggers attached to specific objects: Jobs
Reservations
VPCs
NOTE: By default, the reservation group master (first reservation created) of a VPC automatically imports the variables of the parent VPC. Other non-master reservation children of the VPC do not automatically import these VPC variables, and if this information is required by associated reservation triggers, it must be explicitly imported as described later. Example In this example, the object ID ($OID) and hostlist ($HOSTLIST) will be passed to /tmp/trigger3.sh as command line arguments when the trigger executes the script. The script can then process this information as needed. 19.5.3 Importing Variables from Other ObjectsBy default, triggers may access variables located in their own environment and in the environment of a master object. However, in some cases, it is necessary to load variables or configuration information from parent or peer objects. Using a query trigger, certain environment variables (see table that follows) may be imported from one object to another. Query triggers are created by specifying an action type (trigger attribute atype) of query and a trigger action in the format <label>:<variable>. To associate a label with a peer object, use the label attribute when specifying resource requirements (reqs) via the mshow command or the VCPROFILE parameter.
NOTE: When a query trigger is run within a reservation group, the variable is imported into the master reservation, and consequently, the variable is made available to all other peer reservation triggers. Example 1 Import the ReqOS requirement from the compute reservation and the vlanid variable from the vlan reservation. Example 2 Import the Allocated Node List from the compute reservation echo it to stdout. NOTE: In the case of multiple reservations with the same label, a "-<#>" may be appended to the variable to access a specific reservations environment. 19.5.4 Externally Injecting Variables into Job TriggersFor triggers that are attached to job objects, another method for supplying variables exists. The trigger is able to see the variables in the job object to which it is attached. Updating the job object's variables effectively updates the variable for the trigger. This can be accomplished through the use of mjobctl using the -m flag. This sets the variable Flag1 to the value TRUE, creating Flag1, if necessary. This will be seen by any trigger attached to job 1664. 19.5.5 Exporting Variables to Parent ObjectsVariables used and created by triggers are stored in the namespace of the object to which the trigger is attached. Sometimes it is desirable to make certain variables more accessible to triggers on other objects. When using the Sets trigger attribute, you can specify that a variable, created either by a success or failure, should be exported to the name space of the parent object when the current object is destroyed through a completion event. This is done by placing the caret (^) symbol in front of the variable name when specifying it. Example In this example, both Var1 and Var2 will be exported to the parent object when the trigger has completed. They can also be used by triggers at their own level, just as in previous examples. 19.5.6 Requiring Variables in Parent ObjectsBy default, triggers will only look for variables to fulfill dependencies in the object to which they are directly attached. In addition, if they are attached to a job object, they will also look in the job group, if defined. However, it is not uncommon for objects to have multiple generations of parent objects. If the desired behavior is to search through all generations of parent objects, the caret (^) symbol must be specified, as in the following example: Example See Also
|
||||||||||||||||||||||||||||||||||||||||||
| © 2001-2008 Cluster Resources, Incorporated | ||||||||||||||||||||||||||||||||||||||||||